feat(topOne): 重构核心业绩指标组件并添加用户下拉菜单

- 重构KpiMetrics组件以使用API获取的真实数据
- 添加UserDropdown组件到topOne页面
- 简化http工具中的get方法
- 更新KPI卡片显示逻辑和标签文本
This commit is contained in:
2025-08-15 22:14:04 +08:00
parent 74aa6c3235
commit 147238244e
3 changed files with 99 additions and 56 deletions

View File

@@ -147,12 +147,10 @@ service.interceptors.response.use(
// 封装常用的请求方法
const http = {
// GET请求
get(url, params = {}, config = {}) {
get(url) {
return service({
method: 'get',
url,
params,
...config
url
})
},