WXL (wul)
4 天以前 bc9538a9e071259ca8bbb6de52c60c9d7a55a03b
src/api/smartor/patouthosp.js
@@ -10,10 +10,13 @@
}
// 查询待入院记录列表
export function listPatMedInhosp(query) {
  const data = { ...query };
  // bedSort 不传即不按床号排序
  if (data.bedSort == null || data.bedSort === "") delete data.bedSort;
  return request({
    url: '/smartor/patinhosp/selectPatMedInhospList',
    method: 'post',
    data: query
    data: data
  })
}