WXL
2024-10-30 7fca01ae5a5a62d609b08aef850b7c2cfa610bb9
src/api/smartor/svyexception.js
@@ -29,8 +29,8 @@
// 修改问卷异常
export function updateSvyexception(data) {
  return request({
    url: '/smartor/svyexception',
    method: 'put',
    url: '/smartor/svyexception/edit',
    method: 'post',
    data: data
  })
}
@@ -38,7 +38,7 @@
// 删除问卷异常
export function delSvyexception(ecid) {
  return request({
    url: '/smartor/svyexception/' + ecid,
    method: 'delete'
    url: '/smartor/svyexception/remove/' + ecid,
    method: 'get'
  })
}