From 01717911421b864c9906448dc36903f45864dadb Mon Sep 17 00:00:00 2001 From: zelian_wu <15576055375@163.com> Date: Tue, 12 Dec 2023 13:53:59 +0800 Subject: [PATCH] =?UTF-8?q?2023-12-12=20=E8=B5=AB=E8=89=BE=E5=87=BA?= =?UTF-8?q?=E5=BA=93=E6=A0=B8=E9=AA=8C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/modules/pad/padCODelNotify.vue | 30 +++++++++++++++++++----- 1 file changed, 24 insertions(+), 6 deletions(-) diff --git a/src/views/modules/pad/padCODelNotify.vue b/src/views/modules/pad/padCODelNotify.vue index a193c5d..79de419 100644 --- a/src/views/modules/pad/padCODelNotify.vue +++ b/src/views/modules/pad/padCODelNotify.vue @@ -52,6 +52,11 @@ + + + 筛选未发货清单 + + 查 询 @@ -70,7 +75,7 @@ prop="delNotifyNo" header-align="center" align="left" - width="130" + width="150" label="通知单号"/> - + - +
+ +
- +
+ +
@@ -550,6 +559,7 @@ export default { endDate:dayjs().format("YYYY-MM-DD"), customerId:undefined, delNotifyNo:undefined, + shipFlag:true, no:1, size:50, total:0, @@ -592,6 +602,11 @@ export default { let params = JSON.parse(JSON.stringify(this.searchData)) params.no = this.no; params.size = this.size; + if (this.searchData.shipFlag){ + params.shipFlag = "N"; + }else { + params.shipFlag = null; + } this.delNotifyHeaderList = []; this.delNotifyDetailList = []; this.delNotifyHeaderTableLoading = true; @@ -768,4 +783,7 @@ export default { .el-select-dropdown__item{ font-size: 18px; } + .right /deep/ .el-input--medium .el-input__inner{ + text-align: right; + }