837 【住院护士站-体温单】体温单表头的标识错误,应将“病历号”字段文案及对应数据修改为“住院号”

This commit is contained in:
wangjian963
2026-06-30 16:59:30 +08:00
parent df468d95c4
commit ddf426123e
3 changed files with 5 additions and 5 deletions

View File

@@ -35,7 +35,7 @@ export const INFO_KEYS = [
show: true,
},
{
name: '病历号',
name: '住院号',
key: 'hosNum',
order: 6,
show: true,

View File

@@ -31,7 +31,7 @@
<div style="width: 100%">
<el-input
v-model="queryParams.searchKey"
placeholder="请输入患者名/病历号"
placeholder="请输入患者名/住院号"
clearable
style="width: 48%; margin-bottom: 10px; margin-right: 10px"
@keyup.enter="getPatientListInfo"
@@ -56,7 +56,7 @@
min-width="50"
/>
<vxe-column
title="病历号"
title="住院号"
align="center"
field="patientBusNo"
/>
@@ -351,7 +351,7 @@ function viewPatient(row) {
data1.grParamBOS.age = row.ageString;
data1.grParamBOS.birth = row.birthDate;
data1.grParamBOS.cwh = row.bedLocationId_dictText;
data1.grParamBOS.hosNum = row.encounterId;
data1.grParamBOS.hosNum = row.patientBusNo || '';
// 入科时间存在的场合使用入科时间
data1.grParamBOS.inDate = row.wardAdmissionDate;

View File

@@ -537,7 +537,7 @@ function viewPatient(row = {}) {
// data1.grParamBOS.cwh = row.bedLocationId_dictText;
data1.grParamBOS.cwh = row.bedName;
data1.grParamBOS.deptName = row.wardName;
data1.grParamBOS.hosNum = row.encounterId;
data1.grParamBOS.hosNum = row.busNo || '';
data1.grParamBOS.sex = row.genderEnum_enumText;
// 入科时间存在的场合使用入科时间
data1.grParamBOS.inDate = row.wardAdmissionDate;