WXL
2024-04-15 e98f65f2a02e82b02d327506d592564f78f4ecf7
src/api/smartor/ivrflow.js
@@ -29,8 +29,8 @@
// 修改AI外呼流程
export function updateIvrflow(data) {
  return request({
    url: '/smartor/ivrflow',
    method: 'put',
    url: '/smartor/ivrflow/edit',
    method: 'post',
    data: data
  })
}
@@ -38,7 +38,7 @@
// 删除AI外呼流程
export function delIvrflow(flowid) {
  return request({
    url: '/smartor/ivrflow/' + flowid,
    method: 'delete'
    url: '/smartor/ivrflow/remove/' + flowid,
    method: 'get'
  })
}