From cd9862f29c7146fba32ee35db5767a05ca7c6160 Mon Sep 17 00:00:00 2001 From: "zhonghua.li" Date: Mon, 18 May 2026 09:14:41 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AE=8C=E5=96=84=E8=AE=A2=E5=8D=95=E7=8A=B6?= =?UTF-8?q?=E6=80=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/lb-business/order-manage/index.vue | 42 +++++++++++--------- 1 file changed, 24 insertions(+), 18 deletions(-) diff --git a/src/views/lb-business/order-manage/index.vue b/src/views/lb-business/order-manage/index.vue index 95f207e..93dd55c 100644 --- a/src/views/lb-business/order-manage/index.vue +++ b/src/views/lb-business/order-manage/index.vue @@ -2,6 +2,25 @@
+ + + + + + + + + + + + + + + + + + + @@ -17,21 +36,6 @@ - - - - - - - - - - - - - - - 查询 清空 @@ -407,7 +411,7 @@ export default { sellerId: '', consignee: '', phone: '', - status: '', + status: undefined, isResell: undefined, dataType: '' }, @@ -473,7 +477,9 @@ export default { sellerId: parseOptionalLong(this.queryParams.sellerId), consignee: this.queryParams.consignee || undefined, phone: this.queryParams.phone || undefined, - status: parseOptionalInt(this.queryParams.status), + status: this.queryParams.status === 0 || this.queryParams.status === 1 || this.queryParams.status === 2 + ? this.queryParams.status + : undefined, isResell: this.queryParams.isResell === 0 || this.queryParams.isResell === 1 ? this.queryParams.isResell : undefined, @@ -497,7 +503,7 @@ export default { sellerId: '', consignee: '', phone: '', - status: '', + status: undefined, isResell: undefined, dataType: '' }