From e7e4592b08919d8c508f77cdb917a835e7c3a2f1 Mon Sep 17 00:00:00 2001 From: wangwei <1610949092@qq.com> Date: Wed, 20 Nov 2024 17:50:32 +0800 Subject: [PATCH] =?UTF-8?q?11/20=20=E5=AE=A1=E6=A0=B8=E7=9B=98=E7=82=B9?= =?UTF-8?q?=E5=8D=95=E5=8A=A0loading?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../inventory/count/InvCountOrderAudit.vue | 25 +++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/src/views/inventory/count/InvCountOrderAudit.vue b/src/views/inventory/count/InvCountOrderAudit.vue index e8a692fe..c5c1c5aa 100644 --- a/src/views/inventory/count/InvCountOrderAudit.vue +++ b/src/views/inventory/count/InvCountOrderAudit.vue @@ -603,30 +603,55 @@ export default { closeOnClickModal: false,//点击遮罩关闭弹窗 distinguishCancelAndClose: true,//区分取消与关闭 }).then(() => { + // 显示加载状态 + const loading = _this.$loading({ + lock: true, + text: '审核中...', + spinner: 'el-icon-loading', + background: 'rgba(0, 0, 0, 0.7)' + }); params.status = 2; //审核通过 updateCountOrderStatus(params).then((res) => { if (res.code === 20000) { _this.$message.success("审核通过"); _this.getList(); _this.onRestDetail(); + // 关闭加载状态 + loading.close(); } else { + // 关闭加载状态 + loading.close(); _this.$message.error(res.message); } }).catch(() => { + // 关闭加载状态 + loading.close(); }); }).catch((action) => { if (action === 'cancel') { //驳回 params.status = 0; //驳回到上一个状态 + const loading = _this.$loading({ + lock: true, + text: '驳回中...', + spinner: 'el-icon-loading', + background: 'rgba(0, 0, 0, 0.7)' + }); updateCountOrderStatus(params).then((res) => { if (res.code === 20000) { _this.$message.warning("已驳回"); _this.getList(); _this.onRestDetail(); + // 关闭加载状态 + loading.close(); } else { + // 关闭加载状态 + loading.close(); _this.$message.error(res.message); } }).catch(() => { + // 关闭加载状态 + loading.close(); }); } else { //关闭弹窗