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
         this.summary = response.data.data.summary;
4204
         this.summary = response.data.data.summary;
4205
         this.org_template_info = response.data.data.org_template_info;
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
           for (let index = 0; index < nl; index++) {
4211
           for (let index = 0; index < nl; index++) {
4212
             if (
4212
             if (

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

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

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

151
 
151
 
152
 
152
 
153
             <el-button size="small" @click="open(5)" type="primary"
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
             </el-button>
156
             </el-button>
157
 
157
 

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

84
               </el-form>
84
               </el-form>
85
               <div class="tabsBox">
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
                   <div class="RP" v-if="dayorMonth == 'month'">Rp
90
                   <div class="RP" v-if="dayorMonth == 'month'">Rp
91
                       <el-date-picker
91
                       <el-date-picker
92
                               v-model="start_time"
92
                               v-model="start_time"

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

664
         for (let i = 0; i < arr.length; i++) {
664
         for (let i = 0; i < arr.length; i++) {
665
           arr[i].name = this.nameSplit(arr[i].name)
665
           arr[i].name = this.nameSplit(arr[i].name)
666
           if (this.hiddenFlag) {
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
           } else {
668
           } else {
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/>'
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
           }