huangyw 2 years ago
parent
commit
9cbfca5928

+ 5 - 7
src/xt_pages/dialysis/batch_print/batch_print_order_six.vue View File

1215
                           >
1215
                           >
1216
                             置换量<br />(ml)
1216
                             置换量<br />(ml)
1217
                           </td>
1217
                           </td>
1218
-                          <td width="50" v-if="org_id == 9919 || org_id == 9538|| org_id == 9675">ktv</td>
1219
-                          <td width="50" v-if="org_id == 9538|| org_id == 9675">血容量<br />(ml)</td>
1218
+                          <td width="50" v-if="org_id == 9919 || org_id == 9538|| org_id == 9675">KT/V</td>
1219
+                          <td width="50" v-if="org_id == 9538|| org_id == 9675">血容量<br />(L)</td>
1220
                           <td width="200">病情变化及处理</td>
1220
                           <td width="200">病情变化及处理</td>
1221
                         </tr>
1221
                         </tr>
1222
                         <tr
1222
                         <tr
1332
                             v-if="
1332
                             v-if="
1333
                               record.prescription.mode_id == 2 ||
1333
                               record.prescription.mode_id == 2 ||
1334
                               record.prescription.mode_id == 5 ||
1334
                               record.prescription.mode_id == 5 ||
1335
-                              (record.prescription.mode_id == 12 &&
1336
-                                monitor_record.operate_time >
1337
-                                  record.dialysis_order.end_time)
1335
+                              record.prescription.mode_id == 12
1338
                             "
1336
                             "
1339
                             style="width: 50px"
1337
                             style="width: 50px"
1340
                           >
1338
                           >
1345
                             }}
1343
                             }}
1346
                           </td>
1344
                           </td>
1347
                           <td width="50" v-if="org_id == 9919 || org_id == 9538|| org_id == 9675">
1345
                           <td width="50" v-if="org_id == 9919 || org_id == 9538|| org_id == 9675">
1348
-                          {{ monitor.ktv }}
1346
+                          {{ monitor_record.ktv }}
1349
                         </td>
1347
                         </td>
1350
                         <td width="50" v-if="org_id == 9538|| org_id == 9675">
1348
                         <td width="50" v-if="org_id == 9538|| org_id == 9675">
1351
-                          {{ monitor.accumulated_blood_volume }}
1349
+                          {{ monitor_record.accumulated_blood_volume }}
1352
                         </td>
1350
                         </td>
1353
                           <td style="line-height: 16px; padding: 0px">
1351
                           <td style="line-height: 16px; padding: 0px">
1354
                             <div
1352
                             <div

+ 2 - 2
src/xt_pages/dialysis/template/DialysisPrintOrderFiftyFour.vue View File

821
             <td v-if="advice_index === 1">体重增加量:</td>
821
             <td v-if="advice_index === 1">体重增加量:</td>
822
             <td v-if="advice_index === 1">
822
             <td v-if="advice_index === 1">
823
               {{
823
               {{
824
-                (assessmentafter.weight_after == 0
824
+                (assessmentafter.weight_after == 0 || predialysis.weight_before == 0
825
                   ? 0
825
                   ? 0
826
                   : (
826
                   : (
827
                       predialysis.weight_before - assessmentafter.weight_after
827
                       predialysis.weight_before - assessmentafter.weight_after
851
             <td v-if="advice_index === 6">本次透析体重下降量:</td>
851
             <td v-if="advice_index === 6">本次透析体重下降量:</td>
852
             <td v-if="advice_index === 6">
852
             <td v-if="advice_index === 6">
853
               {{
853
               {{
854
-                afterdialysis.weight_after == 0
854
+                afterdialysis.weight_after == 0 || predialysis.weight_before == 0
855
                   ? 0
855
                   ? 0
856
                   : (
856
                   : (
857
                       predialysis.weight_before - afterdialysis.weight_after
857
                       predialysis.weight_before - afterdialysis.weight_after

+ 2 - 2
src/xt_pages/dialysis/template/DialysisPrintOrderFiftySeven.vue View File

566
           <!-- HR -->
566
           <!-- HR -->
567
           <td>
567
           <td>
568
             <span v-if="getTime(monitor.operate_time) != ''">
568
             <span v-if="getTime(monitor.operate_time) != ''">
569
-              {{ monitor.pulse_frequency ? monitor.pulse_frequency : "0" }}
569
+              {{ monitor.pulse_frequency ? monitor.pulse_frequency : "" }}
570
             </span>
570
             </span>
571
           </td>
571
           </td>
572
           <!-- R -->
572
           <!-- R -->
573
           <td>
573
           <td>
574
             <span v-if="getTime(monitor.operate_time) != ''">
574
             <span v-if="getTime(monitor.operate_time) != ''">
575
-              {{ monitor.breathing_rate ? monitor.breathing_rate : "0" }}
575
+              {{ monitor.breathing_rate ? monitor.breathing_rate : "" }}
576
             </span>
576
             </span>
577
           </td>
577
           </td>
578
           <!-- BP -->
578
           <!-- BP -->

+ 1 - 1
src/xt_pages/dialysis/template/DialysisPrintOrderFortySeven.vue View File

160
 
160
 
161
         <div
161
         <div
162
           class="row"
162
           class="row"
163
-          :style="this.totollength > 13 ? 'margin-bottom:200px;' : ''"
163
+          :style="this.totollength > 13 ? 'margin-bottom:250px;' : ''"
164
         >
164
         >
165
           <table class="proj_table">
165
           <table class="proj_table">
166
             <tbody>
166
             <tbody>

+ 6 - 35
src/xt_pages/dialysis/template/DialysisPrintOrderSix.vue View File

1256
                     <td  width="100">护士签名</td> -->
1256
                     <td  width="100">护士签名</td> -->
1257
                       </tr>
1257
                       </tr>
1258
 
1258
 
1259
-                      <tr
1260
-                        v-for="(monitor, monindex) in monitors"
1261
-                        :key="monindex"
1262
-                      >
1259
+                      <tr v-for="(monitor, monindex) in monitors" :key="monindex">
1263
                         <td>{{ getTime(monitor.operate_time, "{h}:{i}") }}</td>
1260
                         <td>{{ getTime(monitor.operate_time, "{h}:{i}") }}</td>
1264
-                        <td>
1265
-                          {{
1266
-                            monitor.systolic_blood_pressure
1267
-                              ? monitor.systolic_blood_pressure + "/"
1268
-                              : ""
1269
-                          }}
1270
-                          {{
1271
-                            monitor.diastolic_blood_pressure
1272
-                              ? monitor.diastolic_blood_pressure
1273
-                              : ""
1274
-                          }}
1275
-                        </td>
1276
-                        <td>
1277
-                          {{
1278
-                            monitor.pulse_frequency
1279
-                              ? monitor.pulse_frequency
1280
-                              : ""
1281
-                          }}
1282
-                        </td>
1283
-                        <td>
1284
-                          {{
1285
-                            monitor.breathing_rate ? monitor.breathing_rate : ""
1286
-                          }}
1287
-                        </td>
1288
-                        <td>
1289
-                          {{
1290
-                            monitor.blood_flow_volume
1291
-                              ? monitor.blood_flow_volume
1292
-                              : ""
1293
-                          }}
1294
-                        </td>
1261
+                        <td>{{monitor.systolic_blood_pressure? monitor.systolic_blood_pressure + "/": ""}}
1262
+                          {{monitor.diastolic_blood_pressure? monitor.diastolic_blood_pressure: ""}}</td>
1263
+                        <td>{{ monitor.pulse_frequency? monitor.pulse_frequency: ""}}</td>
1264
+                        <td>{{monitor.breathing_rate ? monitor.breathing_rate : ""}}</td>
1265
+                        <td>{{monitor.blood_flow_volume? monitor.blood_flow_volume: ""}}</td>
1295
                         <td>
1266
                         <td>
1296
                           {{
1267
                           {{
1297
                             monitor.venous_pressure
1268
                             monitor.venous_pressure