feat(manager): 实现团队管理页面的数据对接和功能优化
- 新增团队异常预警API接口和数据展示 - 完善销售漏斗组件,对接实际数据 - 优化业绩排名组件,支持多种数据源 - 更新成员详情组件,适配新数据结构 - 重构管理页面,整合多个API调用
This commit is contained in:
@@ -1,5 +1,10 @@
|
||||
import https from '../utils/https'
|
||||
|
||||
// 团队异常预警 /api/v1/manager/group_abnormal_response
|
||||
export const getGroupAbnormalResponse = (params) => {
|
||||
return https.post('/api/v1/manager/group_abnormal_response', params)
|
||||
}
|
||||
|
||||
// 团队总通话 /api/v1/manager/week_total_call
|
||||
export const getWeekTotalCall = (params) => {
|
||||
return https.post('/api/v1/manager/week_total_call', params)
|
||||
@@ -20,7 +25,10 @@ export const getWeekAddDealTotal = (params) => {
|
||||
export const getWeekAddFeeTotal = (params) => {
|
||||
return https.post('/api/v1/manager/week_add_fee_total', params)
|
||||
}
|
||||
// 定金转化率 /api/v1/manager/week_add_fee_total
|
||||
// 定金转化率 /api/v1/manager/get_pay_deposit_to_money_rate
|
||||
export const getPayDepositToMoneyRate = (params) => {
|
||||
return https.post('/api/v1/manager/get_pay_deposit_to_money_rate', params)
|
||||
}
|
||||
|
||||
// 团队漏斗 /api/v1/group_funnel/get_group_funnel
|
||||
export const getGroupFunnel = (params) => {
|
||||
|
||||
Reference in New Issue
Block a user