add:UI测试-测试报告详情

This commit is contained in:
温若烈酒慕茶凉丷
2025-04-24 17:10:12 +08:00
parent 78cbb5aaaf
commit 17d8fa4083
5 changed files with 449 additions and 16 deletions

View File

@@ -152,7 +152,7 @@ export const constantRoutes = [
{
path: '',
component: () => import('@/views/test/performance/performanceAdd'),
name: 'performanceAdd',
name: 'PerformanceAdd',
noCache: true,
meta: { title: '新增测试', activeMenu: '/performance' }
}
@@ -166,7 +166,7 @@ export const constantRoutes = [
{
path: '',
component: () => import('@/views/test/performance/performanceEdit'),
name: 'performanceAdd',
name: 'PerformanceEdit',
noCache: true,
meta: { title: '修改测试', activeMenu: '/performance' }
}
@@ -180,9 +180,23 @@ export const constantRoutes = [
{
path: '',
component: () => import('@/views/test/performance/reportDetail'),
name: 'performanceAdd',
name: 'ReportDetail',
noCache: true,
meta: { title: '修改测试', activeMenu: '/performance' }
meta: { title: '报告详情', activeMenu: '/performance' }
}
]
},
{
path: '/ui-test/report/detail',
component: Layout,
hidden: true,
children: [
{
path: '',
component: () => import('@/views/test/uiTest/testReportDetail'),
name: 'TestReportDetail',
noCache: true,
meta: { title: '测试报告', activeMenu: '/ui-test' }
}
]
},