statistics.js 481 B

12345678910111213141516171819202122232425262728293031
  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 smsLogs(query) {
  17. return request({
  18. url: '/company/statistics/smsLogs',
  19. method: 'get',
  20. params: query
  21. })
  22. }