Browse Source

入参置空

feature
mk 1 year ago
parent
commit
30b4ded5b2
  1. 9
      src/views/modules/shequzhili/eventOld/cpts/event-info.vue

9
src/views/modules/shequzhili/eventOld/cpts/event-info.vue

@ -504,7 +504,12 @@ export default {
this.formData.agencyId = "";
this.formData.gridId = "";
}
this.formData.openFlag = this.formData.operationType == "7"?1:0
if(this.formData.operationType == "7"){
this.formData.openFlag = 1
this.formData.operationType = ""
}else{
this.formData.openFlag = 0
}
const url = "/governance/icEventOld/add";
const { data, code, msg } = await requestPost(url, {
...this.formData,
@ -540,7 +545,7 @@ export default {
this.replayInfo.icEventId = this.eventId;
if(this.formData.operationType === '7'){
this.replayInfo.openFlag = 1
this.replayInfo.operationType = '7'//openFlagtrue?
this.replayInfo.operationType = ''//openFlagtrue?
this.replayInfo.content = '1111'//openFlagtrue?
}else{
this.replayInfo.openFlag = 0

Loading…
Cancel
Save