Browse Source

修改已办列表--终止

master
yunuo970428 2 years ago
parent
commit
4d8a599581
  1. 6
      anrui-system-ui/src/views/flow/doneList.vue

6
anrui-system-ui/src/views/flow/doneList.vue

@ -403,12 +403,14 @@ export default {
url: 'api/' + this.dialogList.stopUrl,
data: this.dialogList,
headers: { 'token': getStorage() }
}).then((res) => {
if (res.success) {
}).then((response) => {
if (response.data.success) {
this.breakProcessVisible = false
this.$message({ showClose: true, type: 'success', message: '操作成功' })
this.getList()
}
}).catch(() => {
console.log('操作失败')
})
// breakProcess(this.dialogList).then((resp) => {
// if (resp.success) {

Loading…
Cancel
Save