对接握手流程

This commit is contained in:
qq787203167
2022-04-25 15:52:58 +08:00
parent aa520f0278
commit 308dfd4f00
@@ -831,7 +831,7 @@
startProcess(value) {
let query = {
type: 1,
msg: JSON.stringify(value)
msg: value
}
postAction('/workFlow/startProcess', query).then((res) => {
if (res.success) {
@@ -847,7 +847,12 @@
}
postAction('/workFlow/completeTask', query).then((res) => {
if (res.success) {
this.visible = false
this.selectedRowKeys = []
this.$message.success(this.$t('OperationSuccessful'))
this.$route
} else {
this.$message.warning(this.$t('operationFailed'))
}
})
},