WXL
昨天 6d7cd13eecd3a6f176d310986b4750b0c407e3a1
src/api/smartor/ivrtaskcallrecord.js
@@ -29,8 +29,8 @@
// 修改语音任务呼叫记录
export function updateIvrtaskcallrecord(data) {
  return request({
    url: '/smartor/ivrtaskcallrecord',
    method: 'put',
    url: '/smartor/ivrtaskcallrecord/edit',
    method: 'post',
    data: data
  })
}
@@ -38,7 +38,7 @@
// 删除语音任务呼叫记录
export function delIvrtaskcallrecord(uuid) {
  return request({
    url: '/smartor/ivrtaskcallrecord/' + uuid,
    method: 'delete'
    url: '/smartor/ivrtaskcallrecord/remove/' + uuid,
    method: 'get'
  })
}