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.
40 lines
848 B
40 lines
848 B
import type { MenuModule } from '/@/router/types'
|
|
import { t } from '/@/hooks/web/useI18n'
|
|
const clueMenu: MenuModule = {
|
|
orderNo: 90003,
|
|
menu: {
|
|
path: '/clue',
|
|
name: t('routes.clue.clue'),
|
|
children: [
|
|
{
|
|
path: 'clueIndex',
|
|
name: t('routes.clue.clueIndex'),
|
|
},
|
|
{
|
|
path: 'cluePool',
|
|
name: t('routes.clue.cluePool'),
|
|
},
|
|
{
|
|
path: 'clueFlow',
|
|
name: t('routes.clue.clueFlow'),
|
|
},
|
|
{
|
|
path: 'clueList',
|
|
name: t('routes.clue.clueList'),
|
|
},
|
|
{
|
|
path: 'poolist',
|
|
name: t('routes.clue.poolist'),
|
|
},
|
|
{
|
|
path: 'followlist',
|
|
name: t('routes.clue.followlist'),
|
|
},
|
|
{
|
|
path: 'customer',
|
|
name: t('routes.clue.customer'),
|
|
},
|
|
],
|
|
},
|
|
}
|
|
export default clueMenu
|