WXL (wul)
2025-11-10 ab77cf83de3f6978909e6f1f3b6e0d28db456681
src/api/smartor/ivrtemplatescript.js
@@ -29,8 +29,8 @@
// 修改话术模板库话术
export function updateIvrtemplatescript(data) {
  return request({
    url: '/smartor/ivrtemplatescript',
    method: 'put',
    url: '/smartor/ivrtemplatescript/edit',
    method: 'post',
    data: data
  })
}
@@ -38,7 +38,7 @@
// 删除话术模板库话术
export function delIvrtemplatescript(templateQuestionID) {
  return request({
    url: '/smartor/ivrtemplatescript/' + templateQuestionID,
    method: 'delete'
    url: '/smartor/ivrtemplatescript/remove/' + templateQuestionID,
    method: 'get'
  })
}