diff --git a/frontend/src/components/WelcomeGuide.vue b/frontend/src/components/WelcomeGuide.vue
index 5e48a2f2..38a21897 100644
--- a/frontend/src/components/WelcomeGuide.vue
+++ b/frontend/src/components/WelcomeGuide.vue
@@ -44,7 +44,7 @@
③ 编制全面预算
按对齐后的目标分配资源,编制收入/成本/费用/投资预算。从此预算不再是财务部闭门造,而是从战略自上而下对齐出来的。
-
💰 预算管理 → 驾驶舱监控执行 → 差异分析 → 改善行动
+
💰 预算管理 → 经营看板监控执行 → 差异分析 → 改善行动
diff --git a/frontend/src/permission.ts b/frontend/src/permission.ts
index ae54b140..5ad8e974 100644
--- a/frontend/src/permission.ts
+++ b/frontend/src/permission.ts
@@ -49,7 +49,7 @@ export const MENU_ITEMS: MenuItem[] = [
// ══════════════════════════════════════════════════════════════
// GROUP 3: 监控与评价(Check)
// ══════════════════════════════════════════════════════════════
- { path: '/dashboard', label: '驾驶舱', icon: 'DataBoard', roles: ['ceo', 'finance', 'business', 'it'], group: '监控与评价' },
+ { path: '/dashboard', label: '经营看板', icon: 'DataBoard', roles: ['ceo', 'finance', 'business', 'it'], group: '监控与评价' },
{ path: '/reports', label: '管理报表', icon: 'DataAnalysis', roles: ['ceo', 'finance', 'business'], group: '监控与评价' },
{ path: '/dupont-analysis', label: '杜邦分析', icon: 'TrendCharts', roles: ['ceo', 'finance', 'it'], group: '监控与评价' },
{ path: '/customer', label: '客户维度', icon: 'User', roles: ['ceo', 'finance', 'business', 'it'], group: '监控与评价' },
diff --git a/frontend/src/router/index.ts b/frontend/src/router/index.ts
index d53daf8f..4dad71b1 100644
--- a/frontend/src/router/index.ts
+++ b/frontend/src/router/index.ts
@@ -5,7 +5,7 @@ const routes = [
{ path: '/login', name: 'Login', component: () => import('@/views/Login.vue'), meta: { noAuth: true } },
{ path: '/', component: () => import('@/layouts/MainLayout.vue'), redirect: '/dashboard',
children: [
- { path: 'dashboard', name: 'Dashboard', component: () => import('@/views/Dashboard.vue'), meta: { title: '驾驶舱', roles: ['ceo', 'finance', 'business', 'it'] } },
+ { path: 'dashboard', name: 'Dashboard', component: () => import('@/views/Dashboard.vue'), meta: { title: '经营看板', roles: ['ceo', 'finance', 'business', 'it'] } },
{ path: 'kpis', name: 'KPIs', component: () => import('@/views/KPIList.vue'), meta: { title: 'KPI字典', roles: ['ceo', 'finance', 'business', 'it'] } },
{ path: 'kpis/:id', name: 'KPIDetail', component: () => import('@/views/KPIDetail.vue'), meta: { title: 'KPI详情', roles: ['ceo', 'finance', 'business', 'it'] } },
{ path: 'maps', name: 'Maps', component: () => import('@/views/MapList.vue'), meta: { title: '战略地图', roles: ['ceo', 'finance'] } },
@@ -70,7 +70,7 @@ router.beforeEach((to, _from, next) => {
const routeRoles = to.meta.roles as string[] | undefined
if (routeRoles && !routeRoles.includes(role)) {
- // 权限不足,跳转到驾驶舱或401页
+ // 权限不足,跳转到经营看板或401页
next('/dashboard')
return
}
diff --git a/frontend/src/views/ActionPlanLibrary.vue b/frontend/src/views/ActionPlanLibrary.vue
index ba0e0ac5..5ee84b84 100644
--- a/frontend/src/views/ActionPlanLibrary.vue
+++ b/frontend/src/views/ActionPlanLibrary.vue
@@ -127,6 +127,12 @@