import request from '@/utils/request' // 查询患者体检记录列表 export function listPatphysical(query) { return request({ url: '/smartor/patphysical/list', method: 'get', params: query }) } // 查询患者体检记录详细 export function getPatphysical(id) { return request({ url: '/smartor/patphysical/' + id, method: 'get' }) } // 新增患者体检记录 export function addPatphysical(data) { return request({ url: '/smartor/patphysical', method: 'post', data: data }) } // 修改患者体检记录 export function updatePatphysical(data) { return request({ url: '/smartor/patphysical', method: 'put', data: data }) } // 删除患者体检记录 export function delPatphysical(id) { return request({ url: '/smartor/patphysical/' + id, method: 'delete' }) }