|
@@ -359,7 +359,14 @@
|
|
|
}).then(({data}) => {
|
|
|
this.$message.success('回退成功')
|
|
|
this.$store.dispatch('tagsView/delView', {fullPath: this.$route.fullPath})
|
|
|
- this.$router.push('/flowable/task/TodoList')
|
|
|
+ var num = this.$route.query.num
|
|
|
+ if (num === '2') {
|
|
|
+ this.$router.push('/sys/dashboard/workBench/Pending')
|
|
|
+ } else if (num === '3') {
|
|
|
+ this.$router.push('/sys/dashboard/workBench/PendingList')
|
|
|
+ } else {
|
|
|
+ this.$router.push('/flowable/task/TodoList')
|
|
|
+ }
|
|
|
this.cc(data)
|
|
|
})
|
|
|
},
|