WXL
2024-10-30 7fca01ae5a5a62d609b08aef850b7c2cfa610bb9
src/api/smartor/ivrscript.js
@@ -29,8 +29,8 @@
// 修改AI外呼话术
export function updateIvrscript(data) {
  return request({
    url: '/smartor/ivrscript',
    method: 'put',
    url: '/smartor/ivrscript/edit',
    method: 'post',
    data: data
  })
}
@@ -38,7 +38,7 @@
// 删除AI外呼话术
export function delIvrscript(scenescrid) {
  return request({
    url: '/smartor/ivrscript/' + scenescrid,
    method: 'delete'
    url: '/smartor/ivrscript/remove/' + scenescrid,
    method: 'get'
  })
}