WXL
2024-08-02 a9a1a5cf8e6d6677374e9ef7bcddb97877e4eee4
src/api/smartor/ivrlibintentcategory.js
@@ -29,8 +29,8 @@
// 修改AI意图库分类
export function updateIvrlibintentcategory(data) {
  return request({
    url: '/smartor/ivrlibintentcategory',
    method: 'put',
    url: '/smartor/ivrlibintentcategory/edit',
    method: 'post',
    data: data
  })
}
@@ -38,7 +38,7 @@
// 删除AI意图库分类
export function delIvrlibintentcategory(intertcatid) {
  return request({
    url: '/smartor/ivrlibintentcategory/' + intertcatid,
    method: 'delete'
    url: '/smartor/ivrlibintentcategory/remove/' + intertcatid,
    method: 'get'
  })
}