WXL
2025-03-11 36b7179cda46033aa5f142aecf0cd213cd50232c
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'
  })
}