Browse Source

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

XMLWAN 3 years ago
parent
commit
8082faed96

+ 8 - 8
src/xt_pages/dialysis/batch_print/batch_print_order_fifteen.vue View File

56
                                     <label-box showValue="住院" :isChecked="record.receive_assessment.condition == 1 ? true : false"></label-box>
56
                                     <label-box showValue="住院" :isChecked="record.receive_assessment.condition == 1 ? true : false"></label-box>
57
                                 </td>
57
                                 </td>
58
                                 <td style="padding-left:5px;width:25%;text-align:left;border-left:none;border-right:none;">其他</td>
58
                                 <td style="padding-left:5px;width:25%;text-align:left;border-left:none;border-right:none;">其他</td>
59
-                                
59
+
60
                             </tr>
60
                             </tr>
61
                         </table>
61
                         </table>
62
                         <table class="table-box" border="1" style="border:none;border-color:#000;border-collapse: collapse;">
62
                         <table class="table-box" border="1" style="border:none;border-color:#000;border-collapse: collapse;">
221
                                     </span>
221
                                     </span>
222
                                 </span>
222
                                 </span>
223
                             <!-- </span> -->
223
                             <!-- </span> -->
224
-                            
225
-                            
224
+
225
+
226
                         </span>
226
                         </span>
227
                     </td>
227
                     </td>
228
                     <td>
228
                     <td>
282
                         <p style="height:20px;line-height:20px">电导率</p>
282
                         <p style="height:20px;line-height:20px">电导率</p>
283
                         <p style="height:20px;line-height:20px">ms/cm</p>
283
                         <p style="height:20px;line-height:20px">ms/cm</p>
284
                     </th>
284
                     </th>
285
-                    
285
+
286
                     <th style="min-width:60px">
286
                     <th style="min-width:60px">
287
                         <p style="height:20px;line-height:20px">温度</p>
287
                         <p style="height:20px;line-height:20px">温度</p>
288
                         <p style="height:20px;line-height:20px">℃</p>
288
                         <p style="height:20px;line-height:20px">℃</p>
332
                         </span>
332
                         </span>
333
                     </td>
333
                     </td>
334
 
334
 
335
-                    
335
+
336
                     </tr>
336
                     </tr>
337
                 </table>
337
                 </table>
338
                 <table class="print-table" border="1">
338
                 <table class="print-table" border="1">
444
                     </tr>
444
                     </tr>
445
                     </tbody>
445
                     </tbody>
446
                 </table>
446
                 </table>
447
-                
447
+
448
                 <table class="print-table" border="1">
448
                 <table class="print-table" border="1">
449
-                    
449
+
450
                 </table>
450
                 </table>
451
 
451
 
452
 
452
 
575
     this.precaution_arr = getDataConfig('hemodialysis', 'precaution')
575
     this.precaution_arr = getDataConfig('hemodialysis', 'precaution')
576
   },
576
   },
577
   mounted() {
577
   mounted() {
578
-    console.log(this.records)
578
+    // console.log(this.records)
579
     this.loading = true
579
     this.loading = true
580
     var ids = this.$store.getters.temp_params.batch_print_dialysis_record_ids
580
     var ids = this.$store.getters.temp_params.batch_print_dialysis_record_ids
581
     if (ids.length == 0) {
581
     if (ids.length == 0) {

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

35
         <span v-else>出血部位:无</span>
35
         <span v-else>出血部位:无</span>
36
       </div>
36
       </div>
37
       <div class="lineHeight">
37
       <div class="lineHeight">
38
-          <div class="widthLength25">是否跌倒:暂无</div>
38
+          <div class="widthLength25">是否跌倒:{{ receiverTreatmentAccess.tumble == 1 ? '是' : '否' }}</div>
39
           <div class="widthLength25">跌倒预防措施:{{ receiverTreatmentAccess.precaution ? receiverTreatmentAccess.precaution : '/' }}</div>
39
           <div class="widthLength25">跌倒预防措施:{{ receiverTreatmentAccess.precaution ? receiverTreatmentAccess.precaution : '/' }}</div>
40
           <div class="widthLength25">跌倒风险:
40
           <div class="widthLength25">跌倒风险:
41
               <span v-if="receiverTreatmentAccess.danger_level == 1">无</span>
41
               <span v-if="receiverTreatmentAccess.danger_level == 1">无</span>
97
           </div>
97
           </div>
98
           <div class="widthLength25">T:{{ afterdialysis.temperature ? afterdialysis.temperature : '' }}℃</div>
98
           <div class="widthLength25">T:{{ afterdialysis.temperature ? afterdialysis.temperature : '' }}℃</div>
99
           <div class="widthLength25">意识:
99
           <div class="widthLength25">意识:
100
-
100
+            <span v-for="(item, index) in consciousness_arr" :key="index">
101
+              <span v-if="afterdialysis.consciousness == item.id">{{ item.name }}</span>
102
+            </span>
103
+          </div>
104
+          <div class="widthLength25">跌倒风险:
105
+            <span v-if="afterdialysis.fallrisk == 1">无</span>
106
+            <span v-if="afterdialysis.fallrisk == 2">低风险</span>
107
+            <span v-if="afterdialysis.fallrisk == 3">中度风险</span>
108
+            <span v-if="afterdialysis.fallrisk == 4">高风险</span>
101
           </div>
109
           </div>
102
-          <div class="widthLength25">跌倒风险:</div>
103
       </div>
110
       </div>
104
       <div class="lineHeight">
111
       <div class="lineHeight">
105
           <div class="widthLength25">实际进食量:{{ afterdialysis.dialysis_during ? afterdialysis.dialysis_during : '' }} g</div>
112
           <div class="widthLength25">实际进食量:{{ afterdialysis.dialysis_during ? afterdialysis.dialysis_during : '' }} g</div>