See999 3 anni fa
parent
commit
a8cb0dd645

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

309
               {{ scope.row.dialysate_flow ? scope.row.dialysate_flow : ""  }}
309
               {{ scope.row.dialysate_flow ? scope.row.dialysate_flow : ""  }}
310
             </template>
310
             </template>
311
           </el-table-column>
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
           <el-table-column
337
           <el-table-column
314
             prop="heparin"
338
             prop="heparin"
440
             </el-form-item>
464
             </el-form-item>
441
           </el-col>
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
             <el-form-item label="超滤率(ml/h)">
468
             <el-form-item label="超滤率(ml/h)">
445
               <el-input v-model="form.ultrafiltration_rate"></el-input>
469
               <el-input v-model="form.ultrafiltration_rate"></el-input>
446
             </el-form-item>
470
             </el-form-item>
447
           </el-col>
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
           <el-col
478
           <el-col
450
             :span="8"
479
             :span="8"

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

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