From 4c4a2779e378d542162b8df86599629cfdd9bccb Mon Sep 17 00:00:00 2001 From: wanglei Date: Mon, 3 Nov 2025 10:28:22 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A4=9A=E4=BB=BB=E5=8A=A1=E8=AF=84=E5=88=86?= =?UTF-8?q?=E8=B4=A6=E5=8F=B7=E7=94=9F=E6=88=90=20=E6=8F=90=E4=BA=A4?= =?UTF-8?q?=E6=9C=9F=E9=97=B4=E7=A1=AE=E5=AE=9A=E6=8C=89=E9=92=AE=E7=A6=81?= =?UTF-8?q?=E7=94=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ruoyi-ui/src/views/kaohe/pingce/index.vue | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/ruoyi-ui/src/views/kaohe/pingce/index.vue b/ruoyi-ui/src/views/kaohe/pingce/index.vue index fdb786d..b303769 100644 --- a/ruoyi-ui/src/views/kaohe/pingce/index.vue +++ b/ruoyi-ui/src/views/kaohe/pingce/index.vue @@ -638,7 +638,7 @@ @@ -866,6 +866,7 @@ export default { scpfzhItemsOpts:[], // 多任务生成评分账号 drwScpfzhOpen: false, + drwScpfzhLoading: false, // 多任务生成评分账号 drwScpfzhForm: [], /** 选择模板*/ @@ -1676,6 +1677,7 @@ export default { }, // 多任务提交生成评分账号 drwScpfzhSubmit(){ + this.drwScpfzhLoading = true this.$refs["drwScpfzhForm"].validate(valid => { if (valid) { let VoteIds=[]; @@ -1692,8 +1694,11 @@ export default { itemNames: itemNames, voteIds: VoteIds.join(','), }).then(response => { + this.drwScpfzhLoading = false; this.drwScpfzhOpen = false; this.$modal.msgSuccess("生成成功"); + }).catch(()=>{ + this.drwScpfzhLoading = false; }) } })