|
@@ -420,7 +420,7 @@
|
420
|
420
|
<td width="35">℃</td>
|
421
|
421
|
<td width='60'>24h尿量</td>
|
422
|
422
|
<td width='50'>
|
423
|
|
- <div class="under-line"> {{ predialysis.urine_volume ? predialysis.urine_volume : '' }}</div>
|
|
423
|
+ <div class="under-line"> {{ predialysis.urine_volume ? predialysis.urine_volume : 0 }}</div>
|
424
|
424
|
</td>
|
425
|
425
|
<td width='10'>ml</td>
|
426
|
426
|
<td width='40'>水肿</td>
|
|
@@ -558,7 +558,7 @@
|
558
|
558
|
<table class="table-box">
|
559
|
559
|
<tbody>
|
560
|
560
|
<tr>
|
561
|
|
- <td width='100'>透析频率(次/周)</td>
|
|
561
|
+ <td width='110'>透析频率(次/周)</td>
|
562
|
562
|
<td width='50'>
|
563
|
563
|
<div class="under-line">
|
564
|
564
|
{{ predialysis.dialysis_count ? predialysis.dialysis_count : "" }}
|
|
@@ -690,7 +690,7 @@
|
690
|
690
|
<td width='20'>mmol/L</td>
|
691
|
691
|
<td width="20">钾</td>
|
692
|
692
|
|
693
|
|
- <td width="150">
|
|
693
|
+ <td width="160">
|
694
|
694
|
(
|
695
|
695
|
<label-box :isChecked="prescription.dialysate_formulation_name.indexOf('常规') > -1 ? true : false" showValue="2.0"></label-box>
|
696
|
696
|
<label-box :isChecked="false" showValue="3.0mmol/L"></label-box>
|
|
@@ -850,10 +850,10 @@
|
850
|
850
|
</tr>
|
851
|
851
|
</table>
|
852
|
852
|
|
853
|
|
- <table class="print-table" border="1">
|
|
853
|
+ <table class="print-table" border="1" v-if="monitors.length <= 8">
|
854
|
854
|
<tbody>
|
855
|
855
|
<tr>
|
856
|
|
- <td :rowspan="jilurow+4" width="30px" class="title-box">
|
|
856
|
+ <td :rowspan="monitors.length + 1" width="30px" class="title-box">
|
857
|
857
|
透析治疗记录
|
858
|
858
|
</td>
|
859
|
859
|
|
|
@@ -898,7 +898,7 @@
|
898
|
898
|
</td>
|
899
|
899
|
|
900
|
900
|
<td>
|
901
|
|
- {{ monitor.arterial_pressure ? monitor.arterial_pressure : "" }}
|
|
901
|
+ <span v-if="getTime(monitor.operate_time, '{h}:{i}')">{{ monitor.arterial_pressure ? monitor.arterial_pressure : '0' }}</span>
|
902
|
902
|
</td>
|
903
|
903
|
<td>
|
904
|
904
|
{{ monitor.venous_pressure ? monitor.venous_pressure : "" }}
|
|
@@ -1106,6 +1106,189 @@
|
1106
|
1106
|
</table>
|
1107
|
1107
|
|
1108
|
1108
|
</div>
|
|
1109
|
+ <div style="page-break-after: always;"></div>
|
|
1110
|
+ <div class="dialysis-print-order" v-if="monitors.length > 8">
|
|
1111
|
+ <div class="order-yy-name" style="font-size:28px;font-weight:bold;">{{ orgname }}</div>
|
|
1112
|
+ <div class="order-title">血液净化治疗记录单</div>
|
|
1113
|
+ <table class="table-box">
|
|
1114
|
+ <tbody>
|
|
1115
|
+ <tr>
|
|
1116
|
+ <td width="50">姓 名:</td>
|
|
1117
|
+ <td width="90">
|
|
1118
|
+ <div class="under-line"> {{ patientInfo.name }}</div>
|
|
1119
|
+ </td>
|
|
1120
|
+ <td width="30"></td>
|
|
1121
|
+ <td width="50">性 别:</td>
|
|
1122
|
+ <td width="100">
|
|
1123
|
+ <label-box :isChecked="patientInfo_gender_1" showValue="男" ></label-box>
|
|
1124
|
+ <label-box :isChecked="patientInfo_gender_2" showValue="女" ></label-box>
|
|
1125
|
+ </td>
|
|
1126
|
+ <td width="20"></td>
|
|
1127
|
+
|
|
1128
|
+ <td width="50">年 龄:</td>
|
|
1129
|
+ <td width="50">
|
|
1130
|
+ <div class="under-line">{{ getNewAge(patientInfo.id_card_no) }}</div>
|
|
1131
|
+ </td>
|
|
1132
|
+ <td width="20">岁</td>
|
|
1133
|
+ <td width="20"></td>
|
|
1134
|
+
|
|
1135
|
+ <!-- <td width="40">诊 断:</td>
|
|
1136
|
+ <td width="160">
|
|
1137
|
+ <div class="under-line"> {{ patientInfo.diagnose }}</div>
|
|
1138
|
+ </td> -->
|
|
1139
|
+ <td width="40">日 期:</td>
|
|
1140
|
+ <td width="50">
|
|
1141
|
+ <div class="under-line">{{ queryParams.xtdate.slice(0,4) }}</div>
|
|
1142
|
+ </td>
|
|
1143
|
+ <td width='10'>年</td>
|
|
1144
|
+ <td width="50">
|
|
1145
|
+ <div class="under-line">{{ queryParams.xtdate.slice(5,7) }}</div>
|
|
1146
|
+ </td>
|
|
1147
|
+ <td width='10'>月</td>
|
|
1148
|
+ <td width="50">
|
|
1149
|
+ <div class="under-line">{{ queryParams.xtdate.slice(8,11) }}</div>
|
|
1150
|
+ </td>
|
|
1151
|
+ <td width='10'>日</td>
|
|
1152
|
+ <td width='30'></td>
|
|
1153
|
+ <td width="20">第</td>
|
|
1154
|
+ <td width="50">
|
|
1155
|
+ <div class="under-line">2</div>
|
|
1156
|
+ </td>
|
|
1157
|
+ <td width="20">页</td>
|
|
1158
|
+ <!-- <td width="60">住院号:</td>
|
|
1159
|
+ <td width="80">
|
|
1160
|
+ <div class="under-line">
|
|
1161
|
+ {{ receiverTreatmentAccess.admission_number ? receiverTreatmentAccess.admission_number : "" }}
|
|
1162
|
+ </div>
|
|
1163
|
+ </td> -->
|
|
1164
|
+ <td width="20"></td>
|
|
1165
|
+
|
|
1166
|
+ <td></td>
|
|
1167
|
+
|
|
1168
|
+
|
|
1169
|
+ </tr>
|
|
1170
|
+ </tbody>
|
|
1171
|
+ </table>
|
|
1172
|
+ <table class="table-box" style="margin-top: 10px;">
|
|
1173
|
+ <tbody>
|
|
1174
|
+ <tr>
|
|
1175
|
+ <td width="70">透析次数:</td>
|
|
1176
|
+ <td width="50">
|
|
1177
|
+ <div class="under-line"> {{ patientInfo.total_dialysis + patientInfo.user_sys_before_count }}</div>
|
|
1178
|
+ </td>
|
|
1179
|
+ <td width="30"></td>
|
|
1180
|
+ <td width="40">诊 断:</td>
|
|
1181
|
+ <td width="160">
|
|
1182
|
+ <div class="under-line"> {{ patientInfo.diagnose }}</div>
|
|
1183
|
+ </td>
|
|
1184
|
+ <td width="20"></td>
|
|
1185
|
+
|
|
1186
|
+ <td width="60">门诊号:</td>
|
|
1187
|
+ <td width="80">
|
|
1188
|
+ <div class="under-line">
|
|
1189
|
+ {{ patientInfo.dialysis_no }}
|
|
1190
|
+ </div>
|
|
1191
|
+ </td>
|
|
1192
|
+ <td width="20"></td>
|
|
1193
|
+
|
|
1194
|
+
|
|
1195
|
+ <td width="70">设备型号:</td>
|
|
1196
|
+ <td width='100'>
|
|
1197
|
+ <div class="under-line">
|
|
1198
|
+ {{ predialysis.machine_type ? predialysis.machine_type : '' }}
|
|
1199
|
+ </div>
|
|
1200
|
+ </td>
|
|
1201
|
+ <td width='30'></td>
|
|
1202
|
+ <td width="30">机位</td>
|
|
1203
|
+ <td width="120">
|
|
1204
|
+ <div class="under-line"> {{ getNumber() }}</div>
|
|
1205
|
+ </td>
|
|
1206
|
+ <td width="20">号</td>
|
|
1207
|
+
|
|
1208
|
+ <td></td>
|
|
1209
|
+
|
|
1210
|
+
|
|
1211
|
+ </tr>
|
|
1212
|
+ </tbody>
|
|
1213
|
+ </table>
|
|
1214
|
+ <table class="print-table" border="1">
|
|
1215
|
+ <tbody>
|
|
1216
|
+ <tr>
|
|
1217
|
+ <td :rowspan="monitors.length + 1" width="30px" class="title-box">
|
|
1218
|
+ 透析治疗记录
|
|
1219
|
+ </td>
|
|
1220
|
+
|
|
1221
|
+ <td style="line-height:20px;" width="50">时<br />间</td>
|
|
1222
|
+ <td style="line-height:20px;" width="70">血<br />压<br /><span style="font-size:10px; !important">mmHg</span></td>
|
|
1223
|
+ <td style="line-height:20px;" width="40">脉<br />搏<br /><span style="font-size:10px; !important">次/分</span></td>
|
|
1224
|
+ <td style="line-height:20px;" width="50">血<br />流<br />量<br /><span style="font-size:10px; !important">ml/分</span></td>
|
|
1225
|
+ <td style="line-height:20px;" width="50">动<br />脉<br />压<br /><span style="font-size:10px; !important">mmHg</span></td>
|
|
1226
|
+ <td style="line-height:20px;" width="50">静<br />脉<br />压<br /><span style="font-size:10px; !important">mmHg</span></td>
|
|
1227
|
+ <td style="line-height:20px;" width="50">跨<br />膜<br />压<br /><span style="font-size:10px; !important">mmHg</span></td>
|
|
1228
|
+ <td style="line-height:20px;" width="40">超<br />滤<br />率<br /><span style="font-size:10px; !important">ml/h</span></td>
|
|
1229
|
+ <td style="line-height:20px;" width="40">钠<br />浓<br />度<br /><span style="font-size:10px; !important">mmol/L</span></td>
|
|
1230
|
+ <td style="line-height:20px;" width="40">电<br />导<br />度<br /><span style="font-size:10px; !important">ms/cm</span></td>
|
|
1231
|
+
|
|
1232
|
+ <td style="line-height:20px;" width="60">透析液<br />温度<br /><span style="font-size:10px; !important">ml</span></td>
|
|
1233
|
+ <td style="line-height:20px;" width="">病情变化及处理</td>
|
|
1234
|
+ <td style="line-height:20px;" width="60">签名</td>
|
|
1235
|
+ </tr>
|
|
1236
|
+
|
|
1237
|
+ <tr v-for="monitor in monitors" :key="monitor.id">
|
|
1238
|
+ <td style="height:40px;">
|
|
1239
|
+
|
|
1240
|
+ <!-- <template>
|
|
1241
|
+ <span v-if="monitor.monitoring_date">
|
|
1242
|
+ {{monitor.monitoring_date | parseTime('{y}-{m}-{d}')}}
|
|
1243
|
+ </span>
|
|
1244
|
+ </template> -->
|
|
1245
|
+ {{ getTime(monitor.operate_time, "{h}:{i}") }}
|
|
1246
|
+ </td>
|
|
1247
|
+ <td>
|
|
1248
|
+
|
|
1249
|
+ <span v-if='monitor.operate_time'>
|
|
1250
|
+ {{ monitor.systolic_blood_pressure ? monitor.systolic_blood_pressure : "" }}/
|
|
1251
|
+ {{ monitor.diastolic_blood_pressure ? monitor.diastolic_blood_pressure : "" }}
|
|
1252
|
+ </span>
|
|
1253
|
+ </td>
|
|
1254
|
+ <td>
|
|
1255
|
+ {{ monitor.pulse_frequency ? monitor.pulse_frequency : "" }}
|
|
1256
|
+ </td>
|
|
1257
|
+ <td>
|
|
1258
|
+ {{ monitor.blood_flow_volume ? monitor.blood_flow_volume : "" }}
|
|
1259
|
+ </td>
|
|
1260
|
+
|
|
1261
|
+ <td>
|
|
1262
|
+ <span v-if="getTime(monitor.operate_time, '{h}:{i}')">{{ monitor.arterial_pressure ? monitor.arterial_pressure : '0' }}</span>
|
|
1263
|
+ </td>
|
|
1264
|
+ <td>
|
|
1265
|
+ {{ monitor.venous_pressure ? monitor.venous_pressure : "" }}
|
|
1266
|
+ </td>
|
|
1267
|
+ <td>
|
|
1268
|
+ {{ monitor.transmembrane_pressure ? monitor.transmembrane_pressure : "" }}
|
|
1269
|
+ </td>
|
|
1270
|
+ <td> {{ monitor.ultrafiltration_rate ? monitor.ultrafiltration_rate : "" }}</td>
|
|
1271
|
+ <td> {{ monitor.sodium_concentration ? monitor.sodium_concentration : "" }}</td>
|
|
1272
|
+ <td> {{ monitor.conductivity ? monitor.conductivity : "" }}</td>
|
|
1273
|
+
|
|
1274
|
+ <td> {{ monitor.dialysate_temperature ? monitor.dialysate_temperature : '' }}</td>
|
|
1275
|
+ <td style="text-align:left;line-height:20px;">
|
|
1276
|
+ {{ monitor.symptom }} {{ monitor.dispose }} {{ monitor.result }}
|
|
1277
|
+ </td>
|
|
1278
|
+ <td>
|
|
1279
|
+ <span v-if="setAdminUserES(monitor.monitoring_nurse) == ''">
|
|
1280
|
+ {{ getAdminUser(monitor.monitoring_nurse) }}
|
|
1281
|
+ </span>
|
|
1282
|
+ <span v-else style="display:flex;align-items:center;justify-content:space-around;height:36px;">
|
|
1283
|
+ <img style="height:30px;" :src="setAdminUserES(monitor.monitoring_nurse)" alt srcset />
|
|
1284
|
+ </span>
|
|
1285
|
+ </td>
|
|
1286
|
+
|
|
1287
|
+
|
|
1288
|
+ </tr>
|
|
1289
|
+ </tbody>
|
|
1290
|
+ </table>
|
|
1291
|
+ </div>
|
1109
|
1292
|
</div>
|
1110
|
1293
|
</template>
|
1111
|
1294
|
|