WXL
2024-08-16 720f7c4ce56ae4b9fc3884d0ed9393d79130b01c
src/api/smartor/ivrlibascript.js
@@ -29,8 +29,8 @@
// 修改话术库
export function updateIvrlibascript(data) {
  return request({
    url: '/smartor/ivrlibascript',
    method: 'put',
    url: '/smartor/ivrlibascript/edit',
    method: 'post',
    data: data
  })
}
@@ -38,7 +38,7 @@
// 删除话术库
export function delIvrlibascript(questionid) {
  return request({
    url: '/smartor/ivrlibascript/' + questionid,
    method: 'delete'
    url: '/smartor/ivrlibascript/remove/' + questionid,
    method: 'get'
  })
}