FlowVue/src/router/modules/remaining.ts

469 lines
11 KiB
TypeScript
Raw Normal View History

import { Layout } from '@/utils/routerHelper'
const { t } = useI18n()
/**
2023-04-24 11:42:44 +08:00
* redirect: noredirect noredirect
* name:'router-name' 使<keep-alive>
* meta : {
hidden: true true 404login等页面( false)
alwaysShow: true children 1
children
alwaysShow: true
( false)
title: 'title'
icon: 'svg-name'
noCache: true true <keep-alive> ( false)
breadcrumb: false falsebreadcrumb面包屑中显示( true)
affix: true truetag项中( false)
noTagsView: true truetag中( false)
activeMenu: '/dashboard'
followAuth: '/dashboard'
canTo: true true即使hidden为true( false)
}
2023-04-24 11:42:44 +08:00
**/
const remainingRouter: AppRouteRecordRaw[] = [
{
path: '/redirect',
component: Layout,
name: 'Redirect',
children: [
{
path: '/redirect/:path(.*)',
name: 'Redirect',
component: () => import('@/views/Redirect/Redirect.vue'),
meta: {}
}
],
meta: {
hidden: true,
noTagsView: true
}
},
{
path: '/',
component: Layout,
redirect: '/index',
name: 'Home',
meta: {},
children: [
{
path: 'index',
component: () => import('@/views/Home/Index.vue'),
name: 'Index',
meta: {
title: t('router.home'),
icon: 'ep:home-filled',
noCache: false,
affix: true
}
}
]
},
{
path: '/user',
component: Layout,
name: 'UserInfo',
meta: {
hidden: true
},
children: [
{
path: 'profile',
component: () => import('@/views/Profile/Index.vue'),
name: 'Profile',
meta: {
canTo: true,
hidden: true,
noTagsView: false,
icon: 'ep:user',
title: t('common.profile')
}
},
{
path: 'notify-message',
component: () => import('@/views/system/notify/my/index.vue'),
name: 'MyNotifyMessage',
meta: {
canTo: true,
hidden: true,
noTagsView: false,
icon: 'ep:message',
title: '我的站内信'
}
}
]
},
2023-03-19 16:48:27 +08:00
{
path: '/dict',
component: Layout,
name: 'dict',
meta: {
hidden: true
},
children: [
{
path: 'type/data/:dictType',
component: () => import('@/views/system/dict/data/index.vue'),
name: 'SystemDictData',
2023-03-19 16:48:27 +08:00
meta: {
title: '字典数据',
noCache: true,
hidden: true,
canTo: true,
icon: '',
activeMenu: '/system/dict'
2023-03-19 16:48:27 +08:00
}
}
]
},
{
path: '/codegen',
component: Layout,
name: 'CodegenEdit',
meta: {
hidden: true
},
children: [
{
path: 'edit',
component: () => import('@/views/infra/codegen/EditTable.vue'),
name: 'InfraCodegenEditTable',
meta: {
noCache: true,
hidden: true,
canTo: true,
icon: 'ep:edit',
title: '修改生成配置',
activeMenu: 'infra/codegen/index'
}
}
]
},
{
path: '/job',
component: Layout,
name: 'JobL',
meta: {
hidden: true
},
children: [
{
path: 'job-log',
2023-04-01 14:26:29 +08:00
component: () => import('@/views/infra/job/logger/index.vue'),
name: 'InfraJobLog',
meta: {
noCache: true,
hidden: true,
canTo: true,
icon: 'ep:edit',
title: '调度日志',
activeMenu: 'infra/job/index'
}
}
]
},
{
path: '/login',
component: () => import('@/views/Login/Login.vue'),
name: 'Login',
meta: {
hidden: true,
title: t('router.login'),
noTagsView: true
}
},
2023-04-07 01:45:29 +08:00
{
path: '/sso',
component: () => import('@/views/Login/Login.vue'),
name: 'SSOLogin',
meta: {
hidden: true,
title: t('router.login'),
noTagsView: true
}
},
2023-06-06 01:08:38 +08:00
{
path: '/trade/order',
component: Layout,
name: 'order',
meta: {
hidden: true
},
children: [
{
path: 'detail',
name: 'TradeOrderDetail',
component: () => import('@/views/mall/trade/order/tradeOrderDetail.vue'),
meta: { title: '订单详情', hidden: true }
}
]
},
{
path: '/403',
component: () => import('@/views/Error/403.vue'),
name: 'NoAccess',
meta: {
hidden: true,
title: '403',
noTagsView: true
}
},
{
path: '/404',
component: () => import('@/views/Error/404.vue'),
name: 'NoFound',
meta: {
hidden: true,
title: '404',
noTagsView: true
}
},
{
path: '/500',
component: () => import('@/views/Error/500.vue'),
name: 'Error',
meta: {
hidden: true,
title: '500',
noTagsView: true
}
},
{
path: '/bpm',
component: Layout,
name: 'bpm',
meta: {
hidden: true
},
children: [
{
path: '/manager/form/edit',
component: () => import('@/views/bpm/form/editor/index.vue'),
name: 'BpmFormEditor',
meta: {
noCache: true,
hidden: true,
canTo: true,
title: '设计流程表单',
2023-03-23 22:50:48 +08:00
activeMenu: '/bpm/manager/form'
}
},
{
path: '/manager/model/edit',
component: () => import('@/views/bpm/model/editor/index.vue'),
name: 'BpmModelEditor',
meta: {
noCache: true,
hidden: true,
canTo: true,
title: '设计流程',
activeMenu: '/bpm/manager/model'
}
},
{
path: '/manager/definition',
component: () => import('@/views/bpm/definition/index.vue'),
name: 'BpmProcessDefinition',
meta: {
noCache: true,
hidden: true,
canTo: true,
title: '流程定义',
2023-03-26 19:32:19 +08:00
activeMenu: '/bpm/manager/model'
}
},
{
path: '/manager/task-assign-rule',
component: () => import('@/views/bpm/taskAssignRule/index.vue'),
name: 'BpmTaskAssignRuleList',
meta: {
noCache: true,
hidden: true,
canTo: true,
title: '任务分配规则'
}
},
{
path: '/process-instance/create',
2023-03-28 08:10:11 +08:00
component: () => import('@/views/bpm/processInstance/create/index.vue'),
name: 'BpmProcessInstanceCreate',
meta: {
noCache: true,
hidden: true,
canTo: true,
title: '发起流程',
activeMenu: 'bpm/processInstance/create'
}
},
{
path: '/process-instance/detail',
2023-03-28 00:10:42 +08:00
component: () => import('@/views/bpm/processInstance/detail/index.vue'),
name: 'BpmProcessInstanceDetail',
meta: {
noCache: true,
hidden: true,
canTo: true,
title: '流程详情',
activeMenu: 'bpm/processInstance/detail'
}
},
{
path: '/bpm/oa/leave/create',
component: () => import('@/views/bpm/oa/leave/create.vue'),
name: 'OALeaveCreate',
meta: {
noCache: true,
hidden: true,
canTo: true,
title: '发起 OA 请假',
activeMenu: '/bpm/oa/leave'
}
},
{
path: '/bpm/oa/leave/detail',
component: () => import('@/views/bpm/oa/leave/detail.vue'),
name: 'OALeaveDetail',
meta: {
noCache: true,
hidden: true,
canTo: true,
title: '查看 OA 请假',
activeMenu: '/bpm/oa/leave'
}
}
]
},
{
2023-08-23 01:41:25 +08:00
path: '/property', // TODO @puhui999这里的 path 有问题,应该是 /product/property
component: Layout,
name: 'Property',
meta: {
hidden: true
},
children: [
{
path: 'value/:propertyId(\\d+)',
component: () => import('@/views/mall/product/property/value/index.vue'),
name: 'ProductPropertyValue',
meta: { title: '商品属性值', icon: '', activeMenu: '/product/property' }
}
]
2023-04-24 11:42:44 +08:00
},
{
path: '/product',
component: Layout,
name: 'Product',
2023-04-24 11:42:44 +08:00
meta: {
hidden: true
},
children: [
{
2023-06-07 18:31:28 +08:00
path: 'spu/add',
2023-05-06 22:54:41 +08:00
component: () => import('@/views/mall/product/spu/addForm.vue'),
name: 'ProductSpuAdd',
2023-04-24 11:42:44 +08:00
meta: {
noCache: true,
hidden: true,
canTo: true,
icon: 'ep:edit',
title: '添加商品',
activeMenu: '/product/product-spu'
}
},
{
2023-06-03 21:21:43 +08:00
path: 'spu/edit/:spuId(\\d+)',
component: () => import('@/views/mall/product/spu/addForm.vue'),
2023-06-07 18:31:28 +08:00
name: 'ProductSpuEdit',
meta: {
noCache: true,
hidden: true,
canTo: true,
icon: 'ep:edit',
title: '编辑商品',
activeMenu: '/product/product-spu'
2023-04-24 11:42:44 +08:00
}
2023-05-31 14:42:45 +08:00
},
{
2023-06-03 21:21:43 +08:00
path: 'spu/detail/:spuId(\\d+)',
2023-05-31 14:42:45 +08:00
component: () => import('@/views/mall/product/spu/addForm.vue'),
2023-06-07 18:31:28 +08:00
name: 'ProductSpuDetail',
2023-05-31 14:42:45 +08:00
meta: {
noCache: true,
hidden: true,
canTo: true,
icon: 'ep:view',
title: '商品详情',
activeMenu: '/product/product-spu'
}
2023-04-24 11:42:44 +08:00
}
]
2023-08-06 23:25:07 +08:00
},
{
path: '/trade/order',
component: Layout,
name: 'Detail',
meta: {
hidden: true
},
children: [
{
path: 'detail/:orderId(\\d+)',
component: () => import('@/views/mall/trade/order/components/OrderDetailForm.vue'),
name: 'TradeOrderDetailForm',
meta: { title: '订单详情', icon: '', activeMenu: '/trade/trade/order' }
}
]
},
2023-08-23 01:41:25 +08:00
{
path: '/member',
component: Layout,
name: 'member',
meta: { hidden: true },
children: [
{
path: 'user/detail/:member_id',
2023-08-23 01:41:25 +08:00
name: 'MemberUserDetail',
meta: {
title: '会员详情',
noCache: true,
hidden: true
},
component: () => import('@/views/member/user/detail/index.vue')
}
]
},
2023-08-06 23:25:07 +08:00
{
path: '/pay',
component: Layout,
name: 'pay',
meta: { hidden: true },
children: [
{
path: 'cashier',
name: 'PayCashier',
meta: {
title: '收银台',
noCache: true,
hidden: true
},
component: () => import('@/views/pay/cashier/index.vue')
}
]
}
]
export default remainingRouter