WXL
2024-05-22 e014c6f2c4123d811353b4fe59d1b489e0587543
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'
  })
}