WXL
2024-04-25 ddd540811008852a59935561a456ec3b0cb0033b
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'
  })
}