WXL
2023-12-18 d94d00d2cd9eaf87bb3776f72f8e73410b93cb7a
src/api/smartor/patphysical.js
@@ -29,8 +29,8 @@
// 修改患者体检记录
export function updatePatphysical(data) {
  return request({
    url: '/smartor/patphysical',
    method: 'put',
    url: '/smartor/patphysical/edit',
    method: 'post',
    data: data
  })
}
@@ -38,7 +38,7 @@
// 删除患者体检记录
export function delPatphysical(id) {
  return request({
    url: '/smartor/patphysical/' + id,
    method: 'delete'
    url: '/smartor/patphysical/remove/' + id,
    method: 'get'
  })
}