WXL
2024-06-05 711c995d7307b4a2d56e55095e3f81ffbdfc4d39
src/api/smartor/helibrary.js
@@ -29,8 +29,8 @@
// 修改宣教库
export function updateHelibrary(data) {
  return request({
    url: '/smartor/helibrary',
    method: 'put',
    url: '/smartor/helibrary/edit',
    method: 'post',
    data: data
  })
}
@@ -38,7 +38,7 @@
// 删除宣教库
export function delHelibrary(id) {
  return request({
    url: '/smartor/helibrary/' + id,
    method: 'delete'
    url: '/smartor/helibrary/remove/' + id,
    method: 'get'
  })
}