fix: 更新API基础路径并优化销售进度展示

修复API基础路径配置错误,将IP地址从192.168.15.53更新为192.168.15.54
重构销售进度组件,移除提示信息改为展示实时团队数据
优化KPI指标显示文本和数据处理逻辑
This commit is contained in:
2025-08-18 11:01:09 +08:00
parent 147238244e
commit 525b238c62
4 changed files with 184 additions and 52 deletions

View File

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