WXL
2025-01-23 4cd2bfdb3778a94e339bb2ee6fad740bed20c582
src/api/smartor/ivrlibscript.js
@@ -29,8 +29,8 @@
// 修改AI话术库
export function updateIvrlibscript(data) {
  return request({
    url: '/smartor/ivrlibscript',
    method: 'put',
    url: '/smartor/ivrlibscript/edit',
    method: 'post',
    data: data
  })
}
@@ -38,7 +38,7 @@
// 删除AI话术库
export function delIvrlibscript(scriptid) {
  return request({
    url: '/smartor/ivrlibscript/' + scriptid,
    method: 'delete'
    url: '/smartor/ivrlibscript/remove/' + scriptid,
    method: 'get'
  })
}