See999 3 years ago
parent
commit
a8cb0dd645

+ 30 - 1
src/xt_pages/dialysis/details/dialog/monitor_dialog.vue View File

@@ -309,6 +309,30 @@
309 309
               {{ scope.row.dialysate_flow ? scope.row.dialysate_flow : ""  }}
310 310
             </template>
311 311
           </el-table-column>
312
+
313
+
314
+          <el-table-column
315
+            prop="displacement_flow_quantity"
316
+            align="center"
317
+            label="超滤率(ml/h)"
318
+            width="100"
319
+            v-if="isShow('超滤率') && (template_id == 6 || template_id == 10 || template_id == 11 || template_id == 12 || template_id == 13) "
320
+          >
321
+            <template slot-scope="scope">
322
+              {{ scope.row.ultrafiltration_rate ? scope.row.ultrafiltration_rate : ""  }}
323
+            </template>
324
+          </el-table-column>
325
+          <el-table-column
326
+            prop="displacement_flow_quantity"
327
+            align="center"
328
+            label="超滤率(L/h)"
329
+            width="100"
330
+            v-if="isShow('超滤率') && template_id != 6 && template_id != 10 && template_id != 11 && template_id != 12 && template_id != 13 "
331
+          >
332
+            <template slot-scope="scope">
333
+              {{ scope.row.ultrafiltration_rate ? scope.row.ultrafiltration_rate : ""  }}
334
+            </template>
335
+          </el-table-column>
312 336
           
313 337
           <el-table-column
314 338
             prop="heparin"
@@ -440,11 +464,16 @@
440 464
             </el-form-item>
441 465
           </el-col>
442 466
 
443
-          <el-col :span="8" v-if="isShow('超滤率')">
467
+          <el-col :span="8" v-if="isShow('超滤率') && (template_id == 6 || template_id == 10 || template_id == 11 || template_id == 12 || template_id == 13) ">
444 468
             <el-form-item label="超滤率(ml/h)">
445 469
               <el-input v-model="form.ultrafiltration_rate"></el-input>
446 470
             </el-form-item>
447 471
           </el-col>
472
+          <el-col :span="8" v-if="isShow('超滤率') && template_id != 6 && template_id != 10 && template_id != 11 && template_id != 12 && template_id != 13 ">
473
+            <el-form-item label="超滤率(L/h)">
474
+              <el-input v-model="form.ultrafiltration_rate"></el-input>
475
+            </el-form-item>
476
+          </el-col>
448 477
 
449 478
           <el-col
450 479
             :span="8"

+ 6 - 1
src/xt_pages/dialysis/dialysisPrintOrder.vue View File

@@ -250,7 +250,7 @@
250 250
               @row-click="changePatient"
251 251
               highlight-current-row
252 252
               :data="tableData"
253
-              height="500"
253
+              height="480"
254 254
               border
255 255
               style="width: 100%">
256 256
               <el-table-column
@@ -1630,6 +1630,8 @@ export default {
1630 1630
 
1631 1631
 <style lang="scss">
1632 1632
 .newContainer{
1633
+  overflow-x: auto;
1634
+  height: 500px;
1633 1635
   .el-date-editor{
1634 1636
     .el-input__inner{
1635 1637
       padding-right:0px;
@@ -1639,4 +1641,7 @@ export default {
1639 1641
     text-align: center;
1640 1642
   }
1641 1643
 }
1644
+.newContainer::-webkit-scrollbar{
1645
+  height: 15px !important;
1646
+}
1642 1647
 </style>