lzhe
2024-03-24 32ea29da90ecadc27a875926fc77f7c54f3c24f9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*
 * @Date: 2024-03-24 11:37:47
 * @LastEditors: gaoshp
 * @LastEditTime: 2024-03-24 14:30:13
 * @FilePath: /cps-web/src/api/model/basicdata.js
 */
import config from "@/config"
import http from "@/utils/request"
 
export default {
    getWorkstationGroup: {
        url: `${config.API_URL}/blade-cps/group/list?groupType=group_workstation&groupCategory=1`,
        name: "获取工位组树",
        get: async function(params){
            return await http.get(this.url, params);
        }
    },
}