WXL
2024-06-17 43988e7dae93378116a8c5f1fc76f5568d8fd4b2
src/api/smartor/ivrtaskcall.js
@@ -29,8 +29,8 @@
// 修改语音任务呼叫
export function updateIvrtaskcall(data) {
  return request({
    url: '/smartor/ivrtaskcall',
    method: 'put',
    url: '/smartor/ivrtaskcall/edit',
    method: 'post',
    data: data
  })
}
@@ -38,7 +38,7 @@
// 删除语音任务呼叫
export function delIvrtaskcall(callid) {
  return request({
    url: '/smartor/ivrtaskcall/' + callid,
    method: 'delete'
    url: '/smartor/ivrtaskcall/remove/' + callid,
    method: 'get'
  })
}