bug修复

This commit is contained in:
2025-12-22 23:40:47 +08:00
parent 7d53a059d7
commit 1fefd98d74
19 changed files with 1339 additions and 534 deletions
+14
View File
@@ -63,6 +63,20 @@ const routes: RouteRecordRaw[] = [
}
]
},
{
path: '/tools',
component: Layout,
redirect: '/tools/api-tester',
meta: { title: '开发工具', icon: 'Tools' },
children: [
{
path: 'api-tester',
name: 'ApiTester',
component: () => import('@/views/tools/ApiTester.vue'),
meta: { title: 'API接口调用' }
}
]
},
{
path: '/:pathMatch(.*)*',
name: 'NotFound',