fix: 修复Workspace路由配置,使用真正的Workspace页面

- 移除重定向到dashboard-finance
- 添加Workspace页面组件和meta配置

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
woshiqp465
2025-10-05 15:17:34 +08:00
parent 5a9a9c68b8
commit 2c0505b73d

View File

@@ -4,7 +4,11 @@ const routes: RouteRecordRaw[] = [
{
name: 'Workspace',
path: '/workspace',
redirect: '/dashboard-finance',
component: () => import('#/views/dashboard/workspace/index.vue'),
meta: {
icon: 'carbon:workspace',
title: 'Workspace',
},
},
];