report.js
1.44 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
import request from '@/utils/request'
// 获取门店业绩趋势数据
export function getStorePerformanceTrend(data) {
return request({
url: '/api/Extend/LqReport/get-store-performance-trend',
method: 'post',
data
})
}
// 获取门店业绩排行榜
export function getStorePerformanceRanking(data) {
return request({
url: '/api/Extend/LqReport/get-store-performance-ranking',
method: 'post',
data
})
}
// 获取健康师业绩排行榜
export function getHealthCoachPerformanceRanking(data) {
return request({
url: '/api/Extend/LqReport/get-health-coach-performance-ranking',
method: 'post',
data
})
}
// 获取健康师业绩趋势
export function getHealthCoachPerformanceTrend(data) {
return request({
url: '/api/Extend/LqReport/get-health-coach-performance-trend',
method: 'post',
data
})
}
// 获取金三角业绩排行榜
export function getGoldTrianglePerformanceRanking(data) {
return request({
url: '/api/Extend/LqReport/get-gold-triangle-performance-ranking',
method: 'post',
data
})
}
// 获取金三角业绩趋势
export function getGoldTrianglePerformanceTrend(data) {
return request({
url: '/api/Extend/LqReport/get-gold-triangle-performance-trend',
method: 'post',
data
})
}
// 获取综合仪表盘数据
export function getDashboardData(data) {
return request({
url: '/api/Extend/LqReport/get-dashboard-data',
method: 'post',
data
})
}