| | |
| | | |
| | | GetWcsPackPlcList='/api/wcsDevice/WcsPackPlcList', |
| | | GetWcsPackStationPlcList='/api/wcsDevice/WcsPackStationPlcList', |
| | | GetWcsStackingRobotList = '/api/wcsDevice/WcsStackingRobotList', |
| | | BindTaskForPLC='/api/WcsCheckTask/BindTaskForPLC', |
| | | CloseTaskForPLC='/api/WcsCheckTask/CloseTaskForPLC', |
| | | |
| | | UnBindTaskForPLC = '/api/WcsCheckTask/UnBindTaskForPLC', |
| | | |
| | | GetLocationInfo = '/api/wcsDevice/GetLocationInfo', |
| | | WriteLocationInfo = '/api/wcsDevice/WriteLocationInfo', |
| | |
| | | method: 'get', |
| | | data: params |
| | | }); |
| | | |
| | | export const GetWcsStackingRobotList = (params?: any) => |
| | | request({ |
| | | url: Api.GetWcsStackingRobotList, |
| | | method: 'get', |
| | | data: params |
| | | }); |
| | | // 手动绑定任务到PLC |
| | | export const BindTaskForPLC = (params?: any) => |
| | | request({ |
| | |
| | | method: 'post', |
| | | data: params, |
| | | }); |
| | | //任务解绑 |
| | | export const UnBindTaskForPLC = (params?: any) => |
| | | request({ |
| | | url: Api.UnBindTaskForPLC, |
| | | method: 'post', |
| | | data: params, |
| | | }); |
| | | //写入值 |
| | | export const writeValue = (params?: any) => |
| | | request({ |