From 71720df56f83f2124e1fc36d56fdda68dfb2941a Mon Sep 17 00:00:00 2001 From: liujun Date: Wed, 17 Apr 2024 17:58:26 +0800 Subject: [PATCH] =?UTF-8?q?bug=E4=BF=AE=E5=A4=8D-=E8=BF=9E=E7=82=B9bug?= =?UTF-8?q?=E4=BF=AE=E5=A4=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/xgf/flow/components/sendUtil.vue | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/views/xgf/flow/components/sendUtil.vue b/src/views/xgf/flow/components/sendUtil.vue index 2c02c93..8bef0a8 100644 --- a/src/views/xgf/flow/components/sendUtil.vue +++ b/src/views/xgf/flow/components/sendUtil.vue @@ -153,12 +153,14 @@ export default { this.$message.error('请填写完整信息') } else { if (this.form.TYPE !== '2') { + this.loading = true requestFN('/xgf/user/approveMax', this.form) .then((data) => { this.$message.success('推送成功') this.visible = false this.$emit('refresh', '') this.handleClose() + this.loading = false }) .catch((e) => { console.log(e) @@ -174,12 +176,14 @@ export default { formData.append('weiTuoShu', this.form.APPOINT_ANNEX[i].raw) } } + this.loading = true upload('/xgf/user/approveMax', formData) .then((data) => { this.$message.success('推送成功') this.visible = false this.$emit('refresh', '') this.handleClose() + this.loading = false }) .catch((e) => { console.log(e)