WXL
2025-08-07 209b2f7b9a0b2abc4043f22bed9b06ab2650ba59
src/api/smartor/ivrexecuteconfig.js
@@ -29,8 +29,8 @@
// 修改AI外呼执行配置
export function updateIvrexecuteconfig(data) {
  return request({
    url: '/smartor/ivrexecuteconfig',
    method: 'put',
    url: '/smartor/ivrexecuteconfig/edit',
    method: 'post',
    data: data
  })
}
@@ -38,7 +38,7 @@
// 删除AI外呼执行配置
export function delIvrexecuteconfig(scenecfgid) {
  return request({
    url: '/smartor/ivrexecuteconfig/' + scenecfgid,
    method: 'delete'
    url: '/smartor/ivrexecuteconfig/remove/' + scenecfgid,
    method: 'get'
  })
}