From 4d0b71a0775bdbcdb7de2c3db36368555bf58f35 Mon Sep 17 00:00:00 2001 From: hanshaozhuang Date: Mon, 18 Jul 2022 17:49:52 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9bug=2056616=20=E6=8F=90?= =?UTF-8?q?=E4=BA=A4=E6=8C=89=E9=92=AE=E5=A2=9E=E5=8A=A0loading,=E5=90=A6?= =?UTF-8?q?=E5=88=99=E4=BC=9A=E5=87=BA=E7=8E=B0=E7=82=B9=E5=87=BB=E5=A4=9A?= =?UTF-8?q?=E6=AC=A1=E5=87=BA=E7=8E=B0=E9=87=8D=E5=A4=8D=E6=95=B0=E6=8D=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/personal/pages/my-questions/index.vue | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/pages/personal/pages/my-questions/index.vue b/src/pages/personal/pages/my-questions/index.vue index b842f62d6..25d27956b 100644 --- a/src/pages/personal/pages/my-questions/index.vue +++ b/src/pages/personal/pages/my-questions/index.vue @@ -846,7 +846,7 @@ 取 消 - 提 交 + 提 交 @@ -1253,6 +1253,7 @@ export default { }, data(){ return{ + submitBtnLoading: false, aiKey:1, qiiKey:1, institutionId: this.$store.getters.userInfo.institutionId, @@ -1881,10 +1882,12 @@ export default { this.questionForm.fileList = this.fileList this.$refs['queForm'].validate((valid) => { if(valid){ + this.submitBtnLoading = true this.$http.postData('lawss/AskQuestions/insertAskQuestions',{ ...this.questionForm }, { _this: this }, res => { + this.submitBtnLoading = false this.dialogVisible = false this.activeName = "myQue" this.activeType = this.standType @@ -1901,7 +1904,7 @@ export default { this.handleSelectForm.standName = '' this.handleSelectForm.numberName = '' }, e => { - + this.submitBtnLoading = false }) }else{ return this.$message.warning('请输入问题')