storeDashboard.js
791 Bytes
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
})
}