WXL
2025-03-04 b0dd2386496a80e48e6f2d273d26ad8ed8731b3f
src/api/smartor/ivrscriptmodel.js
@@ -29,8 +29,8 @@
// 修改AI外呼话术模块
export function updateIvrscriptmodel(data) {
  return request({
    url: '/smartor/ivrscriptmodel',
    method: 'put',
    url: '/smartor/ivrscriptmodel/edit',
    method: 'post',
    data: data
  })
}
@@ -38,7 +38,7 @@
// 删除AI外呼话术模块
export function delIvrscriptmodel(scenemodid) {
  return request({
    url: '/smartor/ivrscriptmodel/' + scenemodid,
    method: 'delete'
    url: '/smartor/ivrscriptmodel/remove/' + scenemodid,
    method: 'get'
  })
}