diff --git a/src/views/operation/seaexport/detail/components/ladingInfo.tsx b/src/views/operation/seaexport/detail/components/ladingInfo.tsx index b99051a8..29c55874 100644 --- a/src/views/operation/seaexport/detail/components/ladingInfo.tsx +++ b/src/views/operation/seaexport/detail/components/ladingInfo.tsx @@ -1335,6 +1335,16 @@ export const storageColumns: BasicColumn[] = [ dataIndex: 'bookingParty', width: 210, }, + { + title: 'ETD', + dataIndex: 'etd', + width: 100, + }, + { + title: '船司参考号', + width: 100, + dataIndex: 'carrierReferNo', + }, { title: '订舱方式', dataIndex: 'bookingSlotTypeName', @@ -1404,4 +1414,21 @@ export const storageSearchFormSchema: FormSchema[] = [ component: 'Input', colProps: { span: 4 }, }, + { + field: 'etd', + label: 'ETD', + component: 'RangePicker', + required: false, + dynamicDisabled: false, + colProps: { span: 4 }, + componentProps: { + allowClear: true, + } + }, + { + field: 'carrierReferNo', + label: '船司参考号', + component: 'Input', + colProps: { span: 4 }, + }, ] diff --git a/src/views/taskmanage/index.vue b/src/views/taskmanage/index.vue index b534a314..6994c81d 100644 --- a/src/views/taskmanage/index.vue +++ b/src/views/taskmanage/index.vue @@ -708,7 +708,7 @@ const columns = [ { dataIndex: 'trucK_NAME', width: 100, title: '车队' }, { dataIndex: 'customeR_NAME', width: 100, title: '委托单位' }, { dataIndex: 'mbL_NO', width: 120, title: '提单号' }, - { dataIndex: 'tasK_REQ_USERNAME', width: 100, title: '操作名称' }, + { dataIndex: 'tasK_REQ_USERNAME', width: 100, title: '发起人' }, { dataIndex: 'contA_INFO', width: 100, title: '箱型箱量' }, { dataIndex: 'yarD_NAME', width: 100, title: '场站' }, { dataIndex: 'etd', width: 180, title: '开船日期' },