WXL
2024-04-08 412ecc2c412a03c909c0dc2ef41f08d02eb7d913
src/api/smartor/svytopic.js
@@ -29,8 +29,8 @@
// 修改问卷题目
export function updateSvytopic(data) {
  return request({
    url: '/smartor/svytopic',
    method: 'put',
    url: '/smartor/svytopic/edit',
    method: 'post',
    data: data
  })
}
@@ -38,7 +38,7 @@
// 删除问卷题目
export function delSvytopic(topicid) {
  return request({
    url: '/smartor/svytopic/' + topicid,
    method: 'delete'
    url: '/smartor/svytopic/remove/' + topicid,
    method: 'get'
  })
}