对接政策征求意见流程

This commit is contained in:
范强强
2023-10-19 14:18:17 +08:00
parent 3dc989b948
commit 87a75344d7
@@ -619,14 +619,29 @@
handleReject() { handleReject() {
// approvalFlag value0通过 1驳回 // approvalFlag value0通过 1驳回
this.openButtonLoading() this.openButtonLoading()
const json = Object.assign(this.dataForm); if (this.taskKey == 'PolicySolicitOpinionProcessKey9') {
json.commentText = this.commentText this.$refs.solicitationListRef.submit((row, ids) => {
json.approvalFlag = 1 const json = Object.assign(this.dataForm);
let query = { json.commentText = this.commentText
form: json, json.approvalFlag = 0
commentText: this.commentText let query = {
form: json,
policySolicitOpinionEOList: row,
removeIds: ids,
commentText: this.commentText
}
this.completeTask(this.$route.query.taskIds, query)
})
} else {
const json = Object.assign(this.dataForm);
json.commentText = this.commentText
json.approvalFlag = 1
let query = {
form: json,
commentText: this.commentText
}
this.completeTask(this.$route.query.taskIds, query)
} }
this.completeTask(this.$route.query.taskIds, query)
}, },
//启动流程 //启动流程
startProcessRollBack(roleForm) { startProcessRollBack(roleForm) {