WXL
2025-05-23 08c27c1f13c1e7560a39f2fdc38b300d2c0e2af4
src/api/smartor/svyfinish.js
@@ -29,8 +29,8 @@
// 修改问卷最终结果
export function updateSvyfinish(data) {
  return request({
    url: '/smartor/svyfinish',
    method: 'put',
    url: '/smartor/svyfinish/edit',
    method: 'post',
    data: data
  })
}
@@ -38,7 +38,7 @@
// 删除问卷最终结果
export function delSvyfinish(id) {
  return request({
    url: '/smartor/svyfinish/' + id,
    method: 'delete'
    url: '/smartor/svyfinish/remove/' + id,
    method: 'get'
  })
}