Files
SPDM/src/tenants/lyric/router/menuData.ts
2026-03-17 10:57:22 +08:00

374 lines
8.4 KiB
TypeScript

import * as Icons from '@element-plus/icons-vue';
export default [
{
title: '首页',
path: '/',
name: 'Index',
icon: Icons['House'],
},
{
title: '新增待办',
path: '/createDemand',
name: 'CreateDemand',
icon: Icons['Plus'],
},
{
title: '审核预览',
path: '/approvalPreview',
name: 'IndexApprovalPreview',
icon: Icons['DataBoard'],
hideInMenu: true,
},
{
title: '项目管理',
path: '/project',
name: 'Project',
icon: Icons['Monitor'],
children: [
// {
// title: '项目总览',
// path: '/project/projectOverview',
// name: 'projectOverview',
// },
{
title: '所有项目',
path: '/project/allProject',
name: 'AllProject',
children: [
{
title: '项目详情',
path: '/project/allProject/detail',
name: 'AllProjectDetail',
hideInMenu: true,
},
],
},
{
title: '负责项目',
path: '/project/chargeProject',
name: 'ChargeProject',
children: [
{
title: '项目详情',
path: '/project/chargeProject/detail',
name: 'ChargeProjectDetail',
hideInMenu: true,
},
],
},
{
title: '关注项目',
path: '/project/followProject',
name: 'FllowProject',
children: [
{
title: '项目详情',
path: '/project/followProject/detail',
name: 'FllowProjectDetail',
hideInMenu: true,
},
],
},
// {
// title: '项目详情',
// path: '/task/projectDetail',
// name: 'TaskProjectDetail',
// },
// {
// title: '数据统计',
// path: '/project/statistics',
// name: 'ProjectDataStatistics',
// },
{
title: '仿真看板',
path: '/project/dashboard',
name: 'SimulationClosedLoopDashboard',
},
],
},
{
title: '任务管理',
path: '/task',
name: 'Task',
icon: Icons['Monitor'],
children: [
// {
// title: '未分发的',
// path: '/task/confirm',
// name: 'TaskConfirm',
// },
{
title: '我提出的',
path: '/task/sponsor',
name: 'TaskSponsor',
},
{
title: '我分发的',
path: '/task/send',
name: 'TaskSend',
},
{
title: '我执行的',
path: '/task/execute',
name: 'TaskExecute',
},
{
title: '我关注的',
path: '/task/attention',
name: 'TaskAttention',
},
{
title: '所有任务',
path: '/task/all',
name: 'TaskAll',
},
{
title: '仿真执行',
path: '/task/execution',
name: 'TaskExecution',
},
{
title: '报工列表',
path: '/task/reportWork',
name: 'TaskReportWork',
},
{
title: '工作负载',
path: '/task/workLoad',
name: 'TaskWorkLoad',
},
{
title: '人力负载',
path: '/task/workerLoad',
name: 'TaskWorkerLoad',
},
],
},
{
title: '数据管理',
path: '/data',
name: 'Data',
icon: Icons['PieChart'],
children: [
{
title: '数据总览',
path: '/data/overview',
name: 'DataOverview',
},
{
title: '数据查询',
path: '/data/analysis',
name: 'DataAnalysis',
},
{
title: '模型管理',
path: '/data/grid',
name: 'DataGrid',
},
{
title: '数据权限',
path: '/data/permission',
name: 'DataPermission',
},
{
title: '数据训练',
path: '/data/train',
name: 'DataTrain',
},
{
title: '数据预测',
path: '/data/forecast',
name: 'DataForecast',
},
],
},
{
title: '流程管理',
path: '/simulationFlow',
name: 'simulationFlow',
icon: Icons['Cpu'],
children: [
{
title: '仿真流程',
path: '/simulation/process',
name: 'SimulationProcess',
},
{
title: '应用中心',
path: '/simulation/application',
name: 'simulationApplication',
},
// {
// title: '我的仿真流程库',
// path: '/simulation/myProcess',
// name: 'SimulationMyProcess',
// },
// {
// title: '仿真流程创建',
// path: '/simulation/creation',
// name: 'SimulationCreation',
// },
// {
// title: '仿真工具',
// path: '/simulation/tool',
// name: 'SimulationTool',
// },
// {
// title: '应用中心',
// path: '/simulation/appCenter',
// name: 'SimulationAppCenter',
// },
],
},
{
title: '能力中心',
path: '/competenceCenter',
name: 'CompetenceCenter',
icon: Icons['Cpu'],
children: [
{
title: '仿真地图库',
path: '/competenceCenter/condition',
name: 'CompetenceCenterCondition',
},
{
title: '标准场景库',
path: '/competenceCenter/standardScene',
name: 'CompetenceCenterStandardScene',
},
{
title: '仿真指标库',
path: '/competenceCenter/indicator',
name: 'CompetenceCenterIndicator',
},
{
title: '仿真标准库',
path: '/competenceCenter/knowledge',
name: 'CompetenceCenterKnowledge',
},
{
title: '仿真参数库',
path: '/competenceCenter/parameter',
name: 'CompetenceCenterParameter',
},
{
title: '报告模板库',
path: '/competenceCenter/report',
name: 'CompetenceCenterReport',
},
{
title: '仿真动画库',
path: '/competenceCenter/animation',
name: 'CompetenceCenterAnimation',
},
{
title: '机器人库',
path: '/competenceCenter/robot',
name: 'CompetenceCenterRobot',
},
{
title: '工业设计库',
path: '/competenceCenter/industrialDesign',
name: 'CompetenceCenterIndustrialDesign',
},
{
title: '公差分析库',
path: '/competenceCenter/toleranceAnalysis',
name: 'CompetenceCenterToleranceAnalysis',
},
// {
// title: '仿真流程库',
// path: '/simulation/process',
// name: 'SimulationProcess',
// },
// {
// title: '仿真流程创建',
// path: '/simulation/creation',
// name: 'SimulationCreation',
// },
// {
// title: '仿真工具',
// path: '/simulation/tool',
// name: 'SimulationTool',
// },
],
},
{
title: '系统管理',
path: '/system',
name: 'system',
icon: Icons['Setting'],
children: [
{
title: '存储管理',
path: '/system/storage',
name: 'DataStorage',
},
{
title: '审批流程',
path: '/system/approval',
name: 'systemApproval',
},
{
title: '数据字典',
path: '/system/dictionary',
name: 'systemDictionary',
},
{
title: '菜单管理',
path: '/system/menu',
name: 'systemMenu',
},
{
title: '租户管理',
path: '/system/tenant',
name: 'systemTenant',
},
{
title: '业务配置',
path: '/system/configuration',
name: 'systemConfiguration',
},
{
title: '角色管理',
path: '/system/role',
name: 'systemRole',
},
{
title: '用户管理',
path: '/system/user',
name: 'systemUser',
},
{
title: '用户组管理',
path: '/system/group',
name: 'systemGroup',
},
{
title: '操作权限',
path: '/system/permission',
name: 'systemPermission',
},
{
title: '日志管理',
path: '/system/logs',
name: 'systemLogs',
},
{
title: '动态表格',
path: '/system/dynamicTable',
name: 'systemDynamicTable',
},
{
title: '回收站',
path: '/system/recycleBin',
name: 'systemRecycleBin',
},
],
},
];