feat(团队管理): 实现团队概览和统计指标数据绑定

- 增加团队概览组件数据绑定逻辑
- 实现统计指标组件数据获取与展示
- 更新API接口调用和数据处理逻辑
- 调整超时时间为30秒以适应网络环境
- 添加调试日志用于问题排查
This commit is contained in:
2025-08-12 21:33:02 +08:00
parent d8bfcaab90
commit c48f39fb5e
7 changed files with 277 additions and 42 deletions

View File

@@ -6,7 +6,7 @@ import { useUserStore } from '@/stores/user'
// 创建axios实例
const service = axios.create({
baseURL: 'http://192.168.15.53:8890' || '', // API基础路径支持完整URL
timeout: 15000, // 请求超时时间
timeout: 30000, // 请求超时时间
headers: {
'Content-Type': 'application/json;charset=UTF-8'
}