You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

53 lines
1.2 KiB

import type { AppRouteModule } from '/@/router/types'
import { LAYOUT } from '/@/router/constant'
import { t } from '/@/hooks/web/useI18n'
const inviteRoute: AppRouteModule = {
path: '/invite',
name: 'Invite',
component: LAYOUT,
redirect: '/invite/index',
meta: {
orderNo: 90014,
hideChildrenInMenu: false,
icon: 'ant-design:whats-app-outlined',
title: t('routes.invite.invite'),
},
children: [
{
path: 'index',
name: 'Index',
component: () => import('/src/views/invite/index/index.vue'),
meta: {
title: t('routes.invite.index'),
},
},
{
path: 'list',
name: 'List',
component: () => import('/src/views/invite/list/index.vue'),
meta: {
title: t('routes.invite.list'),
},
},
{
path: 'myList',
name: 'MyList',
component: () => import('/src/views/invite/myList/index.vue'),
meta: {
title: t('routes.invite.seasList'),
},
},
{
path: 'seasList',
name: 'SeasList',
component: () => import('/src/views/invite/seasList/index.vue'),
meta: {
title: t('routes.invite.seasList'),
},
},
],
}
export default inviteRoute