|
|
|
@ -457,8 +457,18 @@ export default { |
|
|
|
} |
|
|
|
}, |
|
|
|
|
|
|
|
async handleDispose(row) { |
|
|
|
console.log("row",row); |
|
|
|
async handleDispose(row,type) { |
|
|
|
this.eventId = row.icEventId; |
|
|
|
const url = "/governance/icEvent/detail"; |
|
|
|
const { data, code, msg } = await requestPost(url, { |
|
|
|
icEventId: this.eventId, |
|
|
|
}); |
|
|
|
if (code === 0) { |
|
|
|
this.eventDetailData = { ...data }; |
|
|
|
this.pageType = type; |
|
|
|
} else { |
|
|
|
this.$message.error(msg); |
|
|
|
} |
|
|
|
}, |
|
|
|
//下载模版 |
|
|
|
async handleExportModule() { |
|
|
|
|