WXL
2025-03-07 ff99a9bcfd54dd5794832a2daf1a119ed5e4627d
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'
  })
}