Browse Source

Merge branch 'bug_mk' into dev

V4.3.3_XiaoWang
mk 1 year ago
parent
commit
ec8c7c4e6c
  1. 6
      src/views/modules/shequzhili/eventOld/cpts/event-info.vue

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

@ -477,6 +477,7 @@ export default {
project: this.project,
demand: this.demand,
issueInfo: this.issueInfo,
openFlag:0
};
await this.submit();
},
@ -504,7 +505,7 @@ export default {
this.formData.agencyId = "";
this.formData.gridId = "";
}
this.formData.openFlag = null
this.formData.openFlag = 0
const url = "/governance/icEventOld/add";
const { data, code, msg } = await requestPost(url, {
...this.formData,
@ -537,7 +538,8 @@ export default {
}
this.replayInfo = this.$refs.ref_processinfo_dispose.replayInfo;
this.replayInfo.icEventId = this.eventId;
this.replayInfo.openFlag = null
this.replayInfo.openFlag = null;
this.replayInfo.openId = this.eventDetailCopy.openId;
//
let url = "/governance/icEventOld/reply";
await this.submitDispose(url, this.replayInfo);

Loading…
Cancel
Save