From 41faac0bae470e7ed4b331f89f12ff7e71382a26 Mon Sep 17 00:00:00 2001 From: dsh <15569653818@163.com> Date: Mon, 22 Apr 2024 17:21:55 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AE=A1=E6=A0=B8=E6=8F=90=E4=BA=A4=E4=BF=AE?= =?UTF-8?q?=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/reward/apply/index.vue | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/src/views/reward/apply/index.vue b/src/views/reward/apply/index.vue index 7a3ccf4..764a095 100644 --- a/src/views/reward/apply/index.vue +++ b/src/views/reward/apply/index.vue @@ -94,7 +94,7 @@
@@ -300,7 +300,8 @@ export default { applyParam:{ applyType:'' }, - applyId:'' + applyId:'', + isDisabled:false, }; }, computed: { @@ -419,12 +420,15 @@ export default { this.isShowButton = true this.isShowUploadButton = true this.title = "添加奖项"; - console.log(this.applyParam) // if(this.noticeList.length === 0){ getApplyId(this.applyParam).then(response => { - this.$store.dispatch('apply/setApplyId', { key: 'applyId', value: response.data.applyId }); - this.applyId = localStorage.getItem('applyId') - this.getList() + if (response.code === 200){ + this.$store.dispatch('apply/setApplyId', { key: 'applyId', value: response.data.applyId }); + this.applyId = localStorage.getItem('applyId') + this.getList() + } + }).catch((err)=>{ + this.isDisabled = true }); // } },