WXL (wul)
19 小时以前 64aba591ee30c2c31953a852fe6a95db79fc0070
src/api/smartor/ivrintent.js
@@ -29,8 +29,8 @@
// 修改AI外呼意图
export function updateIvrintent(data) {
  return request({
    url: '/smartor/ivrintent',
    method: 'put',
    url: '/smartor/ivrintent/edit',
    method: 'post',
    data: data
  })
}
@@ -38,7 +38,7 @@
// 删除AI外呼意图
export function delIvrintent(sceneintentid) {
  return request({
    url: '/smartor/ivrintent/' + sceneintentid,
    method: 'delete'
    url: '/smartor/ivrintent/remove/' + sceneintentid,
    method: 'get'
  })
}