WXL
2024-06-05 711c995d7307b4a2d56e55095e3f81ffbdfc4d39
src/api/smartor/patphysical.js
@@ -3,9 +3,9 @@
// 查询患者体检记录列表
export function listPatphysical(query) {
  return request({
    url: '/smartor/patphysical/list',
    method: 'get',
    params: query
    url: '/smartor/patphysical/selectPatMedPhysicalList',
    method: 'post',
    data: query
  })
}
@@ -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'
  })
}