WXL
2025-05-23 08c27c1f13c1e7560a39f2fdc38b300d2c0e2af4
src/api/smartor/patinhosp.js
@@ -29,8 +29,8 @@
// 修改患者住院记录
export function updatePatinhosp(data) {
  return request({
    url: '/smartor/patinhosp',
    method: 'put',
    url: '/smartor/patinhosp/edit',
    method: 'post',
    data: data
  })
}
@@ -38,7 +38,7 @@
// 删除患者住院记录
export function delPatinhosp(inhospid) {
  return request({
    url: '/smartor/patinhosp/' + inhospid,
    method: 'delete'
    url: '/smartor/patinhosp/remove/' + inhospid,
    method: 'get'
  })
}