WXL
2024-01-04 f93cb40b76468c6f1063081a3be16027d69b4832
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'
  })
}