|
|
@ -187,7 +187,7 @@ |
|
|
|
<el-table-column fixed="right" label="操作" align="center" width="200px"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<el-button @click="handleWatch(scope.row)" type="text" size="small">查看</el-button> |
|
|
|
<el-button @click="handleVote(scope.row)" type="text" size="small" class="">督办</el-button> |
|
|
|
<el-button @click="beforhandleVote(scope.row)" type="text" size="small" class="">督办</el-button> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
</el-table> |
|
|
@ -568,7 +568,7 @@ export default { |
|
|
|
let params = { |
|
|
|
icEventIdList: this.multipleSelection, |
|
|
|
content: this.superviseFrom.content, |
|
|
|
operationType:21 // 21:督办 |
|
|
|
operationType:"7" // 21:督办 |
|
|
|
}; |
|
|
|
const { data, code, msg } = await requestPost(url, params); |
|
|
|
if (code === 0) { |
|
|
@ -685,6 +685,11 @@ export default { |
|
|
|
handleEditSuccess() { |
|
|
|
this.handleClose(); |
|
|
|
this.getTableData(); |
|
|
|
}, |
|
|
|
beforhandleVote(row){ |
|
|
|
this.showSupervise=true |
|
|
|
this.multipleSelection=[] |
|
|
|
this.multipleSelection.push(row.icEventId) |
|
|
|
}, |
|
|
|
async handleVote(row){ |
|
|
|
const url = "/governance/icEventOld/updateSpecialColumn"; |
|
|
|