IPC-610
2024-10-15 79ad6097cbe4b4d6cee66dd8ad9c3c1c8f2b5243
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
import request from '/@/utils/request';
enum Api {
  AddWcsDevice = '/api/wcsDevice/add',
  DeleteWcsDevice = '/api/wcsDevice/delete',
  UpdateWcsDevice = '/api/wcsDevice/update',
  PageWcsDevice = '/api/wcsDevice/page',
  DetailWcsDevice = '/api/wcsDevice/detail',
  GetWcsPlcPlcIdDropdown = '/api/wcsDevice/WcsPlcPlcIdDropdown',
  GeneratePos = '/api/wcsDevice/GeneratePos',
  ListWcsDevice = '/api/wcsDevice/list',
  WriteValue = '/api/wcsdevice/writeValue',
 
  GetWcsPackPlcList='/api/wcsDevice/WcsPackPlcList',
  GetWcsPackStationPlcList='/api/wcsDevice/WcsPackStationPlcList',
  BindTaskForPLC='/api/WcsCheckTask/BindTaskForPLC',
  CloseTaskForPLC='/api/WcsCheckTask/CloseTaskForPLC',
}
 
// 增加设备信息
export const addWcsDevice = (params?: any) =>
    request({
        url: Api.AddWcsDevice,
        method: 'post',
        data: params,
    });
 
// 删除设备信息
export const deleteWcsDevice = (params?: any) => 
    request({
            url: Api.DeleteWcsDevice,
            method: 'post',
            data: params,
        });
 
// 编辑设备信息
export const updateWcsDevice = (params?: any) => 
    request({
            url: Api.UpdateWcsDevice,
            method: 'post',
            data: params,
        });
 
// 分页查询设备信息
export const pageWcsDevice = (params?: any) => 
    request({
            url: Api.PageWcsDevice,
            method: 'post',
            data: params,
        });
 
// 详情设备信息
export const detailWcsDevice = (id: any) => 
    request({
            url: Api.DetailWcsDevice,
            method: 'get',
            data: { id },
        });
 
export const getWcsPlcPlcIdDropdown = () =>
        request({
        url: Api.GetWcsPlcPlcIdDropdown,
        method: 'get'
        });
 
export const generatePos = (params?: any) =>
    request({
    url: Api.GeneratePos,
    method: 'post',
    data: params
    });
    
export const listWcsDevice = () =>
    request({
    url: Api.ListWcsDevice,
    method: 'get'
    });
 
 
export const GetWcsPackPlcList = () =>
    request({
        url: Api.GetWcsPackPlcList,
        method: 'get'
});
 
export const GetWcsPackStationPlcList = (params?: any) =>
    request({
        url: Api.GetWcsPackStationPlcList,
        method: 'get',
        data: params
});
 
// 手动绑定任务到PLC
export const BindTaskForPLC = (params?: any) => 
    request({
        url: Api.BindTaskForPLC,
        method: 'post',
        data: params,
});
//任务结批
export const CloseTaskForPLC = (params?: any) => 
    request({
        url: Api.CloseTaskForPLC,
        method: 'post',
        data: params,
});
//写入值
export const writeValue = (params?: any) => 
    request({
        url: Api.WriteValue,
        method: 'post',
        data: params,
});