IPC-610
2025-01-15 b4083a6b047fc9e0964133c87227213c5154e37a
Web/src/api/wcs/wcsDevice.ts
@@ -12,9 +12,10 @@
  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',
@@ -130,7 +131,12 @@
      method: 'get',
      data: params
});
export const GetWcsStackingRobotList = (params?: any) =>
   request({
      url: Api.GetWcsStackingRobotList,
      method: 'get',
      data: params
   });
// 手动绑定任务到PLC
export const BindTaskForPLC = (params?: any) => 
   request({
@@ -145,6 +151,13 @@
      method: 'post',
      data: params,
});
//任务解绑
export const UnBindTaskForPLC = (params?: any) =>
   request({
      url: Api.UnBindTaskForPLC,
      method: 'post',
      data: params,
   });
//写入值
export const writeValue = (params?: any) => 
   request({