gaoluyang
2026-06-24 712aa51536236d43e87273e4ce45ac5691dffad8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
import { requestClient } from '#/api/request';
 
export namespace CrmStatisticsPerformanceApi {
  /** 员工业绩统计请求 */
  export interface PerformanceReqVO {
    times: string[];
    deptId: number;
    userId: number;
  }
 
  /** 员工业绩统计响应 */
  export interface PerformanceRespVO {
    time: string;
    currentMonthCount: number;
    lastMonthCount: number;
    lastYearCount: number;
  }
}
 
/** 员工获得合同金额统计 */
export function getContractPricePerformance(
  params: CrmStatisticsPerformanceApi.PerformanceReqVO,
) {
  return requestClient.get<CrmStatisticsPerformanceApi.PerformanceRespVO[]>(
    '/crm/statistics-performance/get-contract-price-performance',
    { params },
  );
}
 
/** 员工获得回款统计 */
export function getReceivablePricePerformance(
  params: CrmStatisticsPerformanceApi.PerformanceReqVO,
) {
  return requestClient.get<CrmStatisticsPerformanceApi.PerformanceRespVO[]>(
    '/crm/statistics-performance/get-receivable-price-performance',
    { params },
  );
}
 
/** 员工获得签约合同数量统计 */
export function getContractCountPerformance(
  params: CrmStatisticsPerformanceApi.PerformanceReqVO,
) {
  return requestClient.get<CrmStatisticsPerformanceApi.PerformanceRespVO[]>(
    '/crm/statistics-performance/get-contract-count-performance',
    { params },
  );
}