审核提交修改

dev
dsh 12 months ago
parent d4461fdc9f
commit 41faac0bae

@ -94,7 +94,7 @@
</el-row> </el-row>
</el-form> </el-form>
<div slot="footer" class="dialog-footer"> <div slot="footer" class="dialog-footer">
<el-button type="primary" v-if="isView === false" @click="submitForm"> </el-button> <el-button type="primary" v-if="isView === false" :disabled="isDisabled" @click="submitForm"> </el-button>
<el-button @click="cancel"> </el-button> <el-button @click="cancel"> </el-button>
</div> </div>
</el-dialog> </el-dialog>
@ -300,7 +300,8 @@ export default {
applyParam:{ applyParam:{
applyType:'' applyType:''
}, },
applyId:'' applyId:'',
isDisabled:false,
}; };
}, },
computed: { computed: {
@ -419,12 +420,15 @@ export default {
this.isShowButton = true this.isShowButton = true
this.isShowUploadButton = true this.isShowUploadButton = true
this.title = "添加奖项"; this.title = "添加奖项";
console.log(this.applyParam)
// if(this.noticeList.length === 0){ // if(this.noticeList.length === 0){
getApplyId(this.applyParam).then(response => { getApplyId(this.applyParam).then(response => {
this.$store.dispatch('apply/setApplyId', { key: 'applyId', value: response.data.applyId }); if (response.code === 200){
this.applyId = localStorage.getItem('applyId') this.$store.dispatch('apply/setApplyId', { key: 'applyId', value: response.data.applyId });
this.getList() this.applyId = localStorage.getItem('applyId')
this.getList()
}
}).catch((err)=>{
this.isDisabled = true
}); });
// } // }
}, },

Loading…
Cancel
Save