暂时去除回退功能,边界处理不够正确

This commit is contained in:
YunaiV
2022-07-08 08:54:15 +08:00
parent b37a535d20
commit 26ff753701
38 changed files with 15 additions and 1306 deletions

View File

@ -412,15 +412,16 @@ export default {
},
/** 处理审批退回的操作 */
handleBack(task) {
const data = {
id: task.id,
assigneeUserId: 1
}
// this.$modal.msgError("暂不支持【--退回】功能!");
backTask(data).then(response => {
this.$modal.msgSuccess("回退成功!");
this.getDetail(); // 获得最新详情
});
this.$modal.msgError("暂不支持【退回】功能!");
// 可参考 http://blog.wya1.com/article/636697030/details/7296
// const data = {
// id: task.id,
// assigneeUserId: 1
// }
// backTask(data).then(response => {
// this.$modal.msgSuccess("回退成功!");
// this.getDetail(); // 获得最新详情
// });
}
}
};