statistics.js 658 B

123456789101112131415161718192021222324252627282930313233
  1. import request from '@/utils/request'
  2. export function storeOrder(query) {
  3. return request({
  4. url: '/store/store/statistics/storeOrder',
  5. method: 'get',
  6. params: query
  7. })
  8. }
  9. export function exportStoreOrder(query) {
  10. return request({
  11. url: '/store/store/statistics/exportStoreOrder',
  12. method: 'get',
  13. params: query
  14. })
  15. }
  16. export function storePayment(query) {
  17. return request({
  18. url: '/store/store/statistics/storePayment',
  19. method: 'get',
  20. params: query
  21. })
  22. }
  23. export function exportStorePayment(query) {
  24. return request({
  25. url: '/store/store/statistics/exportStorePayment',
  26. method: 'get',
  27. params: query
  28. })
  29. }