statistics.js 967 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. import request from '@/utils/request'
  2. export function voiceLogs(query) {
  3. return request({
  4. url: '/company/statistics/voiceLogs',
  5. method: 'get',
  6. params: query
  7. })
  8. }
  9. export function exportVoiceLogs(query) {
  10. return request({
  11. url: '/company/statistics/exportVoiceLogs',
  12. method: 'get',
  13. params: query
  14. })
  15. }
  16. export function myVoiceLogs(query) {
  17. return request({
  18. url: '/company/statistics/myVoiceLogs',
  19. method: 'get',
  20. params: query
  21. })
  22. }
  23. export function exportMyVoiceLogs(query) {
  24. return request({
  25. url: '/company/statistics/exportMyVoiceLogs',
  26. method: 'get',
  27. params: query
  28. })
  29. }
  30. export function smsLogs(query) {
  31. return request({
  32. url: '/company/statistics/smsLogs',
  33. method: 'get',
  34. params: query
  35. })
  36. }
  37. export function exportSmsLogs(query) {
  38. return request({
  39. url: '/company/statistics/exportSmsLogs',
  40. method: 'get',
  41. params: query
  42. })
  43. }