WXL
2024-05-31 f6cedc29e915445bbdd0923d8315941f8abbd6ed
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'
  })
}