修改提交流程的传参

修改虚拟清单添加的接口
This commit is contained in:
qq787203167
2022-04-27 10:21:01 +08:00
parent 2e8a1fdff4
commit 7b4add830c
5 changed files with 9 additions and 10 deletions
@@ -187,13 +187,12 @@
})
},
completeTask(value,handlingTime) {
let json = Object.assign({}, this.queryBy, value)
let json = Object.assign({handlingTime:handlingTime}, this.queryBy, value)
let data = JSON.stringify(json).replace(/\"/g, '\'')
let query = {
userid: this.userInfo().id,
taskId: this.$route.query.taskId || this.$route.query.taskIds,
json: data,
handlingTime:handlingTime
}
postAction('/workFlow/completeTask', query).then((res) => {
if (res.success) {