|
|
@@ -0,0 +1,56 @@
|
|
|
+import type { RouteRecordRaw } from 'vue-router'
|
|
|
+
|
|
|
+const Layout = () => import('@/layouts/index.vue')
|
|
|
+const routes: RouteRecordRaw = {
|
|
|
+ path: '/productConfiguration/drivingInsurance',
|
|
|
+ component: Layout,
|
|
|
+ redirect: '/productConfiguration/drivingInsurance/index',
|
|
|
+ name: 'ProductConfigurationDrivingInsurance',
|
|
|
+ meta: {
|
|
|
+ title: '产品配置',
|
|
|
+ icon:'zh',
|
|
|
+ },
|
|
|
+ children: [
|
|
|
+ {
|
|
|
+ path: 'index',
|
|
|
+ name: 'DrivingInsuranceIndex',
|
|
|
+ redirect: '/productConfiguration/drivingInsurance/index',
|
|
|
+ meta: {
|
|
|
+ title: '驾意险配置',
|
|
|
+ // auth: ['organizationlist.add', 'organizationlist.view', 'organizationlist.delete', 'organizationlist.edit']
|
|
|
+ },
|
|
|
+ children: [
|
|
|
+ {
|
|
|
+ path: '',
|
|
|
+ component: () => import('@/views/productConfiguration/drivingInsurance/index.vue'),
|
|
|
+ meta: {
|
|
|
+ title: '驾意险配置',
|
|
|
+ menu: false,
|
|
|
+ breadcrumb: false,
|
|
|
+ },
|
|
|
+ },
|
|
|
+ // {
|
|
|
+ // path: 'organizationAdd',
|
|
|
+ // name: 'OrganizationAdd',
|
|
|
+ // component: () => import('@/views/organizationManagement/organization/organizationAdd.vue'),
|
|
|
+ // meta: {
|
|
|
+ // title: '驾意险添加',
|
|
|
+ // menu: false,
|
|
|
+ // activeMenu: '/organizationManagement/organization/organizationlist',
|
|
|
+ // },
|
|
|
+ // },
|
|
|
+ ],
|
|
|
+ },
|
|
|
+
|
|
|
+ {
|
|
|
+ path: 'index',
|
|
|
+ name: 'SpecialClauseIndex',
|
|
|
+ component: () => import('@/views/productConfiguration/specialClause/index.vue'),
|
|
|
+ meta: {
|
|
|
+ title: '特约管理',
|
|
|
+ },
|
|
|
+ },
|
|
|
+ ],
|
|
|
+}
|
|
|
+
|
|
|
+export default routes
|