Blame view

store-pc/src/api/storeDashboard.js 791 Bytes
b5df6609   “wangming”   ```
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
  import request from '@/utils/request'
  
  /** 门店驾驶舱月度统计(人头/人次/项目/消耗/退卡/目标/完成率) */
  export function getStoreDashboardStatistics(data) {
    return request({
      url: '/api/Extend/LqStoreDashboard/GetStatistics',
      method: 'post',
      data
    })
  }
  
  /** 门店按日运营统计(今日人头/人次/项目/消耗) */
  export function getStoreDailyStatistics(data) {
    return request({
      url: '/api/Extend/LqDailyReport/get-store-daily-statistics',
      method: 'post',
      data
    })
  }
  
  /** 门店业绩完成情况(今日退卡金额等,按日期范围) */
  export function getStorePerformanceCompletion(data) {
    return request({
      url: '/api/Extend/LqDailyReport/get-store-performance-completion',
      method: 'post',
      data
    })
  }