WXL
2024-06-05 711c995d7307b4a2d56e55095e3f81ffbdfc4d39
src/api/smartor/ivrlibscriptmodel.js
@@ -29,8 +29,8 @@
// 修改AI话术模块
export function updateIvrlibscriptmodel(data) {
  return request({
    url: '/smartor/ivrlibscriptmodel',
    method: 'put',
    url: '/smartor/ivrlibscriptmodel/edit',
    method: 'post',
    data: data
  })
}
@@ -38,7 +38,7 @@
// 删除AI话术模块
export function delIvrlibscriptmodel(modelid) {
  return request({
    url: '/smartor/ivrlibscriptmodel/' + modelid,
    method: 'delete'
    url: '/smartor/ivrlibscriptmodel/remove/' + modelid,
    method: 'get'
  })
}