yangys
2024-01-13 b8d63989635bc9fb58357f76333796e21409985b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/*
 * @Date: 2024-01-07 22:18:41
 * @LastEditors: Sneed
 * @LastEditTime: 2024-01-07 22:21:40
 * @FilePath: /belleson-frontend/Users/mache/Documents/demo/mdc/src/mixins/index.js
 */
export  default {
    data  () {
        return {
            workshopIds: [],
            sectionIds: [],
            workshopIds: []
        }
    },
    create () {
        this.getListinit()
    },
    methods: {
        getListinit () {
            this.$http.get('/machine/workshopList').then(res => {
                
            })
            this.$http.get('/machine/protocolList').then(res => {
                
            })
        }
    },
}