mirror of
https://gitee.com/hhyykk/ipms-sjy-ui.git
synced 2025-07-15 03:15:07 +08:00
feat: CRM/数据统计/员工客户分析 初稿
This commit is contained in:
@ -2,6 +2,7 @@ import request from '@/config/axios'
|
||||
|
||||
export interface StatisticsCustomerRespVO {
|
||||
count: number
|
||||
cycle: number
|
||||
category: string
|
||||
}
|
||||
|
||||
@ -21,4 +22,32 @@ export const StatisticsCustomerApi = {
|
||||
params
|
||||
})
|
||||
},
|
||||
// 获取客户跟进次数
|
||||
getRecordCount: (params: any) => {
|
||||
return request.get({
|
||||
url: '/crm/statistics-customer/get-record-count',
|
||||
params
|
||||
})
|
||||
},
|
||||
// 获取客户跟进次数
|
||||
getDistinctRecordCount: (params: any) => {
|
||||
return request.get({
|
||||
url: '/crm/statistics-customer/get-distinct-record-count',
|
||||
params
|
||||
})
|
||||
},
|
||||
// 获取客户跟进方式统计数
|
||||
getRecordTypeCount: (params: any) => {
|
||||
return request.get({
|
||||
url: '/crm/statistics-customer/get-record-type-count',
|
||||
params
|
||||
})
|
||||
},
|
||||
// 获取客户成交周期
|
||||
getCustomerCycle: (params: any) => {
|
||||
return request.get({
|
||||
url: '/crm/statistics-customer/get-customer-cycle',
|
||||
params
|
||||
})
|
||||
},
|
||||
}
|
||||
|
Reference in New Issue
Block a user