WXL
2024-06-20 8d2e62da290ba8c40101f282a60efcdb29b22cd2
src/api/smartor/svyresult.js
@@ -29,8 +29,8 @@
// 修改问卷结果
export function updateSvyresult(data) {
  return request({
    url: '/smartor/svyresult',
    method: 'put',
    url: '/smartor/svyresult/edit',
    method: 'post',
    data: data
  })
}
@@ -38,7 +38,7 @@
// 删除问卷结果
export function delSvyresult(resultid) {
  return request({
    url: '/smartor/svyresult/' + resultid,
    method: 'delete'
    url: '/smartor/svyresult/remove/' + resultid,
    method: 'get'
  })
}