diff --git a/healthlink-his-ui/src/action/nurseStation/temperatureSheet/template.js b/healthlink-his-ui/src/action/nurseStation/temperatureSheet/template.js
index 622b32020..dd4537d54 100755
--- a/healthlink-his-ui/src/action/nurseStation/temperatureSheet/template.js
+++ b/healthlink-his-ui/src/action/nurseStation/temperatureSheet/template.js
@@ -35,7 +35,7 @@ export const INFO_KEYS = [
show: true,
},
{
- name: '病历号',
+ name: '住院号',
key: 'hosNum',
order: 6,
show: true,
diff --git a/healthlink-his-ui/src/views/inpatientNurse/tprChart/index.vue b/healthlink-his-ui/src/views/inpatientNurse/tprChart/index.vue
index 348d82a24..584306a72 100755
--- a/healthlink-his-ui/src/views/inpatientNurse/tprChart/index.vue
+++ b/healthlink-his-ui/src/views/inpatientNurse/tprChart/index.vue
@@ -31,7 +31,7 @@
@@ -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;
diff --git a/healthlink-his-ui/src/views/inpatientNurse/tprsheet/components/details.vue b/healthlink-his-ui/src/views/inpatientNurse/tprsheet/components/details.vue
index e1634335c..b1913598e 100755
--- a/healthlink-his-ui/src/views/inpatientNurse/tprsheet/components/details.vue
+++ b/healthlink-his-ui/src/views/inpatientNurse/tprsheet/components/details.vue
@@ -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;