布局政策征求意见流程

This commit is contained in:
范强强
2023-10-18 14:40:51 +08:00
parent 303d13fa2a
commit a001162dda
@@ -336,6 +336,7 @@
title: '',
checkBox: false,
selectType: '',
roleForm:{},
}
},
computed: {
@@ -525,7 +526,7 @@
},
//启动流程
startProcessRollBack() {
const json = Object.assign(this.form, this.roleForm);
const json = Object.assign(this.dataForm, this.roleForm);
json.commentText = this.commentText
this.$http.post('lawss/activiti/startProcessRollBack', {
createUser: this.$store.getters.userInfo.userId,
@@ -548,7 +549,7 @@
},
//提交流程
completeTask(taskId) {
const json = Object.assign(this.form, this.roleForm);
const json = Object.assign(this.dataForm, this.roleForm);
json.commentText = this.commentText
this.$http.post('lawss/activiti/completeTask', {
json: JSON.stringify(json),