WXL
2025-03-24 073edc90c84ee4e8b3efe18db4ecfdbf039fdcb6
src/api/smartor/svyfinishoption.js
@@ -29,8 +29,8 @@
// 修改问卷最终结果选项详情
export function updateSvyfinishoption(data) {
  return request({
    url: '/smartor/svyfinishoption',
    method: 'put',
    url: '/smartor/svyfinishoption/edit',
    method: 'post',
    data: data
  })
}
@@ -38,7 +38,7 @@
// 删除问卷最终结果选项详情
export function delSvyfinishoption(id) {
  return request({
    url: '/smartor/svyfinishoption/' + id,
    method: 'delete'
    url: '/smartor/svyfinishoption/remove/' + id,
    method: 'get'
  })
}