From 3e359e4550d018035406a97c190b98f83839ba7f Mon Sep 17 00:00:00 2001 From: houzhongjian <houzhongyi@126.com> Date: 星期五, 13 十二月 2024 10:41:05 +0800 Subject: [PATCH] 1、工作流重做更新 2、@import修改为@use以应对sass升级弃用@import 3、进入系统后自动redirect到home页 --- src/router/modules/remaining.ts | 20 +++++++++++++++++++- 1 files changed, 19 insertions(+), 1 deletions(-) diff --git a/src/router/modules/remaining.ts b/src/router/modules/remaining.ts index 5de3d74..6b64a95 100644 --- a/src/router/modules/remaining.ts +++ b/src/router/modules/remaining.ts @@ -72,6 +72,7 @@ path: '/', component: Layout, name: 'Home', + redirect: '/index', meta: { hidden: true, noTagsView: true @@ -287,6 +288,18 @@ } }, { + path: 'manager/simple/model', + component: () => import('@/views/bpm/simple/SimpleModelDesign.vue'), + name: 'SimpleModelDesign', + meta: { + noCache: true, + hidden: true, + canTo: true, + title: '仿钉钉设计流程', + activeMenu: '/bpm/manager/model' + } + }, + { path: 'manager/definition', component: () => import('@/views/bpm/definition/index.vue'), name: 'BpmProcessDefinition', @@ -308,7 +321,12 @@ canTo: true, title: '流程详情', activeMenu: '/bpm/task/my' - } + }, + props: (route) => ({ + id: route.query.id, + taskId: route.query.taskId, + activityId: route.query.activityId + }) }, { path: 'oa/leave/create', -- Gitblit v1.9.3