From 8741675fa84cab4c25846c60b6c31090e249089d Mon Sep 17 00:00:00 2001 From: TengXF <302828528@qq.com> Date: Wed, 21 Aug 2024 13:50:42 +0800 Subject: [PATCH] =?UTF-8?q?HL-5424=20=E5=A4=87=E4=BB=B6=E5=8F=91=E8=B4=A7?= =?UTF-8?q?=20=E5=88=9B=E5=BB=BA=E4=BA=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../deliverJobMain/deliverJobMain.data.ts | 19 ++++++++++++++----- 1 file changed, 14 insertions(+), 5 deletions(-) diff --git a/src/views/wms/deliversettlementManage/deliver/deliverJobMain/deliverJobMain.data.ts b/src/views/wms/deliversettlementManage/deliver/deliverJobMain/deliverJobMain.data.ts index cf585acbb..0eb87c4c6 100644 --- a/src/views/wms/deliversettlementManage/deliver/deliverJobMain/deliverJobMain.data.ts +++ b/src/views/wms/deliversettlementManage/deliver/deliverJobMain/deliverJobMain.data.ts @@ -575,7 +575,7 @@ export const DeliverJobMain = useCrudSchemas( table: { width: 180 }, - isTable: true, + isTable: false, form: { component: 'DatePicker', componentProps: { @@ -584,7 +584,7 @@ export const DeliverJobMain = useCrudSchemas( valueFormat: 'x' } }, - isSearch: true, + isSearch: false, search: { component: 'DatePicker', componentProps: { @@ -601,7 +601,7 @@ export const DeliverJobMain = useCrudSchemas( table: { width: 150 }, - isTable: true + isTable: false }, { label: '最后更新时间', @@ -894,7 +894,7 @@ export const DeliverJobDetail = useCrudSchemas(reactive([ table: { width: 180 }, - isTable: false, + isTable: true, form: { component: 'DatePicker', componentProps: { @@ -903,6 +903,15 @@ export const DeliverJobDetail = useCrudSchemas(reactive([ valueFormat: 'x', } }, + isSearch: true, + search: { + component: 'DatePicker', + componentProps: { + valueFormat: 'YYYY-MM-DD HH:mm:ss', + type: 'daterange', + defaultTime: [new Date('1 00:00:00'), new Date('1 23:59:59')] + }, + }, }, { label: '创建者', @@ -911,7 +920,7 @@ export const DeliverJobDetail = useCrudSchemas(reactive([ table: { width: 150 }, - isTable: false, + isTable: true, }, ]))