From af67f7414f6a64def71fb58fcc1c4d38c5d7046c Mon Sep 17 00:00:00 2001 From: JINGYJ <1458671527@qq.com> Date: Thu, 27 Jun 2024 13:43:10 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E4=B8=9A=E5=8A=A1=E7=AE=A1=E7=90=86?= =?UTF-8?q?=E9=A1=B5=E9=9D=A2=E5=BC=80=E5=8F=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/router/modules/businessManagement.ts | 24 ++ .../processConfiguration/index.vue | 260 ++++++++++++++++++ 2 files changed, 284 insertions(+) create mode 100644 src/router/modules/businessManagement.ts create mode 100644 src/views/businessManagement/processConfiguration/index.vue diff --git a/src/router/modules/businessManagement.ts b/src/router/modules/businessManagement.ts new file mode 100644 index 0000000..7a65cca --- /dev/null +++ b/src/router/modules/businessManagement.ts @@ -0,0 +1,24 @@ +export default { + path: "/businessManagement", + redirect: "/businessManagement/processConfiguration", + meta: { + title: "业务管理", + icon: 2, + rank: 10 + }, + children: [ + { + path: "/businessManagement/processConfiguration", + name: "ProcessConfiguration", + component: () => + import("@/views/businessManagement/processConfiguration/index.vue"), + meta: { + title: "流程配置", + + showLink: true, + showParent: true, + roles: ["admin", "common"] + } + } + ] +} as RouteConfigsTable; diff --git a/src/views/businessManagement/processConfiguration/index.vue b/src/views/businessManagement/processConfiguration/index.vue new file mode 100644 index 0000000..eb97337 --- /dev/null +++ b/src/views/businessManagement/processConfiguration/index.vue @@ -0,0 +1,260 @@ + + + +