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 }); // } },