eight
2024-08-13 b10adc8a3fd000901836e2219fa83462694e9866
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
import request from '@/config/axios'
 
export interface StatisticsPerformanceRespVO {
  time: string
  currentMonthCount: number
  lastMonthCount: number
  lastYearCount: number
}
 
// 排行 API
export const StatisticsPerformanceApi = {
  // 员工获得合同金额统计
  getContractPricePerformance: (params: any) => {
    return request.get({
      url: '/crm/statistics-performance/get-contract-price-performance',
      params
    })
  },
  // 员工获得回款统计
  getReceivablePricePerformance: (params: any) => {
    return request.get({
      url: '/crm/statistics-performance/get-receivable-price-performance',
      params
    })
  },
  //员工获得签约合同数量统计
  getContractCountPerformance: (params: any) => {
    return request.get({
      url: '/crm/statistics-performance/get-contract-count-performance',
      params
    })
  }
}