49 lines
1.1 KiB
TypeScript
49 lines
1.1 KiB
TypeScript
/*
|
|
* @Author: 刘妍
|
|
* @Date: 2024-01-13 13:04:15
|
|
* @LastEditors: Do not edit
|
|
* @LastEditTime: 2024-03-01 14:24:28
|
|
* @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: '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;
|