WXL
2025-01-09 07e07d6663c15f2ed6ba77ab3afe2aea7d0bcf1a
src/api/smartor/ivrrecall.js
@@ -29,8 +29,8 @@
// 修改AI外呼重拨配置
export function updateIvrrecall(data) {
  return request({
    url: '/smartor/ivrrecall',
    method: 'put',
    url: '/smartor/ivrrecall/edit',
    method: 'post',
    data: data
  })
}
@@ -38,7 +38,7 @@
// 删除AI外呼重拨配置
export function delIvrrecall(recallid) {
  return request({
    url: '/smartor/ivrrecall/' + recallid,
    method: 'delete'
    url: '/smartor/ivrrecall/remove/' + recallid,
    method: 'get'
  })
}