diff --git a/src/api/vendorLoad.ts b/src/api/vendorLoad.ts index cf87731..dd5cd1f 100644 --- a/src/api/vendorLoad.ts +++ b/src/api/vendorLoad.ts @@ -1,36 +1,11 @@ import request from '@/utils/request' -export interface MachineTaskChainVO { - id?: number - code: string - warehouse?: string - firstTaskVendor?: string - status?: string - type?: string - businessNo?: string - description?: string - sourceLocation?: string - sourcePoint?: string - sourceContainer?: string - targetType?: string - targetCode?: string - targetLocation?: string - targetPoint?: string - elevatorId?: number - priority?: number - executionTime?: number - completeTime?: string - cancelReason?: string - cancelTime?: string - createTime?: string -} - export interface VendorLoadVO { vendor: string vendorName: string maxConcurrent: number currentLoad: number - chains: MachineTaskChainVO[] + chainCodes: string[] } export function getVendorLoad() { diff --git a/src/views/vendor/VendorLoadView.vue b/src/views/vendor/VendorLoadView.vue index 8b478d2..89ddeba 100644 --- a/src/views/vendor/VendorLoadView.vue +++ b/src/views/vendor/VendorLoadView.vue @@ -27,17 +27,15 @@