WXL (wul)
2025-08-27 9c2d5e38508be3657b96428481f1c96127130a0b
src/api/smartor/ivrtaskcalldetail.js
@@ -29,8 +29,8 @@
// 修改语音任务呼叫明细
export function updateIvrtaskcalldetail(data) {
  return request({
    url: '/smartor/ivrtaskcalldetail',
    method: 'put',
    url: '/smartor/ivrtaskcalldetail/edit',
    method: 'post',
    data: data
  })
}
@@ -38,7 +38,7 @@
// 删除语音任务呼叫明细
export function delIvrtaskcalldetail(calldetailid) {
  return request({
    url: '/smartor/ivrtaskcalldetail/' + calldetailid,
    method: 'delete'
    url: '/smartor/ivrtaskcalldetail/remove/' + calldetailid,
    method: 'get'
  })
}