mirror of
https://gitee.com/myxzgzs/boyue-ui-admin-vue3
synced 2025-08-09 17:02:43 +08:00
25 lines
564 B
TypeScript
25 lines
564 B
TypeScript
![]() |
import request from '@/config/axios'
|
||
|
|
||
|
export interface StatisticsCustomerRespVO {
|
||
|
count: number
|
||
|
category: string
|
||
|
}
|
||
|
|
||
|
// 客户总量分析 API
|
||
|
export const StatisticsCustomerApi = {
|
||
|
// 客户总量(新建)
|
||
|
getTotalCustomerCount: (params: any) => {
|
||
|
return request.get({
|
||
|
url: '/crm/statistics-customer/get-total-customer-count',
|
||
|
params
|
||
|
})
|
||
|
},
|
||
|
// 客户总量(成交)
|
||
|
getDealTotalCustomerCount: (params: any) => {
|
||
|
return request.get({
|
||
|
url: '/crm/statistics-customer/get-deal-total-customer-count',
|
||
|
params
|
||
|
})
|
||
|
},
|
||
|
}
|