statistics.js 478 B

12345678910111213141516171819202122
  1. import Request from '../common/request.js';
  2. let request = new Request().http
  3. // 获取统计数据
  4. export function getStatisticsData(data) {
  5. return request('/store/app/statistics/getData', data, 'GET');
  6. }
  7. // 获取统计图表数据
  8. export function getStatisticsChart(data) {
  9. return request('/store/app/statistics/getChart', data, 'GET');
  10. }
  11. // 导出统计数据
  12. export function exportStatistics(data) {
  13. return request('/store/app/statistics/export', data, 'GET');
  14. }