|
@@ -420,7 +420,7 @@ export default {
|
420
|
420
|
"service/bpm/bpm/claimAndCompletedTask/" + incident.taskId,
|
421
|
421
|
{ receive_code: "handler", userId: that.loginUser.id }
|
422
|
422
|
)
|
423
|
|
- .then(function (res) {
|
|
423
|
+ .then((res) => {
|
424
|
424
|
console.log(res.data);
|
425
|
425
|
if (res.data.status == 200) {
|
426
|
426
|
that
|
|
@@ -430,7 +430,10 @@ export default {
|
430
|
430
|
content: "点击返回首页",
|
431
|
431
|
icon: "cubeic-right",
|
432
|
432
|
onConfirm: (e, promptValue) => {
|
433
|
|
- that.$router.push({ path: "/main" });
|
|
433
|
+ this.loadShow = true;
|
|
434
|
+ this.items = [];
|
|
435
|
+ this.idx = 0;
|
|
436
|
+ this.getData();
|
434
|
437
|
},
|
435
|
438
|
})
|
436
|
439
|
.show();
|