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()
}
},