| | |
| | | CloseTaskForPLC='/api/WcsCheckTask/CloseTaskForPLC', |
| | | |
| | | |
| | | GetLocationInfo = '/api/wcsDevice/GetLocationInfo', |
| | | WriteLocationInfo = '/api/wcsDevice/WriteLocationInfo', |
| | | WriteInfo = '/api/wcsDevice/WriteInfo', |
| | | WriteTaskInfo = '/api/wcsDevice/WriteTaskInfo', |
| | | WriteStartStop = '/api/wcsDevice/WriteStartStop', |
| | | } |
| | | // 增加设备信息 |
| | | export const WriteLocationInfo = (params?: any) => |
| | | request({ |
| | | url: Api.WriteLocationInfo, |
| | | method: 'post', |
| | | data: params, |
| | | }); |
| | | // 增加设备信息 |
| | | export const GetLocationInfo = (params?: any) => |
| | | request({ |
| | | url: Api.GetLocationInfo, |
| | | method: 'post', |
| | | data: params, |
| | | }); |
| | | // 增加设备信息 |
| | | export const WriteInfo = (params?: any) => |
| | | request({ |
| | | url: Api.WriteInfo, |