WXL
2024-08-02 a9a1a5cf8e6d6677374e9ef7bcddb97877e4eee4
src/api/smartor/ivrtemplate.js
@@ -29,8 +29,8 @@
// 修改话术模板库
export function updateIvrtemplate(data) {
  return request({
    url: '/smartor/ivrtemplate',
    method: 'put',
    url: '/smartor/ivrtemplate/edit',
    method: 'post',
    data: data
  })
}
@@ -38,7 +38,7 @@
// 删除话术模板库
export function delIvrtemplate(templateID) {
  return request({
    url: '/smartor/ivrtemplate/' + templateID,
    method: 'delete'
    url: '/smartor/ivrtemplate/remove/' + templateID,
    method: 'get'
  })
}