12345678910111213141516171819202122232425262728293031 |
- import request from '@/utils/request'
-
- export function voiceLogs(query) {
- return request({
- url: '/company/statistics/voiceLogs',
- method: 'get',
- params: query
- })
- }
- export function exportVoiceLogs(query) {
- return request({
- url: '/company/statistics/exportVoiceLogs',
- method: 'get',
- params: query
- })
- }
- export function smsLogs(query) {
- return request({
- url: '/company/statistics/smsLogs',
- method: 'get',
- params: query
- })
- }
-
-
-
-
|