WXL
2025-03-24 073edc90c84ee4e8b3efe18db4ecfdbf039fdcb6
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'
  })
}