WXL
2024-06-06 968d62e6a3093b810dcd3db160a2b362a6e4ef69
src/api/smartor/svytitle.js
@@ -29,8 +29,8 @@
// 修改问卷
export function updateSvytitle(data) {
  return request({
    url: '/smartor/svytitle',
    method: 'put',
    url: '/smartor/svytitle/edit',
    method: 'post',
    data: data
  })
}
@@ -38,7 +38,7 @@
// 删除问卷
export function delSvytitle(svyid) {
  return request({
    url: '/smartor/svytitle/' + svyid,
    method: 'delete'
    url: '/smartor/svytitle/remove/' + svyid,
    method: 'get'
  })
}