| | |
| | | |
| | | GetWcsPackPlcList='/api/wcsDevice/WcsPackPlcList', |
| | | GetWcsPackStationPlcList='/api/wcsDevice/WcsPackStationPlcList', |
| | | BindTaskForPLC='/api/WcsCheckTask/BindTaskForPLC', |
| | | CloseTaskForPLC='/api/WcsCheckTask/CloseTaskForPLC', |
| | | } |
| | | |
| | | // 增加设备信息 |
| | |
| | | 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, |
| | | }); |