12345678910111213141516171819202122232425262728293031 |
- import request from '@/utils/request'
-
- export function callMobile(query) {
- return request({
- url: '/company/voiceApi/callMobile' ,
- method: 'get',
- params: query
- })
- }
-
- export function callOffMobile(voiceId) {
- return request({
- url: '/company/voiceApi/callOffMobile?voiceId='+voiceId ,
- method: 'get'
- })
- }
- export function getSipAccount() {
- return request({
- url: '/company/voiceApi/getSipAccount' ,
- method: 'get'
- })
- }
-
|