fix: 增加已办页面的独立链接

fix: 组织管理的主列表改为懒加载
This commit is contained in:
gaoyunqi
2024-07-22 19:46:51 +08:00
parent 8034e9b090
commit 6c5b4b6272
5 changed files with 384 additions and 244 deletions

View File

@ -24,7 +24,7 @@
loader: () => import('../workflow/task/components/processTasks/MyProcessV2.vue')
});
const TaskDone = defineAsyncComponent({
loader: () => import('../workflow/task/components/processTasks/TaskDone.vue')
loader: () => import('../workflow/task/components/processTasks/TaskDoneV2.vue')
});
const RecycleBin = defineAsyncComponent({
@ -100,6 +100,8 @@
id = 'Drafts';
} else if (lHash.indexOf('/myProcess') > 0) {
id = 'MyProcess';
} else if (lHash.indexOf('/done') > 0) {
id = 'TaskDone';
}
let data = reactive({
componentName: shallowRef(ToDoTasks)