WXL (wul)
2025-10-20 7bd7dcae93299c40b3fde4b08e3dc5a51a8d603f
src/api/smartor/ivrextemplate.js
@@ -29,8 +29,8 @@
// 修改扩展话术模板库
export function updateIvrextemplate(data) {
  return request({
    url: '/smartor/ivrextemplate',
    method: 'put',
    url: '/smartor/ivrextemplate/edit',
    method: 'post',
    data: data
  })
}
@@ -38,7 +38,7 @@
// 删除扩展话术模板库
export function delIvrextemplate(subModuleID) {
  return request({
    url: '/smartor/ivrextemplate/' + subModuleID,
    method: 'delete'
    url: '/smartor/ivrextemplate/remove/' + subModuleID,
    method: 'get'
  })
}