|
@ -503,6 +503,7 @@ export default { |
|
|
this.formData.agencyId = ""; |
|
|
this.formData.agencyId = ""; |
|
|
this.formData.gridId = ""; |
|
|
this.formData.gridId = ""; |
|
|
} |
|
|
} |
|
|
|
|
|
this.formData.openFlag = null |
|
|
const url = "/governance/icEventOld/add"; |
|
|
const url = "/governance/icEventOld/add"; |
|
|
const { formData } = this; |
|
|
const { formData } = this; |
|
|
const { data, code, msg } = await requestPost(url, { |
|
|
const { data, code, msg } = await requestPost(url, { |
|
@ -537,6 +538,7 @@ export default { |
|
|
} |
|
|
} |
|
|
this.replayInfo = this.$refs.ref_processinfo_dispose.replayInfo; |
|
|
this.replayInfo = this.$refs.ref_processinfo_dispose.replayInfo; |
|
|
this.replayInfo.icEventId = this.eventId; |
|
|
this.replayInfo.icEventId = this.eventId; |
|
|
|
|
|
this.replayInfo.openFlag = null |
|
|
//回复属性赋值 |
|
|
//回复属性赋值 |
|
|
let url = "/governance/icEventOld/reply"; |
|
|
let url = "/governance/icEventOld/reply"; |
|
|
await this.submitDispose(url, this.replayInfo); |
|
|
await this.submitDispose(url, this.replayInfo); |
|
@ -569,10 +571,27 @@ export default { |
|
|
} else { |
|
|
} else { |
|
|
this.$message.info("请选择一种处理方式"); |
|
|
this.$message.info("请选择一种处理方式"); |
|
|
} |
|
|
} |
|
|
|
|
|
if(this.formData.operationType){ |
|
|
|
|
|
await this.sendProcessNotificationMsg() |
|
|
|
|
|
} |
|
|
} else { |
|
|
} else { |
|
|
return false; |
|
|
return false; |
|
|
} |
|
|
} |
|
|
}, |
|
|
}, |
|
|
|
|
|
async sendProcessNotificationMsg(){ |
|
|
|
|
|
let parm = { |
|
|
|
|
|
operationType:this.eventDetailData.operationType, |
|
|
|
|
|
openId:this.eventDetailData.openId, |
|
|
|
|
|
eventContent:this.eventDetailData.eventContent, |
|
|
|
|
|
latestOperatedTime:this.eventDetailData.latestOperatedTime |
|
|
|
|
|
} |
|
|
|
|
|
let {data,code,msg} = await requestPost('/actual/base/communityPublicity/sendProcessNotificationMsg',parm) |
|
|
|
|
|
if(code === 0){ |
|
|
|
|
|
console.log(data,'sssssssssssssssssssssssssssss'); |
|
|
|
|
|
}else{ |
|
|
|
|
|
console.log(msg); |
|
|
|
|
|
} |
|
|
|
|
|
}, |
|
|
async submitDispose(url, params) { |
|
|
async submitDispose(url, params) { |
|
|
const { data, code, msg } = await requestPost(url, { |
|
|
const { data, code, msg } = await requestPost(url, { |
|
|
...params, |
|
|
...params, |
|
|