所有菜单的 name 都加上模块的前缀,避免冲突

This commit is contained in:
YunaiV
2023-04-08 11:49:28 +08:00
committed by &wxr
parent 00a2818c01
commit f46c0e24fe
70 changed files with 97 additions and 96 deletions

View File

@@ -63,7 +63,7 @@ import {getDoneTaskPage} from '@/api/bpm/task'
import {getDate} from "@/utils/dateUtils";
export default {
name: "Done",
name: "BpmDoneTask",
components: {
},
data() {
@@ -113,7 +113,7 @@ export default {
},
/** 处理审批按钮 */
handleAudit(row) {
this.$router.push({ path: "/bpm/process-instance/detail", query: { id: row.processInstance.id}});
this.$router.push({ name: "BpmProcessInstanceDetail", query: { id: row.processInstance.id}});
},
}
};