WXL
2024-07-05 fdf8b9cc7995c8d2022ac512c48a7567f6d2af9a
src/api/smartor/ivrscripttarget.js
@@ -29,8 +29,8 @@
// 修改话术库话术指标
export function updateIvrscripttarget(data) {
  return request({
    url: '/smartor/ivrscripttarget',
    method: 'put',
    url: '/smartor/ivrscripttarget/edit',
    method: 'post',
    data: data
  })
}
@@ -38,7 +38,7 @@
// 删除话术库话术指标
export function delIvrscripttarget(questionTargetID) {
  return request({
    url: '/smartor/ivrscripttarget/' + questionTargetID,
    method: 'delete'
    url: '/smartor/ivrscripttarget/remove/' + questionTargetID,
    method: 'get'
  })
}