gaoshp
2024-06-13 fd7586c8d91473d2850af1e48b12f1a289e6b8d1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*
 * @Date: 2024-03-24 11:37:47
 * @LastEditors: Sneed
 * @LastEditTime: 2024-04-27 20:26:42
 * @FilePath: /belleson-frontend/Users/mache/Documents/demo/cps-web/src/api/model/machineManagement.js
 */
import config from "@/config"
import http from "@/utils/request"
 
export default {
    getList: {
        url: `${config.API_URL}/blade-cps/machine/page`,
        name: "获取工位列表",
        get: async function (params) {
            return await http.post(this.url, { ...params }, { params: { current: params.current, size: params.size } });
        },
    },
 
}