Browse Source

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

陈少旭 1 year ago
parent
commit
3f420314b8

+ 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 - 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
           }