|
|
|
@ -94,7 +94,7 @@
|
|
|
|
|
</el-row>
|
|
|
|
|
</el-form>
|
|
|
|
|
<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>
|
|
|
|
|
</div>
|
|
|
|
|
</el-dialog>
|
|
|
|
@ -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 => {
|
|
|
|
|
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
|
|
|
|
|
});
|
|
|
|
|
// }
|
|
|
|
|
},
|
|
|
|
|