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