From 6277f4ded3d33b91f5061f5d4e2e814c769cb162 Mon Sep 17 00:00:00 2001 From: "DESKTOP-5DIJMF9\\admin" <2388969634@qq.com> Date: Wed, 19 Feb 2025 12:49:59 +0800 Subject: [PATCH] =?UTF-8?q?opt:=E4=BC=98=E5=8C=96=E6=88=90=E5=93=81?= =?UTF-8?q?=E5=87=BA=E5=BA=93=E6=9F=A5=E8=AF=A2=E5=AF=BC=E5=87=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lms/nladmin-ui/src/views/wms/stat/outbillquery/index2.vue | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/lms/nladmin-ui/src/views/wms/stat/outbillquery/index2.vue b/lms/nladmin-ui/src/views/wms/stat/outbillquery/index2.vue index e4b89c3ef..9e7b4c1b6 100644 --- a/lms/nladmin-ui/src/views/wms/stat/outbillquery/index2.vue +++ b/lms/nladmin-ui/src/views/wms/stat/outbillquery/index2.vue @@ -195,11 +195,12 @@ export default { }, downdtl() { if (this.currentRow !== null) { - crud.downloadLoading = true + this.showDtlLoading = true const data = { 'stor_id': this.crud.query.stor_id, 'bill_types': this.crud.query.bill_types, 'with': this.crud.query.with, + 'pcsn': this.crud.query.pcsn, 'customer_name': this.crud.query.customer_name } if (this.crud.query.createTime !== undefined) { @@ -208,9 +209,9 @@ export default { } download('/api/out/OutQuery/download2', data).then(result => { downloadFile(result, '成品出库查询', 'xlsx') - crud.downloadLoading = false + this.showDtlLoading = false }).catch(() => { - crud.downloadLoading = false + this.showDtlLoading = false }) } }