/* * @Author: 刘妍 * @Date: 2024-01-13 13:04:15 * @LastEditors: Do not edit * @LastEditTime: 2024-02-28 13:35:23 * @FilePath: \费县天空地大屏正式代码e:\新架构\vue-vben-admin\src\router\routes\modules\dashboard.ts * @Description: */ import type { AppRouteModule } from '@/router/types'; import { LAYOUT } from '@/router/constant'; import { t } from '@/hooks/web/useI18n'; const dashboard: AppRouteModule = { path: '/dashboard', name: 'Dashboard', component: LAYOUT, redirect: '/dashboard/analysis', meta: { orderNo: 10, icon: 'ion:grid-outline', title: t('routes.dashboard.dashboard'), }, children: [ { path: '/dashboard/analysis', name: 'Analysis', component: () => import('@/views/dashboard/analysis/index.vue'), meta: { // affix: true, title: t('routes.dashboard.analysis'), }, }, { path: '/dashboard/lf', name: 'AnalysisLF', component: () => import('@/views/demo/workflow/scheme/logicflow/LF.vue'), meta: { // affix: true, title: '流程图', }, }, { path: 'scheme_preview/:id', name: 'AccountDetail', meta: { hideMenu: true, title: t('routes.demo.workflow.scheme_preview'), ignoreKeepAlive: true, showMenu: false, currentActiveMenu: '/workflow/scheme', }, component: () => import('@/views/demo/workflow/scheme/preview.vue'), }, ], }; export default dashboard;