From b46f7d2b267b08aa4e79401ee9c36e446189087b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BC=A0=E5=90=8C=E6=B5=B7?= <14166000+zhangtonghai@user.noreply.gitee.com> Date: Wed, 20 Nov 2024 14:40:37 +0800 Subject: [PATCH 1/6] =?UTF-8?q?=E7=AE=B1=E7=AE=A1=20=E8=B0=83=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../CurrentState/columns.tsx | 34 +-- .../CurrentState/index.vue | 79 ++++++- .../OfflineAudit/index.vue | 193 ++++++++++++------ .../ContainerManagement/dsxxcl/columns.tsx | 83 +++++--- .../ContainerManagement/dsxxcl/index.vue | 84 +++++++- 5 files changed, 355 insertions(+), 118 deletions(-) diff --git a/src/views/ContainerManagement/CurrentState/columns.tsx b/src/views/ContainerManagement/CurrentState/columns.tsx index a34b8fab..1b477b82 100644 --- a/src/views/ContainerManagement/CurrentState/columns.tsx +++ b/src/views/ContainerManagement/CurrentState/columns.tsx @@ -40,6 +40,12 @@ export const columns: BasicColumn[] = [ sorter: true, width: 150, }, + { + title: '是否上线', + dataIndex: 'isOnline', + sorter: true, + width: 200, + }, { title: '序号', dataIndex: 'index', @@ -176,12 +182,6 @@ export const columns: BasicColumn[] = [ // sorter: true, // width: 200, // }, - // { - // title: '是否上线', - // dataIndex: 'isOnline', - // sorter: true, - // width: 200, - // }, // { // title: '当前港口', @@ -223,6 +223,17 @@ export const columns: BasicColumn[] = [ ] export const searchFormSchema: FormSchema[] = [ + { + field: 'cntrno', + label: '箱号', + component: 'InputTextArea', + colProps: { span: 8 }, + componentProps: { + validateOnRuleChange: false, + placeholder: '可输入多个箱号', + rows: 1, + }, + }, { field: 'ctnOwner', label: '箱主', @@ -342,17 +353,6 @@ export const searchFormSchema: FormSchema[] = [ component: 'InputNumber', colProps: { span: 4 }, }, - { - field: 'cntrno', - label: '箱号', - component: 'InputTextArea', - colProps: { span: 8 }, - componentProps: { - validateOnRuleChange: false, - placeholder: '可输入多个箱号', - rows: 1, - }, - }, { field: 'portid', label: '当前港口', diff --git a/src/views/ContainerManagement/CurrentState/index.vue b/src/views/ContainerManagement/CurrentState/index.vue index 92f14f54..d8226ef8 100644 --- a/src/views/ContainerManagement/CurrentState/index.vue +++ b/src/views/ContainerManagement/CurrentState/index.vue @@ -2,10 +2,10 @@