Browse Source

Merge branch '20230223_pc_vue_new_branch' of http://git.shengws.com/csx/Vue_New into 20230223_pc_vue_new_branch

28169 1 year ago
parent
commit
81cd041633

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

@@ -4204,9 +4204,9 @@ export default {
4204 4204
         this.summary = response.data.data.summary;
4205 4205
         this.org_template_info = response.data.data.org_template_info;
4206 4206
 
4207
-        if (this.monitors.length <= 6) {
4208
-          var nl = 6;
4209
-          this.print_length = 6;
4207
+        if (this.monitors.length <= 3) {
4208
+          var nl = 3;
4209
+          this.print_length = 3;
4210 4210
 
4211 4211
           for (let index = 0; index < nl; index++) {
4212 4212
             if (

+ 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
 

+ 3 - 3
src/xt_pages/outpatientDoctorStation/components/deskPrescription.vue View File

@@ -84,9 +84,9 @@
84 84
               </el-form>
85 85
               <div class="tabsBox">
86 86
 
87
-                  <el-button v-if="dayorMonth == 'day'" type="text" class="addTab" @click="addCharges"
88
-                             icon="el-icon-circle-plus">附加收费
89
-                  </el-button>
87
+<!--                  <el-button v-if="dayorMonth == 'day'" type="text" class="addTab" @click="addCharges"-->
88
+<!--                             icon="el-icon-circle-plus">附加收费-->
89
+<!--                  </el-button>-->
90 90
                   <div class="RP" v-if="dayorMonth == 'month'">Rp
91 91
                       <el-date-picker
92 92
                               v-model="start_time"

+ 1 - 1
src/xt_pages/workforce/printOne.vue View File

@@ -664,7 +664,7 @@ export default {
664 664
         for (let i = 0; i < arr.length; i++) {
665 665
           arr[i].name = this.nameSplit(arr[i].name)
666 666
           if (this.hiddenFlag) {
667
-            str += arr[i].name + '&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp '
667
+            str += arr[i].name + '&nbsp&nbsp&nbsp&nbsp'
668 668
           } else {
669 669
             str += arr[i].name + '(' + '上次床位:' + arr[i].order.DeviceNumber.zone.name + '-' + arr[i].order.DeviceNumber.number + '  ' + '血管通路:' + this.getBloodAccess(arr[i].order.blood_access_id) + '  ' + '排班备注:' + arr[i].order.schedule_remark + ')<br/>'
670 670
           }