From afb44179d48494e59b1bae50e31599409898d305 Mon Sep 17 00:00:00 2001
From: wangwei <1610949092@qq.com>
Date: Tue, 3 Dec 2024 17:25:39 +0800
Subject: [PATCH] =?UTF-8?q?12/3=20=E5=8F=91=E7=A5=A8=E7=99=BB=E8=AE=B0?=
=?UTF-8?q?=E4=BF=AE=E6=94=B9=20=E9=A2=86=E7=94=A8=E5=8D=95=E6=8D=AE?=
=?UTF-8?q?=E5=A2=9E=E5=8A=A0loading?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/views/inout/InvoiceCkeck.vue | 198 +++++++++---------
src/views/inout/InvoiceRegByOrder.vue | 7 +-
.../inout/receive/receiveAuditDetail.vue | 10 +
3 files changed, 115 insertions(+), 100 deletions(-)
diff --git a/src/views/inout/InvoiceCkeck.vue b/src/views/inout/InvoiceCkeck.vue
index dbdae515..3701a049 100644
--- a/src/views/inout/InvoiceCkeck.vue
+++ b/src/views/inout/InvoiceCkeck.vue
@@ -155,100 +155,100 @@
-
-
-
- 单据 {{ input.billNo }}-单据详情
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -1067,6 +1069,7 @@ export default {
acceptQuery: null,
acceptOrderVisible: false,
subRow: null,
+ detailList:[],
};
},
components: {AcceptOrder, DialogInvoice, InvoiceRegister, ElImageViewer, InvoiceRegistrationDetermine, checkInvoice},
@@ -1095,11 +1098,13 @@ export default {
this.getList();
},
InvoiceRegister1(_this,row) {
- _this.savebillno = row.billNo
+ _this.savebillno = _this.currentRow.billNo
_this.inputInv = row;
+ _this.detailList.push(row)
_this.checkInvoice = true;
},
closecheckInvoice() {
+ this.detailList = []
this.checkInvoice = false;
this.getList();
this.currentRow.billNo = this.savebillno;
diff --git a/src/views/inout/receive/receiveAuditDetail.vue b/src/views/inout/receive/receiveAuditDetail.vue
index 14be5010..e0ddf0d7 100644
--- a/src/views/inout/receive/receiveAuditDetail.vue
+++ b/src/views/inout/receive/receiveAuditDetail.vue
@@ -203,6 +203,13 @@ export default {
//审核拒绝
this.noPassLoading = true
}
+ // 显示加载状态
+ const loading = this.$loading({
+ lock: true,
+ text: '审核中...',
+ spinner: 'el-icon-loading',
+ background: 'rgba(0, 0, 0, 0.7)'
+ });
getAudit(data).then((res => {
if (val == '3'){
this.passLoading = false
@@ -210,11 +217,14 @@ export default {
this.noPassLoading = false
}
if (res.code == 20000) {
+ loading.close();
this.closeDialog();
} else {
+ loading.close();
this.$message.error(res.message);
}
}))
+ loading.close();
this.closeDialog()
}
},