多租户商城-商户端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

41 lines
795 B

2 years ago
  1. import request from '@/utils/request'
  2. //* ******************** 财务统计 *********************
  3. // 财务统计数据查询
  4. export function dashIndex(data) {
  5. return request({
  6. url: '/index/index',
  7. method: 'post',
  8. data
  9. })
  10. }
  11. // 用户访问数据导出
  12. export function userVisitExport(data) {
  13. return request({
  14. url: '/index/exportUserVisit',
  15. method: 'post',
  16. data,
  17. responseType: 'blob'
  18. })
  19. }
  20. // 订单转换导出
  21. export function orderConvertExport(data) {
  22. return request({
  23. url: '/index/exportOrderConvert',
  24. method: 'post',
  25. data,
  26. responseType: 'blob'
  27. })
  28. }
  29. // 热卖商品导出
  30. export function hotProductsExport(data) {
  31. return request({
  32. url: '/index/exportHotProducts',
  33. method: 'post',
  34. data,
  35. responseType: 'blob'
  36. })
  37. }