Browse Source

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

csx 4 years ago
parent
commit
22a1e88c2a

+ 8 - 24
src/pages/main/dialog/MonitDialog.vue View File

@@ -553,37 +553,21 @@ export default {
553 553
         this.today_last_monitor_record = resp.monitor
554 554
 
555 555
         // this.form.operate_time = Date.parse(new Date())
556
-        this.form.operate_time = resp.monitor.operate_time
557
-          ? (resp.monitor.operate_time + 3600) * 1000
558
-          : Date.parse(new Date())
556
+        this.form.operate_time = resp.monitor.operate_time  ? (resp.monitor.operate_time + 3600) * 1000 : Date.parse(new Date())
559 557
         this.form.pulse_frequency = '' // this.last_monitor_record.pulse_frequency;
560
-        this.form.breathing_rated = resp.monitor.breathing_rate
561
-          ? resp.monitor.breathing_rate
562
-          : ''
558
+        this.form.breathing_rated = resp.monitor.breathing_rate ? resp.monitor.breathing_rate : ''
563 559
         this.form.systolic_bp = '' // this.last_monitor_record.systolic_blood_pressure;
564 560
         this.form.diastolic_bp = '' // this.last_monitor_record.diastolic_blood_pressure;
565
-        this.form.blood_flow_volume = resp.monitor.blood_flow_volume
566
-          ? resp.monitor.blood_flow_volume
567
-          : ''
561
+        this.form.blood_flow_volume = resp.monitor.blood_flow_volume ? resp.monitor.blood_flow_volume : ''
568 562
         this.form.venous_pressure = '' // this.last_monitor_record.venous_pressure;
569 563
         this.form.arterial_pressure = '' // this.last_monitor_record.arterial_pressure;
570 564
         this.form.transmembrane_pressure = '' // this.last_monitor_record.transmembrane_pressure;
571
-        this.form.ultrafiltration_rate = resp.monitor.ultrafiltration_rate
572
-          ? resp.monitor.ultrafiltration_rate
573
-          : ''
565
+        this.form.ultrafiltration_rate = resp.monitor.ultrafiltration_rate ? resp.monitor.ultrafiltration_rate : ''
574 566
         this.form.ultrafiltration_volume = resp.monitor.ultrafiltration_volume ? resp.monitor.ultrafiltration_volume : ''
575
-        this.form.sodium_concentration = resp.monitor.sodium_concentration
576
-          ? resp.monitor.sodium_concentration
577
-          : ''
578
-        this.form.dialysate_temperature = resp.monitor.dialysate_temperature
579
-          ? resp.monitor.dialysate_temperature
580
-          : ''
581
-        this.form.temperature = resp.monitor.temperature
582
-          ? resp.monitor.temperature
583
-          : ''
584
-        this.form.replacement_rate = resp.monitor.replacement_rate
585
-          ? resp.monitor.replacement_rate
586
-          : ''
567
+        this.form.sodium_concentration = resp.monitor.sodium_concentration ? resp.monitor.sodium_concentration : ''
568
+        this.form.dialysate_temperature = resp.monitor.dialysate_temperature  ? resp.monitor.dialysate_temperature : ''
569
+        this.form.temperature = resp.monitor.temperature ? resp.monitor.temperature : ''
570
+        this.form.replacement_rate = resp.monitor.replacement_rate ? resp.monitor.replacement_rate : ''
587 571
         this.form.displacement_quantity = '' // this.last_monitor_record.displacement_quantity;
588 572
         this.form.conductivity = ''
589 573
         this.form.displacement_flow_quantity = ''

+ 43 - 4
src/pages/main/template/DialysisPrintOrderSix.vue View File

@@ -194,6 +194,45 @@
194 194
                     <div class="under_line" style="width: 100px;text-align: center;font-weight:600;" v-if="prescription.mode_id==5">
195 195
                       HF
196 196
                     </div>
197
+                    <div class="under_line" style="width: 100px;text-align: center;font-weight:600;" v-if="prescription.mode_id==6">
198
+                      SCUF
199
+                    </div>
200
+                    <div class="under_line" style="width: 100px;text-align: center;font-weight:600;" v-if="prescription.mode_id==7">
201
+                      IUF
202
+                    </div>
203
+                    <div class="under_line" style="width: 100px;text-align: center;font-weight:600;" v-if="prescription.mode_id==8">
204
+                      HFHD
205
+                    </div>
206
+                    <div class="under_line" style="width: 100px;text-align: center;font-weight:600;" v-if="prescription.mode_id==9">
207
+                      HFHD+HP
208
+                    </div>
209
+                    <div class="under_line" style="width: 100px;text-align: center;font-weight:600;" v-if="prescription.mode_id==10">
210
+                      PHF
211
+                    </div>
212
+                    <div class="under_line" style="width: 100px;text-align: center;font-weight:600;" v-if="prescription.mode_id==11">
213
+                      HFR
214
+                    </div>
215
+                    <div class="under_line" style="width: 100px;text-align: center;font-weight:600;" v-if="prescription.mode_id==12">
216
+                      HDF+HP
217
+                    </div>
218
+                    <div class="under_line" style="width: 100px;text-align: center;font-weight:600;" v-if="prescription.mode_id==13">
219
+                      CRRT
220
+                    </div>
221
+                    <div class="under_line" style="width: 100px;text-align: center;font-weight:600;" v-if="prescription.mode_id==14">
222
+                      腹水回输
223
+                    </div>
224
+                    <div class="under_line" style="width: 100px;text-align: center;font-weight:600;" v-if="prescription.mode_id==15">
225
+                      HD前置换
226
+                    </div>
227
+                    <div class="under_line" style="width: 100px;text-align: center;font-weight:600;" v-if="prescription.mode_id==16">
228
+                      HD后置换
229
+                    </div>
230
+                    <div class="under_line" style="width: 100px;text-align: center;font-weight:600;" v-if="prescription.mode_id==17">
231
+                      HDF前置换
232
+                    </div>
233
+                    <div class="under_line" style="width: 100px;text-align: center;font-weight:600;" v-if="prescription.mode_id==18">
234
+                      HDF后置换
235
+                    </div>
197 236
                   </div>
198 237
 
199 238
                   <div class="inline_block" style="margin-left:10px;flex:1;">
@@ -350,7 +389,7 @@
350 389
               <td style="padding: 0; position: relative;" colspan="2">
351 390
                 <table class="inside_table">
352 391
                   <tbody>
353
-                    <tr><td :colspan="(prescription.mode_id==2 || prescription.mode_id==5) ? 12 :11" style="letter-spacing:5px;text-align:center;font-weight:520;font-size:16px;padding: 6px 8px;line-height: 30px;">治疗纪录</td></tr>
392
+                    <tr><td :colspan="(prescription.mode_id==2 || prescription.mode_id==5 || prescription.mode_id== 12) ? 12 :11" style="letter-spacing:5px;text-align:center;font-weight:520;font-size:16px;padding: 6px 8px;line-height: 30px;">治疗纪录</td></tr>
354 393
                     <tr>
355 394
                       <td width="60">时间</td>
356 395
                       <td width="60">血压<br/>(mmHg)</td>
@@ -362,7 +401,7 @@
362 401
                       <td width="60">透析液温度(°C)</td>
363 402
                       <td width="50">电导度<br/>(ms/cm)</td>
364 403
                       <td width="50">超滤量<br/>(ml)</td>
365
-                      <td v-if="prescription.mode_id==2 || prescription.mode_id==5" width="50">置换量<br/>(ml)</td>
404
+                      <td v-if="prescription.mode_id==2 || prescription.mode_id==5 || prescription.mode_id== 12" width="50">置换量<br/>(ml)</td>
366 405
                       <td width="200">病情变化及处理</td>
367 406
 
368 407
                       <!-- <td width="100">时间</td>
@@ -389,7 +428,7 @@
389 428
                       <td>{{monitor.dialysate_temperature?monitor.dialysate_temperature:''}}</td>
390 429
                       <td>{{monitor.sodium_concentration?monitor.sodium_concentration:''}}</td>
391 430
                       <td>{{monitor.ultrafiltration_volume?monitor.ultrafiltration_volume:0}}</td>
392
-                      <td v-if="prescription.mode_id==2 || prescription.mode_id==5" width="50">{{monitor.displacement_quantity?monitor.displacement_quantity:0}}</td>
431
+                      <td v-if="prescription.mode_id==2 || prescription.mode_id==5 || prescription.mode_id== 12" width="50">{{monitor.displacement_quantity?monitor.displacement_quantity:0}}</td>
393 432
                       <td style="line-height:16px;padding:0px;">
394 433
                         <div style="min-height:40px;line-height:40px; overflow:hidden;">
395 434
                           <span style="word-break: break-all;margin:0;line-height:16px;-webkit-line-clamp:3;overflow:visible;display:inline-block;vertical-align:middle;height:auto;">
@@ -411,7 +450,7 @@
411 450
                       <td> </td>
412 451
                       <td> </td>
413 452
                       <td> </td>
414
-                      <td v-if="prescription.mode_id==2 || prescription.mode_id==5" width="50"></td>
453
+                      <td v-if="prescription.mode_id==2 || prescription.mode_id==5 || prescription.mode_id== 12" width="50"></td>
415 454
                       <td style="line-height:16px;padding:0px;"><div style="height:40px;line-height:20px; overflow:hidden;"><span style="word-break: break-all;margin:0;line-height:16px;-webkit-line-clamp:3;overflow:visible;display:inline-block;vertical-align:middle;height:auto;"> </span> </div></td>
416 455
                     </tr>
417 456
                   </tbody>