liveRewardRecord.js 310 B

12345678910111213141516171819
  1. import request from '@/utils/request'
  2. export function statistics(data) {
  3. return request({
  4. url: '/live/record/statistics',
  5. method: 'post',
  6. data: data
  7. })
  8. }
  9. export function exportLiveIntegral(data) {
  10. return request({
  11. url: '/live/record/export',
  12. method: 'post',
  13. data: data
  14. })
  15. }