feat: 将我发起的流程列表独立出来,改为tab中打开,调整审批记录的样式
This commit is contained in:
@ -21,7 +21,7 @@
|
||||
});
|
||||
|
||||
const MyProcess = defineAsyncComponent({
|
||||
loader: () => import('../workflow/task/components/processTasks/MyProcess.vue')
|
||||
loader: () => import('../workflow/task/components/processTasks/MyProcessV2.vue')
|
||||
});
|
||||
const TaskDone = defineAsyncComponent({
|
||||
loader: () => import('../workflow/task/components/processTasks/TaskDone.vue')
|
||||
@ -98,6 +98,8 @@
|
||||
const lHash = location.hash;
|
||||
if (lHash.indexOf('/draft') > 0) {
|
||||
id = 'Drafts';
|
||||
} else if (lHash.indexOf('/myProcess') > 0) {
|
||||
id = 'MyProcess';
|
||||
}
|
||||
let data = reactive({
|
||||
componentName: shallowRef(ToDoTasks)
|
||||
|
||||
Reference in New Issue
Block a user