WXL
2025-05-23 08c27c1f13c1e7560a39f2fdc38b300d2c0e2af4
src/api/smartor/ivrflownode.js
@@ -29,8 +29,8 @@
// 修改AI外呼流程节点
export function updateIvrflownode(data) {
  return request({
    url: '/smartor/ivrflownode',
    method: 'put',
    url: '/smartor/ivrflownode/edit',
    method: 'post',
    data: data
  })
}
@@ -38,7 +38,7 @@
// 删除AI外呼流程节点
export function delIvrflownode(flownodeid) {
  return request({
    url: '/smartor/ivrflownode/' + flownodeid,
    method: 'delete'
    url: '/smartor/ivrflownode/remove/' + flownodeid,
    method: 'get'
  })
}