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:
24
src/api/crm/statistics/customer.ts
Normal file
24
src/api/crm/statistics/customer.ts
Normal file
@ -0,0 +1,24 @@
|
||||
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
|
||||
})
|
||||
},
|
||||
}
|
Reference in New Issue
Block a user