refactor(导航): 优化团队导航逻辑和指标描述

- 统一从高级经理到经理页面的导航路径和参数传递
- 添加团队双击事件处理并跳转到经理页面
- 简化指标描述文本,移除冗余解释
This commit is contained in:
2025-08-26 14:13:26 +08:00
parent 11e686d4d9
commit 6779db176c
5 changed files with 27 additions and 10 deletions

View File

@@ -275,10 +275,10 @@ const getRankingClass = (index) => {
// 处理部门双击事件,跳转到经理页面
const navigateToManager = (group) => {
router.push({
path: '/senior-manager',
path: '/manager',
query: {
user_name: group.id,
user_level: 3
user_name: group.leader,
user_level: 2
}
})
}