WXL
2023-12-18 d94d00d2cd9eaf87bb3776f72f8e73410b93cb7a
src/api/smartor/ivrtemplatetarget.js
@@ -29,8 +29,8 @@
// 修改话术模板库话术指标
export function updateIvrtemplatetarget(data) {
  return request({
    url: '/smartor/ivrtemplatetarget',
    method: 'put',
    url: '/smartor/ivrtemplatetarget/edit',
    method: 'post',
    data: data
  })
}
@@ -38,7 +38,7 @@
// 删除话术模板库话术指标
export function delIvrtemplatetarget(templateTargetID) {
  return request({
    url: '/smartor/ivrtemplatetarget/' + templateTargetID,
    method: 'delete'
    url: '/smartor/ivrtemplatetarget/remove/' + templateTargetID,
    method: 'get'
  })
}