Browse Source

Merge remote-tracking branch 'origin/20230223_pc_vue_new_branch' into 20230223_pc_vue_new_branch

yq1 1 year ago
parent
commit
9640a397ec

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

@@ -666,7 +666,7 @@
666 666
             align="center"
667 667
             label="置换液流量(ml/h)"
668 668
             width="100"
669
-            v-if="isShow('置换液流量') && template_id != 27"
669
+            v-if="isShow('置换液流量') && template_id != 27 && template_id != 60"
670 670
           >
671 671
             <template slot-scope="scope">
672 672
               {{
@@ -681,7 +681,7 @@
681 681
             align="center"
682 682
             label="置换液流量(ml/min)"
683 683
             width="100"
684
-            v-if="isShow('置换液流量') && template_id == 27"
684
+            v-if="isShow('置换液流量') && (template_id == 27 || template_id == 60)"
685 685
           >
686 686
             <template slot-scope="scope">
687 687
               {{
@@ -1492,13 +1492,13 @@
1492 1492
             </el-form-item>
1493 1493
           </el-col>
1494 1494
 
1495
-          <el-col :span="8" v-if="isShow('置换液流量') && template_id != 27">
1495
+          <el-col :span="8" v-if="isShow('置换液流量') && template_id != 27  && template_id != 60">
1496 1496
             <el-form-item label="置换液流量(ml/h):" :prop="isName('置换液流量')"
1497 1497
               :rules="isCheckmust('置换液流量')">
1498 1498
               <el-input v-model="form.displacement_flow_quantity"></el-input>
1499 1499
             </el-form-item>
1500 1500
           </el-col>
1501
-          <el-col :span="8" v-if="isShow('置换液流量') && template_id == 27">
1501
+          <el-col :span="8" v-if="isShow('置换液流量') && (template_id ==27 ||  template_id == 60)">
1502 1502
             <el-form-item label="置换液流量(ml/min):" :prop="isName('置换液流量')"
1503 1503
               :rules="isCheckmust('置换液流量')">
1504 1504
               <el-input v-model="form.displacement_flow_quantity"></el-input>

+ 2 - 2
src/xt_pages/dialysis/details/dialysisMonitoring.vue View File

@@ -28,8 +28,8 @@
28 28
           <th v-if=" isShow('置换量') && ((template_id != 6 || org_id == 9919 || org_id == 10191 || org_id == 10478) && org_id != 9779 && template_id != 11 && template_id != 20 && template_id != 26 && template_id != 29 && template_id != 46 && template_id != 48 && template_id != 53 && template_id != 54 && template_id != 56 && this.$store.getters.xt_user.template_info.org_id != 10340 && this.$store.getters.xt_user.template_info.org_id != 10432  && this.$store.getters.xt_user.template_info.org_id != 10445) || org_id == 10558" width="92px" > 置换量(L) </th>
29 29
           <th v-if=" isShow('SpO₂') && template_id != 6 && template_id != 10 && template_id != 11  " width="92px" > SpO₂(%) </th>
30 30
           <th v-if="isShow('电导度')" width="92px">电导度(mS/m)</th>
31
-          <th v-if="isShow('置换液流量') && template_id != 27" width="92px">置换液流量(ml/h)</th>
32
-          <th v-if="isShow('置换液流量') && template_id == 27" width="92px">置换液流量(ml/min)</th>
31
+          <th v-if="isShow('置换液流量') && template_id != 27 && template_id != 60" width="92px">置换液流量(ml/h)</th>
32
+          <th v-if="isShow('置换液流量') && (template_id == 27 ||  template_id == 60)" width="92px">置换液流量(ml/min)</th>
33 33
           <th v-if="isShow('透析液流量')" width="92px">透析液流量(ml/h)</th>
34 34
           <th v-if="isShow('肝素用量余量')" width="92px">肝素用量余量(ml)</th>
35 35
           <th v-if="isShow('抗凝剂')" width="92px">抗凝剂</th>

+ 1 - 2
src/xt_pages/outpatientCharges/chargeDetailManagement.vue View File

@@ -709,7 +709,6 @@ export default {
709 709
               } else {
710 710
                 that.radio = 1
711 711
                 that.getPatientList()
712
-
713 712
                 that.$message({ message: '撤销成功', type: 'success', duration: 5000 })
714 713
               }
715 714
 
@@ -773,7 +772,7 @@ export default {
773 772
               } else {
774 773
                 that.isloading = false
775 774
                 that.isdisabled = false
776
-                that.radio = 2
775
+                // that.radio = 1
777 776
                 that.$message({ message: '上传成功', type: 'success', duration: 5000 })
778 777
                 that.getPatientList()
779 778
               }

+ 1 - 1
src/xt_pages/outpatientCharges/outpatientChargesManagement.vue View File

@@ -151,7 +151,7 @@
151 151
 
152 152
 
153 153
             <el-button size="small" @click="open(5)" type="primary"
154
-                       v-if="this.radio == 2  && this.hisPatientInfo.id > 0 && this.order.id > 0 &&  this.order.order_status == 2">
154
+                       v-if="this.radio == 2">
155 155
               退费
156 156
             </el-button>
157 157