myVoiceLog.js 394 B

12345678910111213141516171819
  1. import request from '@/utils/request'
  2. // 查询我的通话记录列表
  3. export function listMyVoiceLog(query) {
  4. return request({
  5. url: '/qw/qwUserVoiceLog/myList',
  6. method: 'get',
  7. params: query
  8. })
  9. }
  10. // 导出我的用户通话记录
  11. export function exportMyVoiceLog(query) {
  12. return request({
  13. url: '/qw/qwUserVoiceLog/myExport',
  14. method: 'get',
  15. params: query
  16. })
  17. }