|
|
@@ -3,8 +3,10 @@ import type { RouteRecordRaw } from 'vue-router'
|
|
|
import useSettingsStore from '@/store/modules/settings'
|
|
|
import generatedRoutes from 'virtual:generated-pages'
|
|
|
import { setupLayouts } from 'virtual:meta-layouts'
|
|
|
-import organizationManagement from './modules/organization'
|
|
|
-import personnel from './modules/personnel'
|
|
|
+import organizationManagement from './modules/organization'//租户管理
|
|
|
+import personnel from './modules/personnel'//成员管理
|
|
|
+import insuranceCompany from './modules/insuranceCompany'//保险公司配置
|
|
|
+import product from './modules/product'//产品配置
|
|
|
|
|
|
// 固定路由(默认路由)
|
|
|
const constantRoutes: RouteRecordRaw[] = [
|
|
|
@@ -81,34 +83,12 @@ const asyncRoutes: Route.recordMainRaw[] = [
|
|
|
},
|
|
|
{
|
|
|
meta: {
|
|
|
- title: '租户运营',
|
|
|
- icon: 'i-uim:box',
|
|
|
- },
|
|
|
- children: [
|
|
|
- ],
|
|
|
- },
|
|
|
- {
|
|
|
- meta: {
|
|
|
- title: '数据中心',
|
|
|
- icon: 'i-uim:box',
|
|
|
- },
|
|
|
- children: [
|
|
|
- ],
|
|
|
- },
|
|
|
- {
|
|
|
- meta: {
|
|
|
- title: '增值服务',
|
|
|
- icon: 'i-uim:box',
|
|
|
- },
|
|
|
- children: [
|
|
|
- ],
|
|
|
- },
|
|
|
- {
|
|
|
- meta: {
|
|
|
- title: '基础设置',
|
|
|
+ title: '设置',
|
|
|
icon: 'i-uim:box',
|
|
|
},
|
|
|
children: [
|
|
|
+ insuranceCompany,
|
|
|
+ product
|
|
|
],
|
|
|
},
|
|
|
|