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);
| }
| },
| }
|
|