WXL
2024-05-27 b2278ee7b3934157b2400d75c39957a8885ade9f
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'
  })
}