Explorar el Código

Merge branch 'new_pad_branch' of http://git.shengws.com/zhangbj/xt_pad into new_pad_branch

xiaoming_global hace 4 años
padre
commit
6bbdf429b7

+ 0 - 8
src/pages/main/add_urgent_schedule.vue Ver fichero

387
               this.zone_device_options = []
387
               this.zone_device_options = []
388
               this.origin_schedules = rs.data.data.schedules;
388
               this.origin_schedules = rs.data.data.schedules;
389
               this.patients = rs.data.data.patients;
389
               this.patients = rs.data.data.patients;
390
-              console.log(this.patients)
391
               this.modes = rs.data.data.modes;
390
               this.modes = rs.data.data.modes;
392
               this.origin_device_numbers = rs.data.data.device_numbers;
391
               this.origin_device_numbers = rs.data.data.device_numbers;
393
 
392
 
394
 
393
 
395
-              if (this.patients.length > 0) {
396
-                this.patient_id = this.patients[0].id;
397
-              }
398
-              if (this.modes.length > 0) {
399
-                this.mode_id = this.modes[0].id;
400
-              }
401
-
402
               var zone_device_map = {};
394
               var zone_device_map = {};
403
               for (
395
               for (
404
                 let index = 0;
396
                 let index = 0;

+ 3 - 6
src/pages/main/dialog/modify_order/modify_order_form.vue Ver fichero

110
 
110
 
111
             <div class="cell" v-show="order.parent_id == 0">
111
             <div class="cell" v-show="order.parent_id == 0">
112
               <label>医嘱嘱托</label>
112
               <label>医嘱嘱托</label>
113
-              <input
114
-                class="inputBox"
115
-                style="width:100%"
116
-                v-model="order.remark"
117
-              />
113
+              <input class="inputBox" style="width:100%" v-model="order.remark" />
118
             </div>
114
             </div>
119
             <!-- </div> -->
115
             <!-- </div> -->
120
           </div>
116
           </div>
252
   computed: {
248
   computed: {
253
     dialog_title: function() {
249
     dialog_title: function() {
254
       if (this.mode == 1) {
250
       if (this.mode == 1) {
255
-        return "修改医嘱";
251
+        return "修改子药";
256
       }
252
       }
257
     }
253
     }
258
   },
254
   },
397
     float: left;
393
     float: left;
398
     width: 4.5rem;
394
     width: 4.5rem;
399
     margin: 0.35rem 0.3rem 0.1rem 0.4rem;
395
     margin: 0.35rem 0.3rem 0.1rem 0.4rem;
396
+    padding-bottom: 3px;
400
     label {
397
     label {
401
       display: block;
398
       display: block;
402
       height: 0.9rem;
399
       height: 0.9rem;

+ 4 - 16
src/pages/main/dialog/new_order/order_form.vue Ver fichero

20
               <label>药品规格</label>
20
               <label>药品规格</label>
21
               <!--<input class="inputBox" style="width:62.5%" v-model="order.advice_desc">-->
21
               <!--<input class="inputBox" style="width:62.5%" v-model="order.advice_desc">-->
22
 
22
 
23
-              <input
24
-                class="inputBox"
25
-                style="width:60%"
26
-                v-model="order.advice_desc"
27
-              />
23
+              <input class="inputBox" style="width:60%" v-model="order.advice_desc" />
28
               <input
24
               <input
29
                 type="text"
25
                 type="text"
30
                 placeholder="单位"
26
                 placeholder="单位"
57
 
53
 
58
             <div class="cell">
54
             <div class="cell">
59
               <label>单次用量</label>
55
               <label>单次用量</label>
60
-              <input
61
-                type="number"
62
-                class="inputBox"
63
-                style="width:62.5%"
64
-                v-model="order.single_dose"
65
-              />
56
+              <input type="number" class="inputBox" style="width:62.5%" v-model="order.single_dose" />
66
               <input
57
               <input
67
                 type="text"
58
                 type="text"
68
                 placeholder="单位"
59
                 placeholder="单位"
98
 
89
 
99
             <div class="cell" v-show="order.parent_id == 0">
90
             <div class="cell" v-show="order.parent_id == 0">
100
               <label>医嘱嘱托</label>
91
               <label>医嘱嘱托</label>
101
-              <input
102
-                class="inputBox"
103
-                style="width:100%"
104
-                v-model="order.remark"
105
-              />
92
+              <input class="inputBox" style="width:100%" v-model="order.remark" />
106
             </div>
93
             </div>
107
           </div>
94
           </div>
108
         </div>
95
         </div>
443
     float: left;
430
     float: left;
444
     width: 4.5rem;
431
     width: 4.5rem;
445
     margin: 0.35rem 0.3rem 0.1rem 0.4rem;
432
     margin: 0.35rem 0.3rem 0.1rem 0.4rem;
433
+    padding-bottom: 3px;
446
     label {
434
     label {
447
       display: block;
435
       display: block;
448
       height: 0.9rem;
436
       height: 0.9rem;

+ 1 - 1
src/pages/main/dialog/subMenu/MsgTip.vue Ver fichero

78
       this.predialysis.weight_before > 0 &&
78
       this.predialysis.weight_before > 0 &&
79
       this.last_record.weight_after > 0
79
       this.last_record.weight_after > 0
80
     ) {
80
     ) {
81
-      add_weight = parseFloat(
81
+      this.add_weight = parseFloat(
82
         this.predialysis.weight_before - this.last_record.weight_after
82
         this.predialysis.weight_before - this.last_record.weight_after
83
       ).toFixed(2);
83
       ).toFixed(2);
84
     }
84
     }

+ 17 - 16
src/pages/main/template/DialysisPrintOrderSix.vue Ver fichero

583
                   </div>
583
                   </div>
584
                   次/分
584
                   次/分
585
                 </div>
585
                 </div>
586
-                <div class="inline_block" style="margin-left:10px;flex:1;">
586
+                <div class="inline_block" style="margin-left:10px;flex:1.5;">
587
                   BP:
587
                   BP:
588
                   <div class="under_line" style="width: 50px;text-align: center;">
588
                   <div class="under_line" style="width: 50px;text-align: center;">
589
                     {{afterdialysis.systolic_blood_pressure?afterdialysis.systolic_blood_pressure:'/'}}
589
                     {{afterdialysis.systolic_blood_pressure?afterdialysis.systolic_blood_pressure:'/'}}
594
                   </div>
594
                   </div>
595
                   mmHg
595
                   mmHg
596
                 </div>
596
                 </div>
597
+                <div class="inline_block" style="margin-left:10px;flex:1.5;">
598
+                  实际治疗时间:
599
+                  <div class="under_line" style="width: 20px;text-align: center">
600
+                    {{afterdialysis.actual_treatment_hour?afterdialysis.actual_treatment_hour:'/'}}
601
+                  </div>
602
+                  h
603
+                  <div class="under_line" style="width: 20px;text-align: center">
604
+                    {{afterdialysis.actual_treatment_minute?afterdialysis.actual_treatment_minute:0}}
605
+                  </div>
606
+                  min
607
+                </div>
597
               </div>
608
               </div>
598
               <div class="row" style="padding: 2px 0;line-height:23px;display:flex;">
609
               <div class="row" style="padding: 2px 0;line-height:23px;display:flex;">
599
-                <div class="inline_block" style="flex:1;">
610
+                <div class="inline_block" style="flex:2;">
600
                   凝血程度:
611
                   凝血程度:
601
-                  <div class="under_line" style="width: 100px;text-align: center">
612
+                  <div class="under_line" style="width: 200px;text-align: center">
602
                     {{afterdialysis.cruor?afterdialysis.cruor:'/'}}
613
                     {{afterdialysis.cruor?afterdialysis.cruor:'/'}}
603
                   </div>
614
                   </div>
604
                 </div>
615
                 </div>
605
-                <div class="inline_block" style="flex:1;">
616
+                <div class="inline_block" style="flex:2;">
606
                   内瘘:
617
                   内瘘:
607
-                  <div class="under_line" style="width: 70px;text-align: center">
618
+                  <div class="under_line" style="width: 200px;text-align: center">
608
                     {{afterdialysis.internal_fistula?afterdialysis.internal_fistula:'/'}}
619
                     {{afterdialysis.internal_fistula?afterdialysis.internal_fistula:'/'}}
609
                   </div>
620
                   </div>
610
                 </div>
621
                 </div>
614
                     {{afterdialysis.catheter?afterdialysis.catheter:'/'}}
625
                     {{afterdialysis.catheter?afterdialysis.catheter:'/'}}
615
                   </div>
626
                   </div>
616
                 </div>
627
                 </div>
617
-                <div class="inline_block" style="flex:1;">
618
-                  实际治疗时间:
619
-                  <div class="under_line" style="width: 20px;text-align: center">
620
-                    {{afterdialysis.actual_treatment_hour?afterdialysis.actual_treatment_hour:'/'}}
621
-                  </div>
622
-                  h
623
-                  <div class="under_line" style="width: 20px;text-align: center">
624
-                    {{afterdialysis.actual_treatment_minute?afterdialysis.actual_treatment_minute:0}}
625
-                  </div>
626
-                  min
627
-                </div>
628
+                
628
               </div>
629
               </div>
629
 
630
 
630
               <div class="row" style="padding: 2px 0;line-height:23px;display:flex;">
631
               <div class="row" style="padding: 2px 0;line-height:23px;display:flex;">