Blame view

store-pc/src/api/storeDashboard.js 1.39 KB
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
    })
  }
a8965d32   “wangming”   ```
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
  
  /** 获取沉睡会员列表(门店PC) */
  export function getSleepingMembers(data) {
    return request({
      url: '/api/Extend/LqStoreDashboard/GetSleepingMembers',
      method: 'post',
      data
    })
  }
  
  /** 获取公司日历事件列表(不分页,用于日历展示) */
  export function getCalendarEventList(data) {
    return request({
      url: '/api/Extend/LqCompanyCalendar/GetCalendarEventList',
      method: 'post',
      data
    })
  }
  
  /** 获取事件类型列表 */
  export function getEventTypeList(data) {
    return request({
      url: '/api/Extend/LqCompanyCalendar/GetEventTypeList',
      method: 'post',
      data
    })
  }