WXL
2025-05-23 08c27c1f13c1e7560a39f2fdc38b300d2c0e2af4
src/api/smartor/ivrlibscriptcategory.js
@@ -29,8 +29,8 @@
// 修改AI话术库分类
export function updateIvrlibscriptcategory(data) {
  return request({
    url: '/smartor/ivrlibscriptcategory',
    method: 'put',
    url: '/smartor/ivrlibscriptcategory/edit',
    method: 'post',
    data: data
  })
}
@@ -38,7 +38,7 @@
// 删除AI话术库分类
export function delIvrlibscriptcategory(categoryid) {
  return request({
    url: '/smartor/ivrlibscriptcategory/' + categoryid,
    method: 'delete'
    url: '/smartor/ivrlibscriptcategory/remove/' + categoryid,
    method: 'get'
  })
}