Explorar el Código

Merge remote-tracking branch 'origin/20230223_pad_vue_new_branch' into 20230223_pad_vue_new_branch

yq1 hace 7 meses
padre
commit
f2e5514f14

+ 1 - 1
build/cdn.json Ver fichero

@@ -1,3 +1,3 @@
1 1
 {
2
-  "version": "2999.999.13670"
2
+  "version": "2999.999.13672"
3 3
 }

+ 6 - 0
src/pages/main/PatientBox.vue Ver fichero

@@ -154,6 +154,12 @@
154 154
                 >
155 155
               </p>
156 156
 
157
+              <p v-if="$store.getters.user.template_info.org_id == 10693">
158
+                干体重(kg):
159
+                {{patient.assessment_before_dislysis? patient.assessment_before_dislysis.dry_weight: ""}}
160
+                
161
+              </p>
162
+              
157 163
               <p
158 164
                 v-if="
159 165
                   $store.getters.user.template_info.org_id == 9671 ||

+ 11 - 0
src/pages/main/newActionBar/assessmentAfter.vue Ver fichero

@@ -1612,6 +1612,17 @@ export default {
1612 1612
             if(ParamsQuery.displace_liqui_value!=undefined){
1613 1613
               ParamsQuery.displace_liqui_value = ParamsQuery.displace_liqui_value.toString()
1614 1614
             }
1615
+             
1616
+            console.log("透前体重",this.predialysis)
1617
+            if(this.$store.getters.user.template_info.org_id == 10693){
1618
+              if(ParamsQuery.weight_after == 0){
1619
+                 if(this.predialysis!=null){
1620
+                  ParamsQuery.weight_after = this.predialysis.dry_weight
1621
+                 }
1622
+              }
1623
+            }
1624
+
1625
+          
1615 1626
             console.log("param2332233232",ParamsQuery)
1616 1627
             commitAssessmentAfterDislysis(ParamsQuery).then(response => {
1617 1628
               console.log("hhhh2h2h2h",response.data.state)

+ 28 - 18
src/pages/main/newActionBar/dialysisPrescription.vue Ver fichero

@@ -91,7 +91,9 @@
91 91
                 ? predialysis.additional_weight
92 92
                 : "--"
93 93
             }}Kg</span><br/>
94
-          <span v-if="last_record!=undefined && $store.getters.user.template_info.org_id !=10599">上次透后体重:{{last_record.weight_after?last_record.weight_after: "--"}}Kg</span></br>
94
+          <span v-if="last_record!=undefined && $store.getters.user.template_info.org_id !=10599  && $store.getters.user.template_info.org_id !=10702">上次透后体重:{{last_record.weight_after?last_record.weight_after: "--"}}Kg</span></br>
95
+          <span v-if="last_record!=undefined && $store.getters.user.template_info.org_id ==10702">上次透后体重:{{(last_record.weight_after-last_record.additional_weight).toFixed(2)?(last_record.weight_after-last_record.additional_weight).toFixed(2): "--"}}Kg</span></br>
96
+
95 97
 
96 98
           <span v-if="$store.getters.user.template_info.org_id == 10551 || $store.getters.user.template_info.org_id == 10612 || $store.getters.user.template_info.org_id == 10622 &&predialysis!=undefined&&predialysis.weight_before>0 &&dialysisPrescription!=undefined && dialysisPrescription.target_ultrafiltration>0">目标脱水量百分比:{{ (((dialysisPrescription.target_ultrafiltration)/predialysis.dry_weight)*100).toFixed(2)  }}%</span>
97 99
           <span v-if="$store.getters.user.template_info.org_id == 10249 || $store.getters.user.template_info.org_id == 10622   &&predialysis!=undefined&&predialysis.weight_before>0 &&dialysisPrescription!=undefined && dialysisPrescription.target_ultrafiltration>0">目标脱水量百分比:{{ (((dialysisPrescription.target_ultrafiltration/1000)/predialysis.dry_weight)*100).toFixed(2)  }}%</span>
@@ -197,8 +199,8 @@
197 199
         </van-field>
198 200
         <van-field v-model="dialysisPrescription.prescription_water" @focus="inputFocus" v-if="isShow('处方脱水量')" type="number" input-align="right">
199 201
             <template #label>
200
-                <span v-if=" $store.getters.user.template_info.org_id!=10597 && $store.getters.user.template_info.org_id!=10612 && $store.getters.user.template_info.org_id!=10598 && $store.getters.user.template_info.org_id!=10679 && $store.getters.user.template_info.org_id!=10677 && $store.getters.user.template_info.org_id!=10622&& $store.getters.user.template_info.org_id!=10702">处方脱水量(ml)</span>
201
-                <span  v-if=" $store.getters.user.template_info.org_id==10597 ||  $store.getters.user.template_info.org_id==10612  ||  $store.getters.user.template_info.org_id==10598 ||$store.getters.user.template_info.org_id==10679 ||$store.getters.user.template_info.org_id==10677 || $store.getters.user.template_info.org_id==10622  || $store.getters.user.template_info.org_id==10702">处方脱水量(L)</span>
202
+                <span v-if=" $store.getters.user.template_info.org_id!=10597 && $store.getters.user.template_info.org_id!=10612 && $store.getters.user.template_info.org_id!=10598 && $store.getters.user.template_info.org_id!=10679 && $store.getters.user.template_info.org_id!=10677 && $store.getters.user.template_info.org_id!=10622&& $store.getters.user.template_info.org_id!=10702 && $store.getters.user.template_info.org_id!=10635">处方脱水量(ml)</span>
203
+                <span  v-if=" $store.getters.user.template_info.org_id==10597 ||  $store.getters.user.template_info.org_id==10612  ||  $store.getters.user.template_info.org_id==10598 ||$store.getters.user.template_info.org_id==10679 ||$store.getters.user.template_info.org_id==10677 || $store.getters.user.template_info.org_id==10622  || $store.getters.user.template_info.org_id==10702 || $store.getters.user.template_info.org_id==10635">处方脱水量(L)</span>
202 204
             </template>
203 205
          </van-field>
204 206
 
@@ -397,10 +399,10 @@
397 399
                     dialysisPrescription.anticoagulant != 1 &&
398 400
                     dialysisPrescription.anticoagulant != 12 && isShow_title('首剂')"
399 401
         >
400
-           <template #label v-if="$store.getters.user.template_info.org_id != 10101 && $store.getters.user.template_info.org_id != 10346  && $store.getters.user.template_info.template_id != 45 && $store.getters.user.template_info.template_id != 54  && $store.getters.user.template_info.org_id != 10340  && $store.getters.user.template_info.org_id != 10432 && $store.getters.user.template_info.org_id != 10441  && $store.getters.user.template_info.org_id != 10445 && $store.getters.user.template_info.org_id!=10447&& $store.getters.user.template_info.org_id!=9829 && $store.getters.user.template_info.org_id!=10440 && $store.getters.user.template_info.org_id!=10469&& $store.getters.user.template_info.org_id!=10471 && $store.getters.user.template_info.org_id!=10495 && $store.getters.user.template_info.org_id!=10375 && $store.getters.user.template_info.org_id!=10223 && $store.getters.user.template_info.org_id!=10551 && $store.getters.user.template_info.org_id!=9882 && $store.getters.user.template_info.org_id!=10206&& $store.getters.user.template_info.org_id!=10580&& $store.getters.user.template_info.org_id!=10600&& $store.getters.user.template_info.org_id!=10587&& $store.getters.user.template_info.org_id!=10599&& $store.getters.user.template_info.org_id!=10597 && $store.getters.user.template_info.org_id!=10679">
402
+           <template #label v-if="$store.getters.user.template_info.org_id != 10101 && $store.getters.user.template_info.org_id != 10346  && $store.getters.user.template_info.template_id != 45 && $store.getters.user.template_info.template_id != 54  && $store.getters.user.template_info.org_id != 10340  && $store.getters.user.template_info.org_id != 10432 && $store.getters.user.template_info.org_id != 10441  && $store.getters.user.template_info.org_id != 10445 && $store.getters.user.template_info.org_id!=10447&& $store.getters.user.template_info.org_id!=9829 && $store.getters.user.template_info.org_id!=10440 && $store.getters.user.template_info.org_id!=10469&& $store.getters.user.template_info.org_id!=10471 && $store.getters.user.template_info.org_id!=10495 && $store.getters.user.template_info.org_id!=10375 && $store.getters.user.template_info.org_id!=10223 && $store.getters.user.template_info.org_id!=10551 && $store.getters.user.template_info.org_id!=9882 && $store.getters.user.template_info.org_id!=10206&& $store.getters.user.template_info.org_id!=10580&& $store.getters.user.template_info.org_id!=10600&& $store.getters.user.template_info.org_id!=10587&& $store.getters.user.template_info.org_id!=10599&& $store.getters.user.template_info.org_id!=10597 && $store.getters.user.template_info.org_id!=10679 && $store.getters.user.template_info.org_id!=10510 && $store.getters.user.template_info.org_id!=10702">
401 403
                       <span v-if="dialysisPrescription.anticoagulant == 0 || dialysisPrescription.anticoagulant == -2">首剂(mg)</span>
402 404
 
403
-                      <span v-if="dialysisPrescription.anticoagulant == 2 && $store.getters.user.template_info.template_id != 13 && $store.getters.user.template_info.template_id != 21 && $store.getters.user.template_info.template_id != 23 && $store.getters.user.template_info.template_id != 40 && $store.getters.user.template_info.template_id != 41  && $store.getters.user.template_info.template_id != 6 && $store.getters.user.template_info.template_id != 38 && $store.getters.user.template_info.template_id != 47 && $store.getters.user.template_info.template_id != 54 && $store.getters.user.template_info.org_id != 10234 && $store.getters.user.template_info.org_id !=10495 && $store.getters.user.template_info.org_id !=10375 && $store.getters.user.template_info.org_id !=10580 ||  $store.getters.user.template_info.org_id ==9538 || $store.getters.user.template_info.org_id !=10340 || $store.getters.user.template_info.org_id !=10432  || $store.getters.user.template_info.org_id !=9829|| $store.getters.user.template_info.org_id !=10679   ">首剂
405
+                      <span v-if="dialysisPrescription.anticoagulant == 2 && $store.getters.user.template_info.template_id != 13 && $store.getters.user.template_info.template_id != 21 && $store.getters.user.template_info.template_id != 23 && $store.getters.user.template_info.template_id != 40 && $store.getters.user.template_info.template_id != 41  && $store.getters.user.template_info.template_id != 6 && $store.getters.user.template_info.template_id != 38 && $store.getters.user.template_info.template_id != 47 && $store.getters.user.template_info.template_id != 54 && $store.getters.user.template_info.org_id != 10234 && $store.getters.user.template_info.org_id !=10495 && $store.getters.user.template_info.org_id !=10375 && $store.getters.user.template_info.org_id !=10580 ||  $store.getters.user.template_info.org_id ==9538 || $store.getters.user.template_info.org_id !=10340 || $store.getters.user.template_info.org_id !=10432  || $store.getters.user.template_info.org_id !=9829|| $store.getters.user.template_info.org_id !=10679 || $store.getters.user.template_info.org_id !=10510   ">首剂
404 406
                         <span v-if="$store.getters.user.template_info.org_id == 9538">(u)</span>
405 407
                         <span v-if="$store.getters.user.template_info.org_id != 9538">(iu)</span>
406 408
                       </span>
@@ -427,8 +429,8 @@
427 429
 
428 430
                   <template #label v-else>
429 431
                     <span v-if="dialysisPrescription.anticoagulant == 2 || dialysisPrescription.anticoagulant == 4 || dialysisPrescription.anticoagulant == 17 ">首剂(mg)</span>
430
-
431
-                    <span v-else>首剂(iu)</span>
432
+                    <span v-if="dialysisPrescription.anticoagulant == 13 || dialysisPrescription.anticoagulant == 11">首剂(AXaIU)</span>
433
+                    <span v-if="dialysisPrescription.anticoagulant != 2 && dialysisPrescription.anticoagulant != 4  && dialysisPrescription.anticoagulant != 13 && dialysisPrescription.anticoagulant != 17  && dialysisPrescription.anticoagulant != 11">首剂(iu)</span>
432 434
                </template>
433 435
         </van-field>
434 436
 
@@ -464,7 +466,9 @@
464 466
               $store.getters.user.template_info.org_id!=10587 &&
465 467
               $store.getters.user.template_info.org_id!=10599 &&
466 468
               $store.getters.user.template_info.org_id!=10597 &&
467
-              $store.getters.user.template_info.org_id!=10679
469
+              $store.getters.user.template_info.org_id!=10679 &&
470
+              $store.getters.user.template_info.org_id!=10702 &&
471
+              $store.getters.user.template_info.org_id!=10510
468 472
 
469 473
             "
470 474
           >
@@ -499,7 +503,8 @@
499 503
                   $store.getters.user.template_info.org_id!=10587 &&
500 504
                   $store.getters.user.template_info.org_id!=10599 &&
501 505
                   $store.getters.user.template_info.org_id!=10597 &&
502
-                  $store.getters.user.template_info.org_id!=10679
506
+                  $store.getters.user.template_info.org_id!=10679 &&
507
+                  $store.getters.user.template_info.org_id!=10510
503 508
                   )
504 509
               "
505 510
             >
@@ -535,7 +540,8 @@
535 540
                   $store.getters.user.template_info.org_id ==10587  ||
536 541
                   $store.getters.user.template_info.org_id ==10599  ||
537 542
                   $store.getters.user.template_info.org_id==10597   ||
538
-                  $store.getters.user.template_info.org_id==10679
543
+                  $store.getters.user.template_info.org_id==10679 ||
544
+                  $store.getters.user.template_info.org_id==10510
539 545
                   )
540 546
               "
541 547
               >维持(mg/h)</span
@@ -572,7 +578,8 @@
572 578
                   $store.getters.user.template_info.org_id == 10495 ||
573 579
                   $store.getters.user.template_info.org_id == 10375 ||
574 580
                   $store.getters.user.template_info.org_id == 10551 ||
575
-                  $store.getters.user.template_info.org_id == 10679
581
+                  $store.getters.user.template_info.org_id == 10679 ||
582
+                  $store.getters.user.template_info.org_id == 10510
576 583
 
577 584
                 "
578 585
                 >维持(mg/h)</span
@@ -594,10 +601,9 @@
594 601
             >
595 602
           </template>
596 603
           <template #label v-else>
597
-            <span v-if="dialysisPrescription.anticoagulant == 2 || dialysisPrescription.anticoagulant == 4"
598
-              >维持(mg/h)</span
599
-            >
600
-            <span v-else>维持(iu/h)</span>
604
+            <span v-if="dialysisPrescription.anticoagulant == 2 || dialysisPrescription.anticoagulant == 4 || dialysisPrescription.anticoagulant == 17">维持(mg/h)</span>
605
+            <span v-if="dialysisPrescription.anticoagulant ==11 || dialysisPrescription.anticoagulant == 13">维持(AXaIU)</span>
606
+            <span v-if="dialysisPrescription.anticoagulant != 2 && dialysisPrescription.anticoagulant != 4  && dialysisPrescription.anticoagulant != 13 && dialysisPrescription.anticoagulant != 17  && dialysisPrescription.anticoagulant != 11">维持(iu/h)</span>
601 607
           </template>
602 608
         </van-field>
603 609
 
@@ -637,8 +643,10 @@
637 643
               $store.getters.user.template_info.org_id!=10600 &&
638 644
               $store.getters.user.template_info.org_id!=10587 &&
639 645
               $store.getters.user.template_info.org_id !=10599 &&
640
-              $store.getters.user.template_info.org_id!=10597  &&
641
-              $store.getters.user.template_info.org_id!=10679
646
+              $store.getters.user.template_info.org_id!=10597 &&
647
+              $store.getters.user.template_info.org_id!=10679 &&
648
+              $store.getters.user.template_info.org_id!=10702 &&
649
+              $store.getters.user.template_info.org_id!=10510
642 650
             "
643 651
           >
644 652
             <span
@@ -679,6 +687,7 @@
679 687
                   $store.getters.user.template_info.org_id == 10495 ||
680 688
                   $store.getters.user.template_info.org_id == 10375 ||
681 689
                   $store.getters.user.template_info.org_id == 10679 ||
690
+                  $store.getters.user.template_info.org_id == 10510 ||
682 691
                   $store.getters.user.template_info.org_id == 10551 ||
683 692
                   $store.getters.user.template_info.template_id == 21 ||
684 693
                   $store.getters.user.template_info.template_id == 23 ||
@@ -730,7 +739,8 @@
730 739
           </template>
731 740
           <template #label v-else>
732 741
             <span v-if="dialysisPrescription.anticoagulant == 2 || dialysisPrescription.anticoagulant == 4 || dialysisPrescription.anticoagulant == 17">总量(mg)</span>
733
-            <span v-else>总量(iu)</span>
742
+            <span v-if="dialysisPrescription.anticoagulant == 11 || dialysisPrescription.anticoagulant == 13">总量(AXaIU)</span>
743
+            <span v-if="dialysisPrescription.anticoagulant != 2 && dialysisPrescription.anticoagulant != 4  && dialysisPrescription.anticoagulant != 13 && dialysisPrescription.anticoagulant != 17  && dialysisPrescription.anticoagulant != 11">总量(iu)</span>
734 744
           </template>
735 745
         </van-field>
736 746
 

+ 7 - 3
src/pages/main/newActionBar/doubleCheck.vue Ver fichero

@@ -39,7 +39,11 @@
39 39
                       <van-checkbox name="e">首剂:<span v-if="prescription_prop!=null">{{prescription_prop.anticoagulant_shouji}}</span></van-checkbox>
40 40
                       <van-checkbox name="f">维持:<span v-if="prescription_prop!=null">{{prescription_prop.anticoagulant_weichi}}</span></van-checkbox>
41 41
                       <van-checkbox name="g">总量:<span v-if="prescription_prop!=null">{{prescription_prop.anticoagulant_zongliang}}</span></van-checkbox>
42
-                      <van-checkbox name="h">置换液:<span v-if="prescription_prop!=null">{{prescription_prop.displace_liqui_part?prescription_prop.displace_liqui_part:""}}</span></van-checkbox>
42
+                      <van-checkbox name="h">置换液:<span v-if="prescription_prop!=null">
43
+                        <span v-if="prescription_prop.displace_liqui_part==1">前稀释</span> 
44
+                        <span v-if="prescription_prop.displace_liqui_part==2">后稀释</span> 
45
+                      </span>
46
+                      </van-checkbox>
43 47
                       <van-checkbox name="i">置换量:<span v-if="prescription_prop!=null">{{prescription_prop.replacement_total?prescription_prop.replacement_total:""}}</span></van-checkbox>
44 48
                       <van-checkbox name="j">处方血流量:<span v-if="prescription_prop!=null">{{prescription_prop.blood_flow_volume?prescription_prop.blood_flow_volume:""}}</span></van-checkbox>
45 49
                       <van-checkbox name="k">透析液流量:<span v-if="prescription_prop!=null">{{prescription_prop.dialysate_flow?prescription_prop.dialysate_flow:''}}</span></van-checkbox>
@@ -387,7 +391,7 @@ created () {
387 391
     this.doubleReview.creater = this.record.creater
388 392
     this.doubleReview.updated_time = this.record.updated_time
389 393
     this.doubleReview.modifier = this.record.modifier
390
-  
394
+
391 395
     this.doubleReview.check_time = this.record.check_time
392 396
     this.doubleReview.first_check_time = this.record.first_check_time
393 397
     this.doubleReview.employee_number = this.record.employee_number
@@ -409,7 +413,7 @@ created () {
409 413
       this.modifier = this.$store.getters.user.admin.id
410 414
       this.doubleReview.modifier = this.$store.getters.user.admin.id
411 415
     }
412
- 
416
+
413 417
   }
414 418
 
415 419
   var date = this.$route.query && this.$route.query.date

+ 31 - 18
src/pages/main/newActionBar/monitoring.vue Ver fichero

@@ -44,8 +44,8 @@
44 44
                   <th width="60px" style="width:6%"> 静脉压/动脉压 <br />({{monitorRecords[0]&&monitorRecords[0]['venous_pressure_type'] == 2 ? 'kpa' : 'mmHg'}}) </th>
45 45
                   <th v-if="isShow('跨膜压')" width="40px" style="width:6%"> 跨膜压 <br />({{monitorRecords[0]&&monitorRecords[0]['transmembrane_pressure_type'] == 2 ? 'kpa' : 'mmHg'}}) </th>
46 46
                   <th v-if="isShow('跨膜压1')" width="40px" style="width:6%"> 跨膜压 <br />({{monitorRecords[0]&&monitorRecords[0]['transmembrane_pressure_type'] == 2 ? 'kpa' : 'mmHg'}}) </th>
47
-                  <th v-if="isShow('超滤量') && (template_id ==5 || template_id ==6 || template_id == 10 || template_id == 11 || template_id == 12 || template_id == 13 || template_id == 17 || template_id == 18 || template_id == 19 || template_id == 20 || template_id == 21 || template_id == 22 || template_id == 23 || template_id == 24 || template_id == 26 || org_id == 9555 || template_id == 27 || template_id == 29 || template_id == 30 || template_id == 31 || template_id == 32 || template_id == 34 || template_id == 35 || template_id == 36 || template_id == 38 || template_id == 40 || template_id == 9 || template_id == 41 || template_id == 43 || template_id == 44 || template_id == 47 || template_id == 46 || template_id == 48 || template_id == 53 || template_id == 54 || template_id == 65 || template_id == 56 || template_id == 60 || org_id == 10340 || org_id == 10387 || org_id == 10432 || org_id == 10445 || org_id == 10375 || org_id == 10480 || org_id == 10551 || org_id == 10485 || org_id ==10597 || org_id ==10599 || org_id ==10612 || org_id ==10580 || org_id ==10629 || org_id ==10617 || org_id==10677 || org_id==10667 || org_id==10693 || org_id ==10702 || org_id ==10697)" width="50px" style="width:6%"> 超滤量 <br />(ml) </th>
48
-                  <th v-if="isShow('超滤量') && template_id != 5 && template_id !=6 && template_id !=10 && template_id !=11 && template_id !=12 && template_id !=13 && template_id !=17 && template_id !=18 && template_id !=19 && template_id !=20 && template_id !=21 && template_id !=22 && template_id !=23 && template_id !=24 && template_id !=26 && org_id !=9555 && template_id!=27 && template_id!=29 && template_id!=30 && template_id!=31 && template_id !=9 && template_id!=32 && template_id!=34 && template_id!=35 && template_id!=36 && template_id!=38 && template_id!=40 && template_id!=41 && template_id!=43 && template_id!=44 && template_id!=47 && template_id!=46  && template_id!=48 && template_id!=53 && template_id!=54 && template_id!=65 && template_id!=56 && template_id!=60 && org_id != 10340 && org_id != 10387 && org_id != 10432  && org_id != 10445 && org_id!=10375 && org_id!=10480 && org_id!=10551 && org_id!=10485 && org_id!=10597 && org_id!=10599&&org_id!=10612 &&org_id!=10580 && org_id !=10629 && org_id!=10617 && org_id!=10677 && org_id!=10667 && org_id!=10693 && org_id!=10702  && org_id!=10697" width="50px" style="width:6%"> 超滤量 <br />(L) </th>
47
+                  <th v-if="isShow('超滤量') && (template_id ==5 || template_id ==6 || template_id == 10 || template_id == 11 || template_id == 12 || template_id == 13 || template_id == 17 || template_id == 18 || template_id == 19 || template_id == 20 || template_id == 21 || template_id == 22 || template_id == 23 || template_id == 24 || template_id == 26 || org_id == 9555 || template_id == 27 || template_id == 29 || template_id == 30 || template_id == 31 || template_id == 32 || template_id == 34 || template_id == 35 || template_id == 36 || template_id == 38 || template_id == 40 || template_id == 9 || template_id == 41 || template_id == 43 || template_id == 44 || template_id == 47 || template_id == 46 || template_id == 48 || template_id == 53 || template_id == 54 || template_id == 65 || template_id == 56 || template_id == 60 || org_id == 10340 || org_id == 10387 || org_id == 10432 || org_id == 10445 || org_id == 10375 || org_id == 10480 || org_id == 10551 || org_id == 10485 || org_id ==10597 || org_id ==10599 || org_id ==10612 || org_id ==10580 || org_id ==10629 || org_id ==10617 || org_id==10677 || org_id==10667 || org_id==10693 || org_id ==10702 || org_id ==10697 || org_id ==10635)" width="50px" style="width:6%"> 超滤量 <br />(ml) </th>
48
+                  <th v-if="isShow('超滤量') && template_id != 5 && template_id !=6 && template_id !=10 && template_id !=11 && template_id !=12 && template_id !=13 && template_id !=17 && template_id !=18 && template_id !=19 && template_id !=20 && template_id !=21 && template_id !=22 && template_id !=23 && template_id !=24 && template_id !=26 && org_id !=9555 && template_id!=27 && template_id!=29 && template_id!=30 && template_id!=31 && template_id !=9 && template_id!=32 && template_id!=34 && template_id!=35 && template_id!=36 && template_id!=38 && template_id!=40 && template_id!=41 && template_id!=43 && template_id!=44 && template_id!=47 && template_id!=46  && template_id!=48 && template_id!=53 && template_id!=54 && template_id!=65 && template_id!=56 && template_id!=60 && org_id != 10340 && org_id != 10387 && org_id != 10432  && org_id != 10445 && org_id!=10375 && org_id!=10480 && org_id!=10551 && org_id!=10485 && org_id!=10597 && org_id!=10599&&org_id!=10612 &&org_id!=10580 && org_id !=10629 && org_id!=10617 && org_id!=10677 && org_id!=10667 && org_id!=10693 && org_id!=10702  && org_id!=10697 && org_id!=10635" width="50px" style="width:6%"> 超滤量 <br />(L) </th>
49 49
 
50 50
                   <th v-if="isShow('超滤量1')" width="50px" style="width:6%"> 超滤量 <br />(ml) </th>
51 51
 
@@ -59,7 +59,7 @@
59 59
                   <th v-if="isShow('置换量') && (template_id ==43 )" width="40px" style="width:6%"> 置换量 <br />(ml/h) </th>
60 60
                   <th v-if="isShow('置换量') && ((template_id ==6 && org_id != 9919 && org_id!=10191 && template_id!=43) || org_id ==9779 ||template_id ==11 ||template_id ==20 ||template_id ==26 ||template_id ==29 ||template_id == 48 ||template_id == 46 ||template_id == 53 ||template_id == 54 ||template_id == 56 ||org_id == 10340 ||org_id == 10432 ||org_id == 10445) && org_id!=10558 && org_id!=10346 && org_id!=10517 && org_id!=10598 && org_id!=10617 && org_id!=10414 && org_id!=10510 && org_id!=10567" width="50px" style="width:6%"> 置换量 <br />(ml) </th>
61 61
                   <th v-if="isShow('置换量') && ((template_id !=6 || org_id == 9919 || org_id == 10191) && org_id !=9779 && template_id !=11 && template_id !=20 && template_id !=26 && template_id !=29 && template_id!=43 && template_id!=48 && template_id!=46 && template_id!=53 && template_id!=54 && template_id!=56 && org_id!=10340 && org_id!=10432  && org_id!=10445) || org_id ==10558 || org_id ==10346 || org_id == 10517 || org_id ==10598 || org_id==10617 || org_id==10414 || org_id == 10510 || org_id ==10567" width="50px" style="width:6%"> 置换量 <br />(L) </th>
62
-                  <th v-if="isShow('置换量1')" width="50px" style="width:6%"> 置换量 <br />(L) </th>
62
+                
63 63
                   <th v-if="isShow('SpO₂')  && template_id !=6 && template_id !=10 && template_id !=11" width="40px" > SpO₂ <br />(%) </th>
64 64
                   <th v-if="isShow('SpO₂')  && (org_id == 10447 || org_id ==9829)" width="40px" > SpO₂ <br />(%) </th>
65 65
                   <th v-if="isShow('SpO₂1')" width="40px" > SpO₂ <br />(%) </th>
@@ -69,10 +69,11 @@
69 69
                   <th v-if="isShow('置换液流量1')" width="50px"> 置换液流量 <br />(ml/min)</th>
70 70
                   <th v-if="isShow('透析液流量')" width="50px"> 透析液流量 <br />(ml/h) </th>
71 71
                   <th v-if="isShow('透析液流量1')" width="50px"> 透析液流量 <br />(ml/h) </th>
72
-                  <th v-if="isShow('超滤率') && (template_id ==6 || template_id == 10 || template_id == 11 || template_id == 12 || template_id == 13 || template_id == 17 || template_id == 18 || template_id == 19 || template_id == 20 || template_id == 21 || template_id == 22 || template_id == 23 || template_id == 24 || template_id == 26 || template_id == 31 || template_id == 34 || template_id == 35 || template_id == 38 || template_id == 41 || template_id == 43 || template_id == 44 || template_id == 47 || template_id == 48 || template_id == 53 || template_id == 54 || template_id == 56 || template_id == 65 || org_id == 10432 || org_id == 10445 || org_id == 10375 || org_id == 10480 || org_id == 10551  || org_id == 10537 || org_id ==10597 || org_id ==10599 || org_id == 10580 || org_id ==10629 || org_id ==10617 || org_id==10677|| org_id==10667 || org_id == 10693 || org_id ==10702 || org_id == 10697)" width="50px" style="6%"> 超滤率 <br />(ml/h) </th>
73
-                  <th v-if="isShow('超滤率') && template_id !=6 && template_id !=10 && template_id !=11 && template_id !=12 && template_id !=13 && template_id !=17 && template_id !=18 && template_id !=19 && template_id !=20 && template_id !=21 && template_id !=22 && template_id !=23 && template_id !=24 && template_id !=26 && template_id !=31 && template_id !=34 && template_id !=35 && template_id !=38 && template_id !=41 && template_id !=43 && template_id !=44 && template_id !=47 && template_id !=48 && template_id !=53 && template_id !=54 && template_id !=56 && template_id !=65 && org_id!=10432 && org_id!=10445 && org_id!=10375  && org_id!=10480 && org_id!=10551 && org_id!=10537 && org_id!=10597 && org_id!=10599 && org_id!=10580 && org_id!=10629 && org_id!=10617  && org_id!=10677 && org_id!=10667 && org_id!=10693 && org_id!=10702 && org_id!=10697" width="50px" style="6%"> 超滤率 <br />(L/h) </th>
72
+                  <th v-if="isShow('超滤率') && (template_id ==6 || template_id == 10 || template_id == 11 || template_id == 12 || template_id == 13 || template_id == 17 || template_id == 18 || template_id == 19 || template_id == 20 || template_id == 21 || template_id == 22 || template_id == 23 || template_id == 24 || template_id == 26 || template_id == 31 || template_id == 34 || template_id == 35 || template_id == 38 || template_id == 41 || template_id == 43 || template_id == 44 || template_id == 47 || template_id == 48 || template_id == 53 || template_id == 54 || template_id == 56 || template_id == 65 || org_id == 10432 || org_id == 10445 || org_id == 10375 || org_id == 10480 || org_id == 10551  || org_id == 10537 || org_id ==10597 || org_id ==10599 || org_id == 10580 || org_id ==10629 || org_id ==10617 || org_id==10677|| org_id==10667 || org_id == 10693 || org_id ==10702 || org_id == 10697 || org_id ==10635)" width="50px" style="6%"> 超滤率 <br />(ml/h) </th>
73
+                  <th v-if="isShow('超滤率') && template_id !=6 && template_id !=10 && template_id !=11 && template_id !=12 && template_id !=13 && template_id !=17 && template_id !=18 && template_id !=19 && template_id !=20 && template_id !=21 && template_id !=22 && template_id !=23 && template_id !=24 && template_id !=26 && template_id !=31 && template_id !=34 && template_id !=35 && template_id !=38 && template_id !=41 && template_id !=43 && template_id !=44 && template_id !=47 && template_id !=48 && template_id !=53 && template_id !=54 && template_id !=56 && template_id !=65 && org_id!=10432 && org_id!=10445 && org_id!=10375  && org_id!=10480 && org_id!=10551 && org_id!=10537 && org_id!=10597 && org_id!=10599 && org_id!=10580 && org_id!=10629 && org_id!=10617  && org_id!=10677 && org_id!=10667 && org_id!=10693 && org_id!=10702 && org_id!=10697 && org_id!=10635" width="50px" style="6%"> 超滤率 <br />(L/h) </th>
74 74
                   <th v-if="isShow('超滤率2')" width="60px">超滤率 <br />(ml/h) </th>
75 75
                   <th v-if="isShow('剩余肝素')" width="60px">剩余肝素 <br />(ml) </th>
76
+                  <th v-if="isShow('置换量1')" width="50px" style="width:6%"> 置换量 <br />(L) </th>
76 77
                   <th v-if="isShow('肝素用量余量')" width="60px"> 肝素用量余量 <br />(ml) </th>
77 78
                   <th v-if="isShow('肝素量')" width="60px"> 肝素量 <br />(mg) </th>
78 79
                   <th v-if="isShow('抗凝剂')" width="60px">抗凝剂</th>
@@ -117,12 +118,12 @@
117 118
                   <td v-if="isShow('血流量')">{{item.blood_flow_volume?item.blood_flow_volume:''}}</td>
118 119
                   <td v-if="isShow('血流量1')">{{item.blood_flow_volume_one?item.blood_flow_volume_one:'/'}}</td>
119 120
                   <td v-if="org_id!=10693"> {{item.venous_pressure?item.venous_pressure:''}}
120
-                    <span v-if="item.arterial_pressure!=''|| item.arterial_pressure>0">/</span>   
121
+                    <span v-if="item.arterial_pressure!=''|| item.arterial_pressure>0">/</span>
121 122
                     {{item.arterial_pressure?item.arterial_pressure:''}}</td>
122 123
                   <td v-if="org_id ==10693"> {{item.venous_pressure_one?item.venous_pressure_one:''}}/{{item.arterial_pressure_one?item.arterial_pressure_one:''}}</td>
123 124
                   <td v-if="isShow('跨膜压')" >
124
-                    <span v-if="org_id!=10644">{{item.transmembrane_pressure?item.transmembrane_pressure:'/'}}</span> 
125
-                    <span v-if="org_id==10644">{{item.transmembrane_pressure?item.transmembrane_pressure:''}}</span> 
125
+                    <span v-if="org_id!=10644">{{item.transmembrane_pressure?item.transmembrane_pressure:'/'}}</span>
126
+                    <span v-if="org_id==10644">{{item.transmembrane_pressure?item.transmembrane_pressure:''}}</span>
126 127
                   </td>
127 128
                   <td v-if="isShow('跨膜压1')" >{{item.transmembrane_pressure_one?item.transmembrane_pressure_one:'/'}}</td>
128 129
                   <td v-if="isShow('超滤量') && (org_id==10551 || org_id ==10617 || org_id ==10629 || org_id ==10679 || org_id ==10693 || org_id ==10702)" >
@@ -145,7 +146,7 @@
145 146
                   <td v-if="isShow('置换率')">{{item.replacement_rate?item.replacement_rate:''}}</td>
146 147
                   <td v-if="isShow('置换率1')">{{item.replacement_rate_one?item.replacement_rate_one:'/'}}</td>
147 148
                   <td v-if="isShow('置换量')" >{{item.displacement_quantity?item.displacement_quantity:''}}</td>
148
-                  <td v-if="isShow('置换量1')" >{{item.displacement_quantity_one?item.displacement_quantity_one:'/'}}</td>
149
+                 
149 150
                   <td v-if="isShow('SpO₂') && template_id != 6 && template_id != 10  && template_id != 11" >
150 151
                     <span v-if="org_id == 10340">{{item.blood_oxygen_saturation?item.blood_oxygen_saturation:'/'}}</span>
151 152
                     <span v-else>{{item.blood_oxygen_saturation?item.blood_oxygen_saturation:''}}</span>
@@ -165,8 +166,9 @@
165 166
                   <td v-if="isShow('透析液流量')" >{{item.dialysate_flow?item.dialysate_flow:''}}</td>
166 167
                   <td v-if="isShow('透析液流量1')" >{{item.dialysate_flow_one?item.dialysate_flow_one:'/'}}</td>
167 168
                   <td v-if="isShow('超滤率')" >{{item.ultrafiltration_rate?item.ultrafiltration_rate:''}}</td>
168
-                  <th v-if="isShow('超滤率2')" width="60px">{{ item.ultrafiltration_rate_one }} <br /></th>
169
-                  <th v-if="isShow('剩余肝素')" width="60px">{{item.heparin_one}} <br /> </th>
169
+                  <th v-if="isShow('超滤率2')" width="60px">{{ item.ultrafiltration_rate_one?item.ultrafiltration_rate_one:"/" }} <br /></th>
170
+                  <th v-if="isShow('剩余肝素')" width="60px">{{item.heparin_one?item.heparin_one:"/"}} <br /> </th>
171
+                  <td v-if="isShow('置换量1')" >{{item.displacement_quantity_one?item.displacement_quantity_one:'/'}}</td>
170 172
                   <td v-if="isShow('肝素用量余量')">{{item.heparin?item.heparin:''}}</td>
171 173
                   <td v-if="isShow('肝素量')">{{item.heparin_amount?item.heparin_amount:''}}</td>
172 174
                   <td v-if="isShow('抗凝剂')">
@@ -337,14 +339,14 @@
337 339
 
338 340
                           <van-field v-model="form.ultrafiltration_volume" @focus="inputFocus" @keydown='changeFocus' :required="isShow_title('超滤量')" v-if="isShow('超滤量')" type="number" input-align="right">
339 341
                               <template #label>
340
-                                  <span v-if="(template_id == 5 || template_id == 6 || template_id == 10 || template_id == 11 || template_id == 12 || template_id == 13 || template_id == 17 || template_id == 18 || template_id == 19 || template_id == 20 || template_id == 21 || template_id == 22 || template_id == 23 || template_id == 24 || template_id == 26 || org_id == 9555 || template_id == 27 || template_id == 29 || template_id == 30 || template_id == 31 || template_id == 9 || template_id == 32 || template_id == 34 || template_id == 35 || template_id == 36 || template_id == 38 || template_id == 40 || template_id == 41 || template_id == 43 || template_id == 44 || template_id == 46 || template_id == 47 || template_id == 48 || template_id == 53 || template_id == 54 || template_id == 56 || template_id == 60 || template_id == 65 || org_id == 10340  || org_id == 10387 || org_id == 10432 || org_id == 10445 || org_id == 10410 || org_id == 10485 || org_id == 10375 || org_id == 10480 || org_id == 10551 || org_id ==10597 || org_id ==10599 || org_id ==10612 || org_id == 10580 || org_id ==10629  || org_id ==10617 || org_id ==10677 || org_id ==10667 || org_id == 10693 || org_id == 10702 || org_id == 10697) && org_id!=10471" >超滤量(ml)</span>
342
+                                  <span v-if="(template_id == 5 || template_id == 6 || template_id == 10 || template_id == 11 || template_id == 12 || template_id == 13 || template_id == 17 || template_id == 18 || template_id == 19 || template_id == 20 || template_id == 21 || template_id == 22 || template_id == 23 || template_id == 24 || template_id == 26 || org_id == 9555 || template_id == 27 || template_id == 29 || template_id == 30 || template_id == 31 || template_id == 9 || template_id == 32 || template_id == 34 || template_id == 35 || template_id == 36 || template_id == 38 || template_id == 40 || template_id == 41 || template_id == 43 || template_id == 44 || template_id == 46 || template_id == 47 || template_id == 48 || template_id == 53 || template_id == 54 || template_id == 56 || template_id == 60 || template_id == 65 || org_id == 10340  || org_id == 10387 || org_id == 10432 || org_id == 10445 || org_id == 10410 || org_id == 10485 || org_id == 10375 || org_id == 10480 || org_id == 10551 || org_id ==10597 || org_id ==10599 || org_id ==10612 || org_id == 10580 || org_id ==10629  || org_id ==10617 || org_id ==10677 || org_id ==10667 || org_id == 10693 || org_id == 10702 || org_id == 10697 || org_id == 10635) && org_id!=10471" >超滤量(ml)</span>
341 343
                                   <span v-else>超滤量(L)</span>
342 344
                               </template>
343 345
                           </van-field>
344 346
 
345 347
                           <van-field v-model="form.ultrafiltration_rate" @focus="inputFocus" @keydown='changeFocus' v-if="isShow('超滤率')" :required="isShow_title('超滤率')" type="number" input-align="right">
346 348
                               <template #label>
347
-                                  <span v-if="(template_id == 6 || template_id == 10 || template_id == 11 || template_id == 13 || template_id == 17 || template_id == 18 || template_id == 19 || template_id == 20 || template_id == 21 || template_id == 22 || template_id == 23 || template_id == 24 || template_id == 26 || template_id == 29 || template_id == 30 || template_id == 31 || template_id == 32 || template_id == 34 || template_id == 35 || template_id == 36 || template_id == 38 || template_id == 41 || template_id == 43 || template_id == 44 || template_id == 46 || template_id == 47 || template_id == 48  || template_id == 53 || template_id == 54 || template_id == 56 || template_id == 60 || template_id == 65 || org_id == 10340 || org_id == 10432 || org_id == 10445 || org_id == 10410 || org_id == 10485 || org_id == 10375 || org_id == 10480 || org_id == 10551 || org_id ==10537 || org_id ==10597 || org_id ==10599 || org_id ==10612 || org_id==10580 || org_id ==10629  || org_id ==10617 || org_id ==10677 || org_id ==10667 || org_id == 10693 || org_id==10702 || org_id == 10697) && org_id!=10471">超滤率(ml/h)</span>
349
+                                  <span v-if="(template_id == 6 || template_id == 10 || template_id == 11 || template_id == 13 || template_id == 17 || template_id == 18 || template_id == 19 || template_id == 20 || template_id == 21 || template_id == 22 || template_id == 23 || template_id == 24 || template_id == 26 || template_id == 29 || template_id == 30 || template_id == 31 || template_id == 32 || template_id == 34 || template_id == 35 || template_id == 36 || template_id == 38 || template_id == 41 || template_id == 43 || template_id == 44 || template_id == 46 || template_id == 47 || template_id == 48  || template_id == 53 || template_id == 54 || template_id == 56 || template_id == 60 || template_id == 65 || org_id == 10340 || org_id == 10432 || org_id == 10445 || org_id == 10410 || org_id == 10485 || org_id == 10375 || org_id == 10480 || org_id == 10551 || org_id ==10537 || org_id ==10597 || org_id ==10599 || org_id ==10612 || org_id==10580 || org_id ==10629  || org_id ==10617 || org_id ==10677 || org_id ==10667 || org_id == 10693 || org_id==10702 || org_id == 10697 || org_id == 10635) && org_id!=10471">超滤率(ml/h)</span>
348 350
                                   <span v-else>超滤率(L/h)</span>
349 351
                               </template>
350 352
                           </van-field>
@@ -1822,11 +1824,18 @@ methods: {
1822 1824
 
1823 1825
         this.form.operate_time = Date.parse(new Date())
1824 1826
       }else{
1825
-        this.form.operate_time = lastMonitorRecordList.operate_time ? (lastMonitorRecordList.operate_time + 3600) * 1000 : Date.parse(new Date())
1827
+
1828
+        if(this.org_id!=10060){
1829
+          this.form.operate_time = lastMonitorRecordList.operate_time ? (lastMonitorRecordList.operate_time + 3600) * 1000 : Date.parse(new Date())
1830
+        }
1831
+        if(this.org_id ==10060){
1832
+          this.form.operate_time = resp.monitor.operate_time ? (resp.monitor.operate_time + 3600) * 1000 : Date.parse(new Date())
1833
+        }
1826 1834
       }
1827 1835
 
1828 1836
 
1829 1837
 
1838
+
1830 1839
       if(this.org_id == 9829){
1831 1840
         this.form.pulse_frequency = 80
1832 1841
       }else{
@@ -2008,21 +2017,21 @@ methods: {
2008 2017
           }
2009 2018
 
2010 2019
           if(this.org_id == 10375){
2011
-            this.form.displacement_quantity = (lastMonitorRecordList.displacement_quantity + lastMonitorRecordList.replacement_rate).toFixed(0)
2020
+            this.form.displacement_quantity = (lastMonitorRecordList.displacement_quantity + lastMonitorRecordList.replacement_rate).toFixed(1)
2012 2021
           }
2013 2022
 
2014 2023
           if(this.org_id == 10414){
2015
-            this.form.displacement_quantity = (lastMonitorRecordList.displacement_quantity + lastMonitorRecordList.replacement_rate).toFixed(0)
2024
+            this.form.displacement_quantity = (lastMonitorRecordList.displacement_quantity + lastMonitorRecordList.replacement_rate).toFixed(1)
2016 2025
           }
2017 2026
 
2018 2027
 
2019 2028
 
2020 2029
           if(this.org_id == 10480){
2021
-             this.form.displacement_quantity = (lastMonitorRecordList.displacement_quantity + lastMonitorRecordList.replacement_rate).toFixed(0)
2030
+             this.form.displacement_quantity = (lastMonitorRecordList.displacement_quantity + lastMonitorRecordList.replacement_rate).toFixed(1)
2022 2031
            }
2023 2032
 
2024 2033
            if(this.org_id == 10702){
2025
-            this.form.displacement_quantity = (lastMonitorRecordList.displacement_quantity + lastMonitorRecordList.replacement_rate).toFixed(0)
2034
+            this.form.displacement_quantity = (lastMonitorRecordList.displacement_quantity + lastMonitorRecordList.replacement_rate).toFixed(1)
2026 2035
           }
2027 2036
 
2028 2037
 
@@ -2065,6 +2074,10 @@ methods: {
2065 2074
         this.form.transmembrane_pressure = ""
2066 2075
       }
2067 2076
 
2077
+      if(this.org_id ==10693){
2078
+         this.form.conductivity_one = lastMonitorRecordList.conductivity_one?lastMonitorRecordList.conductivity_one:""
2079
+      }
2080
+
2068 2081
 
2069 2082
       // this.form.monitor_anticoagulant = resp.monitor.monitor_anticoagulant?resp.monitor.monitor_anticoagulant:''
2070 2083
       // this.form.monitor_anticoagulant_value = resp.monitor.monitor_anticoagulant_value?resp.monitor.monitor_anticoagulant_value:''

+ 35 - 14
src/pages/main/template/DialysisPrintOrderSeventeen.vue Ver fichero

@@ -186,10 +186,12 @@
186 186
                   <td style="text-align:left;" colspan="6">
187 187
 
188 188
                     <span style="display:inline-block;padding-left:15px;">
189
-                      <label-box :isChecked="prescription.anticoagulant == 6 ? true : false" showValue="低分子肝素钙"></label-box>:
189
+                      <!-- <label-box :isChecked="prescription.anticoagulant == 6 ? true : false" showValue="低分子肝素钙"></label-box>: -->
190 190
                       <label-box :isChecked="prescription.anticoagulant == 7 ? true : false" showValue="低分子肝素钠"></label-box>:
191
+                      <label-box :isChecked="prescription.anticoagulant == 8 ? true : false" showValue="依诺肝素"></label-box>:
192
+                      <label-box :isChecked="prescription.anticoagulant == 16 ? true : false" showValue="低分子量肝素钙"></label-box>:
191 193
                     </span>
192
-                    <span style="display:inline-block;">
194
+                    <!-- <span style="display:inline-block;">
193 195
                       <div style="display:inline-block;width:30px;text-align:center">
194 196
                           {{ (prescription.anticoagulant == 7 || prescription.anticoagulant == 6) && prescription.anticoagulant_zongliang ? prescription.anticoagulant_zongliang : "/" }}
195 197
                       </div>
@@ -200,27 +202,38 @@
200 202
                       <span v-if="prescription.anticoagulant == 1">mg</span>
201 203
                       <span v-if="prescription.anticoagulant == 6">iu</span>
202 204
                       <span v-if="prescription.anticoagulant == 7">iu</span>
203
-                  </span>
205
+                  </span> -->
204 206
                   <span style="display:inline-block;">
205 207
                       <label-box :isChecked="prescription.anticoagulant == 2 ? true : false" showValue="普通肝素"></label-box>
206 208
                   </span>
207 209
                   <span style="display:inline-block;">
208 210
                       首剂:
209 211
                       <div style="display:inline-block;width:30px;text-align:center">
210
-                          {{ prescription.anticoagulant == 2 && prescription.anticoagulant_shouji ? prescription.anticoagulant_shouji : "/" }}
211
-                      </div>
212
-                      <span v-if="prescription.anticoagulant == 5">mg</span>
213
-                      <span v-if="prescription.anticoagulant == 4">mg</span>
214
-                      <span v-if="prescription.anticoagulant == 3">iu</span>
215
-                      <span v-if="prescription.anticoagulant == 2">mg</span>
216
-                      <span v-if="prescription.anticoagulant == 1">mg</span>
217
-                      <span v-if="prescription.anticoagulant == 6">iu</span>
218
-                      <span v-if="prescription.anticoagulant == 7">iu</span>
212
+                        {{ prescription.anticoagulant == 2 && prescription.anticoagulant_shouji ? prescription.anticoagulant_shouji : "" }}
213
+                        {{ prescription.anticoagulant == 6 && prescription.anticoagulant_shouji ? prescription.anticoagulant_shouji : "" }}
214
+                        {{ prescription.anticoagulant == 7 && prescription.anticoagulant_shouji ? prescription.anticoagulant_shouji : "" }}
215
+                        {{ prescription.anticoagulant == 8 && prescription.anticoagulant_shouji ? prescription.anticoagulant_shouji : "" }}
216
+                        {{ prescription.anticoagulant == 16 && prescription.anticoagulant_shouji ? prescription.anticoagulant_shouji : "" }}
217
+                        </div>
218
+                        <span v-if="prescription.anticoagulant == 5">mg</span>
219
+                        <span v-if="prescription.anticoagulant == 4">mg</span>
220
+                        <span v-if="prescription.anticoagulant == 3">iu</span>
221
+                        <span v-if="prescription.anticoagulant == 2">mg</span>
222
+                        <span v-if="prescription.anticoagulant == 1">mg</span>
223
+                        <span v-if="prescription.anticoagulant == 6">iu</span>
224
+                        <span v-if="prescription.anticoagulant == 7">iu</span>
225
+                        <span v-if="prescription.anticoagulant == 8">iu</span>
226
+                        <span v-if="prescription.anticoagulant == 16">iu</span>
219 227
                   </span>
220 228
                   <span style="display:inline-block;">
221 229
                       维持:
222 230
                       <div style="display:inline-block;width:30px;text-align:center">
223
-                          {{ prescription.anticoagulant == 2 && prescription.anticoagulant_weichi ? prescription.anticoagulant_weichi : "/" }}
231
+                          <!-- {{ prescription.anticoagulant == 2 && prescription.anticoagulant_weichi ? prescription.anticoagulant_weichi : "/" }} -->
232
+                          {{ prescription.anticoagulant == 2 && prescription.anticoagulant_weichi ? prescription.anticoagulant_weichi : "" }}
233
+                          {{ prescription.anticoagulant == 6 && prescription.anticoagulant_weichi ? prescription.anticoagulant_weichi : "" }}
234
+                          {{ prescription.anticoagulant == 7 && prescription.anticoagulant_weichi ? prescription.anticoagulant_weichi : "" }}
235
+                          {{ prescription.anticoagulant == 8 && prescription.anticoagulant_weichi ? prescription.anticoagulant_weichi : "" }}
236
+                          {{ prescription.anticoagulant == 16 && prescription.anticoagulant_weichi ? prescription.anticoagulant_weichi : "" }}
224 237
                       </div>
225 238
                       <span v-if="prescription.anticoagulant == 5">ml/h</span>
226 239
                       <span v-if="prescription.anticoagulant == 4">mg/h</span>
@@ -229,11 +242,17 @@
229 242
                       <span v-if="prescription.anticoagulant == 1">mg/h</span>
230 243
                       <span v-if="prescription.anticoagulant == 6">iu/h</span>
231 244
                       <span v-if="prescription.anticoagulant == 7">iu/h</span>
245
+                      <span v-if="prescription.anticoagulant == 8">iu/h</span>
246
+                      <span v-if="prescription.anticoagulant == 16">iu/h</span>
232 247
                   </span>
233 248
                   <span style="display:inline-block;">
234 249
                       总量:
235 250
                       <div style="display:inline-block;width:30px;text-align:center">
236
-                          {{ prescription.anticoagulant == 2 && prescription.anticoagulant_zongliang ? prescription.anticoagulant_zongliang : "/" }}
251
+                        {{ prescription.anticoagulant == 2 && prescription.anticoagulant_zongliang ? prescription.anticoagulant_zongliang : "" }}
252
+                        {{ prescription.anticoagulant == 6 && prescription.anticoagulant_zongliang ? prescription.anticoagulant_zongliang : "" }}
253
+                        {{ prescription.anticoagulant == 7 && prescription.anticoagulant_zongliang ? prescription.anticoagulant_zongliang : "" }}
254
+                        {{ prescription.anticoagulant == 8 && prescription.anticoagulant_zongliang ? prescription.anticoagulant_zongliang : "" }}
255
+                        {{ prescription.anticoagulant == 16 && prescription.anticoagulant_zongliang ? prescription.anticoagulant_zongliang : "" }}
237 256
                       </div>
238 257
                       <span v-if="prescription.anticoagulant == 5">mg</span>
239 258
                       <span v-if="prescription.anticoagulant == 4">mg</span>
@@ -242,6 +261,8 @@
242 261
                       <span v-if="prescription.anticoagulant == 1">mg</span>
243 262
                       <span v-if="prescription.anticoagulant == 6">iu</span>
244 263
                       <span v-if="prescription.anticoagulant == 7">iu</span>
264
+                      <span v-if="prescription.anticoagulant == 8">iu</span>
265
+                      <span v-if="prescription.anticoagulant == 16">iu</span>
245 266
                   </span>
246 267
                   <span style="display:inline-block;">
247 268
                     <label-box :isChecked="prescription.anticoagulant == 1 ? true : false" showValue="无肝素"></label-box>

+ 172 - 2
src/pages/main/template/DialysisPrintOrderSix.vue Ver fichero

@@ -1202,13 +1202,183 @@
1202 1202
           <tr>
1203 1203
             <td>
1204 1204
               <div class="row" style="padding: 2px 0;line-height:23px;display:flex;">
1205
-                <div class="inline_block" style="flex:1;">
1205
+                <!-- <div class="inline_block" style="flex:1;">
1206 1206
                   穿刺护士:
1207 1207
                   <div class="under_line" style="width: 80px;text-align: center">
1208 1208
                     <span v-if="setAdminUserES(dialysisOrder==null?0:dialysisOrder.puncture_nurse) == ''">{{getAdminUser(dialysisOrder==null?0:dialysisOrder.puncture_nurse)}}</span>
1209 1209
                     <img style="height:20px;" :src="setAdminUserES(dialysisOrder==null?0:dialysisOrder.puncture_nurse)" alt="" srcset="" v-else>
1210 1210
                   </div>
1211
-                </div>
1211
+                </div> -->
1212
+                <div v-if="org_id!=10440">
1213
+                    <div class="inline_block" style="flex: 1" v-if="predialysis.catheter == ''">
1214
+                      穿刺护士:
1215
+                      <div
1216
+                        class="under_line"
1217
+                        style="width: 80px; text-align: center"
1218
+                      >
1219
+                        <span
1220
+                          style="height: 20px; display: inline-block"
1221
+                          v-if="
1222
+                            setAdminUserES(
1223
+                              dialysisOrder == null
1224
+                                ? 0
1225
+                                : dialysisOrder.puncture_nurse
1226
+                            ) == ''
1227
+                          "
1228
+                        >
1229
+                          {{
1230
+                            getAdminUser(
1231
+                              dialysisOrder == null
1232
+                                ? 0
1233
+                                : dialysisOrder.puncture_nurse
1234
+                            )
1235
+                          }}</span
1236
+                        >
1237
+                        <img
1238
+                          style="height: 20px"
1239
+                          :src="
1240
+                            setAdminUserES(
1241
+                              dialysisOrder == null
1242
+                                ? 0
1243
+                                : dialysisOrder.puncture_nurse
1244
+                            )
1245
+                          "
1246
+                          alt=""
1247
+                          srcset=""
1248
+                          v-else
1249
+                        />
1250
+                      </div>
1251
+                    </div>
1252
+
1253
+                    <div class="inline_block" style="flex: 1" v-if="predialysis.catheter != ''">
1254
+                      换药护士:
1255
+
1256
+                      <div
1257
+                        class="under_line"
1258
+                        style="width: 80px; text-align: center"
1259
+                        v-if="org_id==10644"
1260
+                      >
1261
+                        <span
1262
+                          style="height: 20px; display: inline-block"
1263
+                          v-if="
1264
+                            setAdminUserES(
1265
+                              dialysisOrder == null
1266
+                                ? 0
1267
+                                : dialysisOrder.change_nurse
1268
+                            ) == ''
1269
+                          "
1270
+                        >
1271
+                          {{
1272
+                            getAdminUser(
1273
+                              dialysisOrder == null
1274
+                                ? 0
1275
+                                : dialysisOrder.change_nurse
1276
+                            )
1277
+                          }}</span
1278
+                        >
1279
+                        <img
1280
+                          style="height: 20px"
1281
+                          :src="
1282
+                            setAdminUserES(
1283
+                              dialysisOrder == null
1284
+                                ? 0
1285
+                                : dialysisOrder.change_nurse
1286
+                            )
1287
+                          "
1288
+                          alt=""
1289
+                          srcset=""
1290
+                          v-else
1291
+                        />
1292
+                      </div>
1293
+
1294
+                      <div
1295
+                        class="under_line"
1296
+                        style="width: 80px; text-align: center"
1297
+                        v-if="org_id!=10644"
1298
+                      >
1299
+                        <span
1300
+                          style="height: 20px; display: inline-block"
1301
+                          v-if="
1302
+                            setAdminUserES(
1303
+                              dialysisOrder == null
1304
+                                ? 0
1305
+                                : dialysisOrder.puncture_nurse
1306
+                            ) == ''
1307
+                          "
1308
+                        >
1309
+                          {{
1310
+                            getAdminUser(
1311
+                              dialysisOrder == null
1312
+                                ? 0
1313
+                                : dialysisOrder.puncture_nurse
1314
+                            )
1315
+                          }}</span
1316
+                        >
1317
+                        <img
1318
+                          style="height: 20px"
1319
+                          :src="
1320
+                            setAdminUserES(
1321
+                              dialysisOrder == null
1322
+                                ? 0
1323
+                                : dialysisOrder.puncture_nurse
1324
+                            )
1325
+                          "
1326
+                          alt=""
1327
+                          srcset=""
1328
+                          v-else
1329
+                        />
1330
+                      </div>
1331
+                    </div>
1332
+                  </div>
1333
+
1334
+                  <div v-if="org_id==0||org_id==10440">
1335
+
1336
+                    <div class="inline_block" style="flex: 1">
1337
+                     <div>
1338
+                      <span>责任护士:</span>
1339
+                      <div
1340
+                        class="under_line"
1341
+                        style="width: 80px; text-align: center"
1342
+
1343
+                      >
1344
+
1345
+                        <span
1346
+                          style="height: 35px; display: inline-block"
1347
+                          v-if="
1348
+                            setAdminUserES(
1349
+                              dialysisOrder == null
1350
+                                ? 0
1351
+                                : dialysisOrder.start_nurse
1352
+                            ) == ''
1353
+                          "
1354
+                        >
1355
+                          {{
1356
+                            getAdminUser(
1357
+                              dialysisOrder == null
1358
+                                ? 0
1359
+                                : dialysisOrder.start_nurse
1360
+                            )
1361
+                          }}</span
1362
+                        >
1363
+                        <img
1364
+                          style="height: 30px"
1365
+                          :src="
1366
+                            setAdminUserES(
1367
+                              dialysisOrder == null
1368
+                                ? 0
1369
+                                : dialysisOrder.start_nurse
1370
+                            )
1371
+                          "
1372
+                          alt=""
1373
+                          srcset=""
1374
+                          v-else
1375
+                        />
1376
+                      </div>
1377
+                    </div>
1378
+
1379
+                    </div>
1380
+
1381
+                  </div>
1212 1382
                 <div class="inline_block" style="flex:1;" v-if="org_id!=10206">
1213 1383
                   治疗护士:
1214 1384
                   <div class="under_line" style="width: 80px;text-align: center">

+ 41 - 46
src/pages/main/template/DialysisPrintOrderseventyfive.vue Ver fichero

@@ -51,7 +51,7 @@
51 51
           </div>
52 52
           <div class="inline_block" style="flex: 1;">
53 53
             日期:
54
-            <div class="under_line" 
54
+            <div class="under_line"
55 55
             style="width: 100px; text-align: center"
56 56
             >
57 57
               {{ xtdate }}
@@ -131,9 +131,9 @@
131 131
                   white-space: normal;
132 132
                 "
133 133
               >
134
-               <span v-if="dialysisOrder&&dialysisOrder.dialysis_dialyszers!='' &&dialysisOrder.dialysis_dialyszers!=0">{{ dialysisOrder.dialysis_dialyszers ? dialysisOrder.dialysis_dialyszers : "/" }}</span> 
135
-                 
136
-               <span v-if="dialysisOrder&&dialysisOrder.dialysis_strainer !='' &&dialysisOrder.dialysis_strainer !=0">{{ dialysisOrder.dialysis_strainer ? dialysisOrder.dialysis_strainer : "/" }}</span> 
134
+               <span v-if="dialysisOrder&&dialysisOrder.dialysis_dialyszers!='' &&dialysisOrder.dialysis_dialyszers!=0">{{ dialysisOrder.dialysis_dialyszers ? dialysisOrder.dialysis_dialyszers : "/" }}</span>
135
+
136
+               <span v-if="dialysisOrder&&dialysisOrder.dialysis_strainer !='' &&dialysisOrder.dialysis_strainer !=0">{{ dialysisOrder.dialysis_strainer ? dialysisOrder.dialysis_strainer : "/" }}</span>
137 137
 
138 138
               </div>
139 139
             </div>
@@ -201,7 +201,7 @@
201 201
                   text-align: center; white-space: normal;
202 202
                 ">
203 203
                   {{ prescription.anticoagulant_name ? prescription.anticoagulant_name : "/" }}
204
-                  <span v-if="prescription.anticoagulant_name == '那屈肝素钙'"> 
204
+                  <span v-if="prescription.anticoagulant_name == '那屈肝素钙'">
205 205
                     {{  prescription.anticoagulant_zongliang ? prescription.anticoagulant_zongliang : "/" }} IU
206 206
                   </span>
207 207
               </div>
@@ -218,13 +218,13 @@
218 218
                 <span v-else>/</span>
219 219
               </div>
220 220
               <span v-if="prescription.anticoagulant_name == '肝素钠'">mg</span>
221
-              <!-- <span v-if="prescription.anticoagulant_name == '枸橼酸钠'">mg</span>
221
+              <span v-if="prescription.anticoagulant_name == '枸橼酸钠'">mg</span>
222 222
               <span v-if="prescription.anticoagulant_name == '阿加曲班'">mg</span>
223 223
               <span v-if="prescription.anticoagulant_name == '低分子肝素'">iu</span>
224 224
               <span v-if="prescription.anticoagulant_name == '普通肝素'">mg</span>
225 225
               <span v-if="prescription.anticoagulant_name == '无肝素'">mg</span>
226 226
               <span v-if="prescription.anticoagulant_name == '低分子肝素钙'">iu</span>
227
-              <span v-if="prescription.anticoagulant_name == '低分子肝素钠'">iu</span>  -->
227
+              <span v-if="prescription.anticoagulant_name == '低分子肝素钠'">iu</span>
228 228
               <!-- <span v-else>mg</span>   -->
229 229
             </div>
230 230
             <div class="inline_block" style="flex: 1;">
@@ -239,13 +239,13 @@
239 239
                 <span>/</span>
240 240
               </div>
241 241
               <span v-if="prescription.anticoagulant_name == '肝素钠'">mg/h</span>
242
-              <!-- <span v-if="prescription.anticoagulant_name == '枸橼酸钠'">ml/h</span>
242
+              <span v-if="prescription.anticoagulant_name == '枸橼酸钠'">ml/h</span>
243 243
               <span v-if="prescription.anticoagulant_name == '阿加曲班'">mg/h</span>
244 244
               <span v-if="prescription.anticoagulant_name == '低分子肝素'">iu/h</span>
245 245
               <span v-if="prescription.anticoagulant_name == '普通肝素'">mg/h</span>
246 246
               <span v-if="prescription.anticoagulant_name == '无肝素'">mg/h</span>
247 247
               <span v-if="prescription.anticoagulant_name == '低分子肝素钙'">iu/h</span>
248
-              <span v-if="prescription.anticoagulant_name == '低分子肝素钠'">iu/h</span> -->
248
+              <span v-if="prescription.anticoagulant_name == '低分子肝素钠'">iu/h</span>
249 249
               <!-- <span v-else>mg/h</span> -->
250 250
             </div>
251 251
             <div class="inline_block" style="flex: 1">
@@ -254,9 +254,7 @@
254 254
                 class="under_line"
255 255
                 style="width: 70px; text-align: center"
256 256
               >
257
-                {{ predialysis.weight_before != '' && predialysis.additional_weight !='' ? 
258
-                  (predialysis.weight_before - predialysis.additional_weight).toFixed(1) : ""
259
-                }}
257
+                {{predialysis.weight_before ? predialysis.weight_before : ""}}
260 258
               </div>
261 259
               kg
262 260
             </div>
@@ -277,7 +275,7 @@
277 275
               <div
278 276
                 class="under_line"
279 277
                 style="width: 100px; text-align: center"
280
-              > 
278
+              >
281 279
                 <span v-if="predialysis.systolic_blood_pressure !='' && predialysis.diastolic_blood_pressure !=''">
282 280
                     {{ predialysis.systolic_blood_pressure ? predialysis.systolic_blood_pressure : ""}} /
283 281
                     {{ predialysis.diastolic_blood_pressure ? predialysis.diastolic_blood_pressure : ""}}
@@ -288,7 +286,7 @@
288 286
                     ? predialysis.systolic_blood_pressure
289 287
                     : "/"
290 288
                 }}
291
-                  /  
289
+                  /
292 290
                 {{
293 291
                   predialysis.diastolic_blood_pressure
294 292
                     ? predialysis.diastolic_blood_pressure
@@ -323,7 +321,7 @@
323 321
               </div>
324 322
               kg
325 323
             </div>
326
-            
324
+
327 325
           </div>
328 326
           <!-- 医嘱脱水量 -->
329 327
           <div class="rows" style="display: flex;">
@@ -342,7 +340,7 @@
342 340
                 class="under_line"
343 341
                 style="width: 80px; text-align: center"
344 342
               >
345
-                {{ prescription.dialysis_duration_hour ? prescription.dialysis_duration_hour : "0"}} h 
343
+                {{ prescription.dialysis_duration_hour ? prescription.dialysis_duration_hour : "0"}} h
346 344
                 {{ prescription.dialysis_duration_minute ? prescription.dialysis_duration_minute : "0" }}min
347 345
               </div>
348 346
             </div>
@@ -364,7 +362,7 @@
364 362
               <div
365 363
                 class="under_line"
366 364
                 style="width: 100px; text-align: center"
367
-              > 
365
+              >
368 366
                 <span style="height: 30px;display: inline-block;"></span>
369 367
                 <span style="" v-if="setAdminUserES(prescription.creater) == ''">
370 368
                   {{ getAdminUser(prescription.creater)}}
@@ -373,10 +371,10 @@
373 371
                   <img style="height:30px;" :src="setAdminUserES(prescription.creater)" alt srcset />
374 372
                 </span>
375 373
               </div>
376
-              
374
+
377 375
             </div>
378 376
           </div>
379
-        
377
+
380 378
           <!-- 特殊医嘱 -->
381 379
           <div class="rows" >
382 380
             <div class="inline_block" style="width: 100%;">
@@ -386,7 +384,7 @@
386 384
               >
387 385
               {{ prescription.remark ? prescription.remark : "/" }}
388 386
               </div>
389
-              
387
+
390 388
             </div>
391 389
           </div>
392 390
         </div>
@@ -414,7 +412,7 @@
414 412
                 <td style="font-size: 16px" colspan="2" width="54%">
415 413
                   医嘱内容
416 414
                 </td>
417
-                
415
+
418 416
                 <td style="font-size: 16px" width="10%">医生签名</td>
419 417
                 <td style="font-size: 16px" width="6%">时间</td>
420 418
                 <td style="font-size: 16px" width="10%">执行人签名</td>
@@ -559,7 +557,7 @@
559 557
                   </span>
560 558
                   <span v-else>未测</span> -->
561 559
                   <span>
562
-                    {{monitor.monitor_systolic_blood_pressure_one ? monitor.monitor_systolic_blood_pressure_one : "未测"}} 
560
+                    {{monitor.monitor_systolic_blood_pressure_one ? monitor.monitor_systolic_blood_pressure_one : "未测"}}
563 561
                     <span v-if="monitor.monitor_diastolic_blood_pressure_one!=''&&monitor.monitor_diastolic_blood_pressure_one>0">/{{monitor.monitor_diastolic_blood_pressure_one }}</span>
564 562
                   </span>
565 563
                 </td>
@@ -581,7 +579,7 @@
581 579
                   </span> -->
582 580
 
583 581
                   {{ monitor.ultrafiltration_rate_one ? monitor.ultrafiltration_rate_one : ''}}
584
-                  
582
+
585 583
                 </td>
586 584
                 <td width="50">
587 585
                   <!-- <span v-if="monindex == 0">
@@ -627,12 +625,11 @@
627 625
         <div class="rows" style="border: 1px solid black;border-bottom:none;width: 100%;">
628 626
           <div class="rows" style="display: flex;width: 100%;">
629 627
             <div class="inline_block" style="flex: 1">
630
-              穿刺护士:
628
+              上机护士:
631 629
               <div class="under_line"
632 630
                 style="width: 90px; text-align: center"
633
-              > 
634
-                <span style="height: 30px;display: inline-block;"></span>
635
-                <span style=" display: inline-block"
631
+              >
632
+                <span style="height: 30px; display: inline-block"
636 633
                   v-if="
637 634
                     setAdminUserES(
638 635
                       dialysisOrder == null
@@ -650,7 +647,7 @@
650 647
                   }}</span
651 648
                 >
652 649
                 <img
653
-                  style="height: 30px"
650
+                  style="height: 35px"
654 651
                   :src="
655 652
                     setAdminUserES(
656 653
                       dialysisOrder == null
@@ -668,9 +665,8 @@
668 665
               责任护士:
669 666
               <div class="under_line"
670 667
                 style="width: 90px; text-align: center"
671
-              > 
672
-                <span style="height: 30px;display: inline-block;"></span>
673
-                <span style=" display: inline-block"
668
+              >
669
+                <span style="height: 30px; display: inline-block"
674 670
                   v-if="
675 671
                     setAdminUserES(
676 672
                       dialysisOrder == null
@@ -688,7 +684,7 @@
688 684
                   }}</span
689 685
                 >
690 686
                 <img
691
-                  style="height: 30px"
687
+                  style="height: 35px"
692 688
                   :src="
693 689
                     setAdminUserES(
694 690
                       dialysisOrder == null
@@ -706,12 +702,11 @@
706 702
               核对护士:
707 703
               <div class="under_line"
708 704
                 style="width: 90px; text-align: center"
709
-              > 
710
-                <span style="height: 30px;display: inline-block;"></span>
711
-                <span style="display: inline-block" v-if="setAdminUserES(check == null ? 0 : check.modifier) == ''">
705
+              >
706
+                <span style="height: 30px; display: inline-block" v-if="setAdminUserES(check == null ? 0 : check.modifier) == ''">
712 707
                   {{ getAdminUser(check == null ? 0 : check.modifier) ? getAdminUser(check == null ? 0 : check.modifier) : "" }}
713 708
                 </span>
714
-                <img :src="setAdminUserES(check == null ? 0 : check.modifier)" alt="" srcset="" style="height:30px" v-else />
709
+                <img :src="setAdminUserES(check == null ? 0 : check.modifier)" alt="" srcset="" style="height:35px" v-else />
715 710
               </div>
716 711
             </div>
717 712
           </div>
@@ -720,16 +715,16 @@
720 715
             <div class="inline_block" style="flex: 1">
721 716
               穿刺:
722 717
               <div class="under_line"
723
-                style="width: 70%; text-align: center;white-space: normal;"
718
+                style="width: 90px; text-align: center"
724 719
               >
725 720
                 {{ afterdialysis.internal_fistula ? afterdialysis.internal_fistula : "/" }}
726 721
               </div>
727
-              
722
+
728 723
             </div>
729 724
             <div class="inline_block" style="flex: 1">
730 725
               透析器:
731 726
               <div class="under_line"
732
-                style="width: 74%; text-align: center;white-space: normal;"
727
+                style="width: 90px; text-align: center"
733 728
               >
734 729
                 {{ afterdialysis.cruor ? afterdialysis.cruor : "/" }}
735 730
               </div>
@@ -762,7 +757,7 @@
762 757
               <div class="under_line"
763 758
                 style="width: 90px; text-align: center"
764 759
               >
765
-                
760
+
766 761
               </div>
767 762
             </div>
768 763
             <div class="inline_block" style="flex: 1">
@@ -780,7 +775,7 @@
780 775
               <div class="under_line"
781 776
                 style="width: 90px; text-align: center"
782 777
               >
783
-                {{ afterdialysis.weight_after ? 
778
+                {{ afterdialysis.weight_after ?
784 779
                     parseFloat( afterdialysis.weight_after - afterdialysis.additional_weight ).toFixed(1) : "未测"
785 780
                 }}
786 781
               </div>kg
@@ -791,7 +786,7 @@
791 786
                 style="width: 90px; text-align: center"
792 787
               >
793 788
                 <span v-if="afterdialysis.systolic_blood_pressure !='' && afterdialysis.diastolic_blood_pressure !=''">
794
-                  {{ afterdialysis.systolic_blood_pressure ? afterdialysis.systolic_blood_pressure : "/"}} / 
789
+                  {{ afterdialysis.systolic_blood_pressure ? afterdialysis.systolic_blood_pressure : "/"}} /
795 790
                   {{ afterdialysis.diastolic_blood_pressure ? afterdialysis.diastolic_blood_pressure : "/"}}
796 791
                 </span>
797 792
                 <span v-else>未测</span>
@@ -840,7 +835,7 @@
840 835
             </div>
841 836
           </div>
842 837
           <div style="width: 100%;height: 40px;text-align: right;padding-right:30%;">
843
-            医生签名: 
838
+            医生签名:
844 839
             <span style="display: inline-block;" v-if="setAdminUserES(prescription.creater) == ''">
845 840
               {{ getAdminUser(prescription.creater)}}
846 841
             </span>
@@ -858,7 +853,7 @@
858 853
               style="width: 50px; text-align: center"
859 854
             >
860 855
               {{ prescription.sodium ? prescription.sodium : "/" }}
861
-              
856
+
862 857
             </div>
863 858
             mmol/L
864 859
           </div>
@@ -885,7 +880,7 @@
885 880
         </div>
886 881
 
887 882
       </div>
888
-    
883
+
889 884
   </div>
890 885
 
891 886
 </template>
@@ -1414,7 +1409,7 @@ export default {
1414 1409
         }
1415 1410
         this.totollength = this.doctor_advices.length + this.monitors.length
1416 1411
         console.log(this.advice_groups)
1417
-       
1412
+
1418 1413
       } else {
1419 1414
         this.loading = false
1420 1415
         this.$message.error('请求数据失败')

+ 4 - 1
src/pages/main/today/TodayTab.vue Ver fichero

@@ -513,13 +513,16 @@ export default {
513 513
         { title: '接诊评估', name: 'accepts_assessment', value: 0, is_show: 1 },
514 514
         { title: '透前评估', name: 'assessment_before', value: 0, is_show: 1 },
515 515
         { title: '临时医嘱', name: 'stat_order', value: 0, is_show: 0},
516
+       
516 517
         { title: '双人核对', name: 'double_check', value: 0, is_show: 2 },
517 518
         { title: '透析上机', name: 'dialysis_computer', value: 0, is_show: 2},
518 519
         { title: '透析监测', name: 'dialysis_monitoring', value: 0, is_show: 2 },
519 520
         { title: '透析下机', name: 'dialysis_off', value: 0, is_show: 2},
520 521
         { title: '透后评估', name: 'assessment_after', value: 0, is_show: 1},
521 522
         { title: '治疗小结', name: 'treatment_of', value: 0, is_show: 1},
522
-        { title: '耗材出库', name: 'dialysis_consumables', value: 0, is_show: 0}
523
+        { title: '耗材出库', name: 'dialysis_consumables', value: 0, is_show: 0},
524
+      
525
+       
523 526
       ]
524 527
       if (!isNaN(this.prescribeOne.id) && this.prescribeOne.id > 0 && this.prescribeOne.creater > 0) {
525 528
         steps[1].value = 1

+ 9 - 8
src/pages/main/today/dialysisMonitoring.vue Ver fichero

@@ -12,8 +12,8 @@
12 12
           <th v-if="isShow('体温')" width="40px"> 体温 <br />(℃) </th>
13 13
           <th v-if="isShow('体温1')" width="40px"> 体温 <br />(℃) </th>
14 14
           <th v-if="isShow('血压')" width="60px"> 血压 <br />(mmHg) </th>
15
-          <th v-if="isShow('血压1')" width="60px"> 血压 <br />(mmHg) </th>
16
-          <th v-if="isShow('拒测血压')" width="60px"> m <br />血压 </th>
15
+          <th v-if="isShow('血压1')" width="60px"> 血压 <br />(mmHg)</th>
16
+          <th v-if="isShow('拒测血压')" width="60px">血压<br />(mmHg)</th>
17 17
           <th v-if="isShow('脉搏')" width="50px"> 脉搏 <br />(次/分) </th>
18 18
           <th v-if="isShow('脉搏1')" width="50px"> 脉搏 <br />(次/分) </th>
19 19
           <th v-if="isShow('呼吸频率')" width="70px"> 呼吸频率 <br />(次/分) </th>
@@ -22,11 +22,11 @@
22 22
           <th v-if="isShow('血流量1')" width="60px"> 血流量 <br />(ml/min) </th>
23 23
           <th v-if="isShow('跨膜压')" width="60px">  跨膜压 <br />({{tableDate[0]&&tableDate[0]['transmembrane_pressure_type'] == 2 ? 'kpa' : 'mmHg'}}) </th>
24 24
           <th v-if="isShow('跨膜压1')" width="60px">  跨膜压 <br />({{tableDate[0]&&tableDate[0]['transmembrane_pressure_type'] == 2 ? 'kpa' : 'mmHg'}}) </th>
25
-          <th v-if="isShow('超滤量') && (template_id == 5 || template_id == 6 ||template_id == 10 || template_id == 11 || template_id == 13 || template_id == 17 || template_id == 18 || template_id == 19 || template_id == 20 || template_id == 21 || template_id == 22 || template_id == 23 || template_id == 24 || template_id == 26 || org_id == 9555 || template_id == 27 || template_id == 29 || template_id == 30 || template_id == 31 || template_id == 9 || template_id == 32 || template_id == 34 || template_id == 35 || template_id == 36 || template_id == 38 || template_id == 40 || template_id == 41 || template_id == 43 || template_id == 44 || template_id == 46 || template_id == 47 || template_id == 53 || template_id == 54 || template_id == 56  || template_id == 60 || template_id == 65 || org_id == 10340 || org_id == 10432 || org_id == 10410 || org_id == 10485 || org_id == 10375 || org_id == 10480 || org_id == 10551 || org_id == 10597 || org_id == 10599 || org_id ==10612 || org_id ==10580 || org_id ==10629 || org_id ==10617 || org_id == 10677 || org_id == 10667  || org_id == 10693 || org_id == 10702 || org_id == 10697) && org_id!=10471" width="60px" > 超滤量 <br />(ml) </th>
26
-          <th v-if="isShow('超滤量') && (template_id != 5 && template_id != 6 && template_id != 10 &&template_id != 11 && template_id != 13 && template_id != 17 && template_id != 18 && template_id != 19 && template_id != 20 && template_id != 21 && template_id != 22 && template_id != 23 && template_id != 24 && template_id != 26 && org_id != 9555 && template_id != 27 && template_id != 29 && template_id != 30 && template_id != 31 && template_id !=9 && template_id!=32 && template_id!=34 && template_id!=35 && template_id!=36 && template_id!=38 && template_id!=40 && template_id!=41 && template_id!=43 && template_id!=44  && template_id!=46  && template_id!=47 && template_id!=53 && template_id!=54 && template_id!=56 && template_id!=60 && template_id!=65 && org_id != 10340 && org_id != 10432 && org_id != 10410 && org_id!=10485 && org_id!=10375 && org_id!=10480  && org_id!=10551&& org_id!=10597 && org_id!=10599&&org_id!=10612 && org_id!=10580 && org_id!=10629 && org_id!=10617 && org_id!=10677 && org_id!=10667 && org_id!=10693 && org_id!=10702 && org_id!=10697) || org_id == 10471" width="60px" > 超滤量 <br />(L) </th>
25
+          <th v-if="isShow('超滤量') && (template_id == 5 || template_id == 6 ||template_id == 10 || template_id == 11 || template_id == 13 || template_id == 17 || template_id == 18 || template_id == 19 || template_id == 20 || template_id == 21 || template_id == 22 || template_id == 23 || template_id == 24 || template_id == 26 || org_id == 9555 || template_id == 27 || template_id == 29 || template_id == 30 || template_id == 31 || template_id == 9 || template_id == 32 || template_id == 34 || template_id == 35 || template_id == 36 || template_id == 38 || template_id == 40 || template_id == 41 || template_id == 43 || template_id == 44 || template_id == 46 || template_id == 47 || template_id == 53 || template_id == 54 || template_id == 56  || template_id == 60 || template_id == 65 || org_id == 10340 || org_id == 10432 || org_id == 10410 || org_id == 10485 || org_id == 10375 || org_id == 10480 || org_id == 10551 || org_id == 10597 || org_id == 10599 || org_id ==10612 || org_id ==10580 || org_id ==10629 || org_id ==10617 || org_id == 10677 || org_id == 10667  || org_id == 10693 || org_id == 10702 || org_id == 10697 || org_id ==10635) && org_id!=10471" width="60px" > 超滤量 <br />(ml) </th>
26
+          <th v-if="isShow('超滤量') && (template_id != 5 && template_id != 6 && template_id != 10 &&template_id != 11 && template_id != 13 && template_id != 17 && template_id != 18 && template_id != 19 && template_id != 20 && template_id != 21 && template_id != 22 && template_id != 23 && template_id != 24 && template_id != 26 && org_id != 9555 && template_id != 27 && template_id != 29 && template_id != 30 && template_id != 31 && template_id !=9 && template_id!=32 && template_id!=34 && template_id!=35 && template_id!=36 && template_id!=38 && template_id!=40 && template_id!=41 && template_id!=43 && template_id!=44  && template_id!=46  && template_id!=47 && template_id!=53 && template_id!=54 && template_id!=56 && template_id!=60 && template_id!=65 && org_id != 10340 && org_id != 10432 && org_id != 10410 && org_id!=10485 && org_id!=10375 && org_id!=10480  && org_id!=10551&& org_id!=10597 && org_id!=10599&&org_id!=10612 && org_id!=10580 && org_id!=10629 && org_id!=10617 && org_id!=10677 && org_id!=10667 && org_id!=10693 && org_id!=10702 && org_id!=10697 && org_id!=10635) || org_id == 10471" width="60px" > 超滤量 <br />(L) </th>
27 27
           <th v-if="isShow('超滤量1')" width="60px" > 超滤量 <br />(ml) </th>
28
-          <th v-if="isShow('超滤率') && (template_id ==6 || template_id == 10 || template_id == 11 || template_id == 12 || template_id == 13 || template_id == 17 || template_id == 18 || template_id == 19 || template_id == 20 || template_id == 21 || template_id == 22 || template_id == 23 || template_id == 24 || template_id == 26 || template_id == 31 || template_id == 32 || template_id == 34 || template_id == 35 || template_id == 36 || template_id == 38 || template_id == 41 || template_id == 43 || template_id == 44 || template_id == 46  || template_id == 47  || template_id == 48 || template_id == 53 || template_id == 54 || template_id == 56 || template_id == 60 ||  template_id == 65 || org_id == 10432 || org_id == 10410 || org_id == 10485 || org_id == 10375 || org_id == 10480 || org_id == 10551 || org_id == 10585 || org_id ==10597 || org_id ==10599 || org_id ==10612 || org_id ==10580 || org_id ==10629 || org_id ==10617 || org_id ==10677|| org_id ==10667 || org_id == 10693 || org_id == 10702 || org_id == 10697) && org_id!=10471" width="50px"> 超滤率 <br />(ml/h) </th>
29
-          <th v-if="isShow('超滤率') && (template_id !=6 && template_id !=10 && template_id !=11 && template_id !=12 && template_id !=13 && template_id !=17 && template_id !=18 && template_id !=19 && template_id !=20 && template_id !=21 && template_id !=22 && template_id !=23 && template_id !=24 && template_id !=26 && template_id !=31 && template_id !=32 && template_id !=34 && template_id !=35 && template_id !=36 && template_id !=38 && template_id !=41 && template_id !=43 && template_id !=44 && template_id !=46 && template_id !=47 && template_id !=48 && template_id !=53  && template_id !=54  && template_id !=56 && template_id !=60  && template_id !=65 && org_id != 10432 && org_id != 10410 && org_id!=10485 && org_id!=10375  && org_id!=10480  && org_id!=10551 && org_id!=10597 && org_id!=10599 && org_id!=10612 && org_id!=10580 && org_id!=10629 && org_id!=10617 && org_id!=10677&& org_id!=10667 && org_id!=10693 && org_id!=10702 && org_id!=10697) || org_id == 10471"  width="50px"> 超滤率 <br />(L/h) </th>
28
+          <th v-if="isShow('超滤率') && (template_id ==6 || template_id == 10 || template_id == 11 || template_id == 12 || template_id == 13 || template_id == 17 || template_id == 18 || template_id == 19 || template_id == 20 || template_id == 21 || template_id == 22 || template_id == 23 || template_id == 24 || template_id == 26 || template_id == 31 || template_id == 32 || template_id == 34 || template_id == 35 || template_id == 36 || template_id == 38 || template_id == 41 || template_id == 43 || template_id == 44 || template_id == 46  || template_id == 47  || template_id == 48 || template_id == 53 || template_id == 54 || template_id == 56 || template_id == 60 ||  template_id == 65 || org_id == 10432 || org_id == 10410 || org_id == 10485 || org_id == 10375 || org_id == 10480 || org_id == 10551 || org_id == 10585 || org_id ==10597 || org_id ==10599 || org_id ==10612 || org_id ==10580 || org_id ==10629 || org_id ==10617 || org_id ==10677|| org_id ==10667 || org_id == 10693 || org_id == 10702 || org_id == 10697 || org_id ==10635) && org_id!=10471" width="50px"> 超滤率 <br />(ml/h) </th>
29
+          <th v-if="isShow('超滤率') && (template_id !=6 && template_id !=10 && template_id !=11 && template_id !=12 && template_id !=13 && template_id !=17 && template_id !=18 && template_id !=19 && template_id !=20 && template_id !=21 && template_id !=22 && template_id !=23 && template_id !=24 && template_id !=26 && template_id !=31 && template_id !=32 && template_id !=34 && template_id !=35 && template_id !=36 && template_id !=38 && template_id !=41 && template_id !=43 && template_id !=44 && template_id !=46 && template_id !=47 && template_id !=48 && template_id !=53  && template_id !=54  && template_id !=56 && template_id !=60  && template_id !=65 && org_id != 10432 && org_id != 10410 && org_id!=10485 && org_id!=10375  && org_id!=10480  && org_id!=10551 && org_id!=10597 && org_id!=10599 && org_id!=10612 && org_id!=10580 && org_id!=10629 && org_id!=10617 && org_id!=10677&& org_id!=10667 && org_id!=10693 && org_id!=10702 && org_id!=10697 && org_id!=10635) || org_id == 10471"  width="50px"> 超滤率 <br />(L/h) </th>
30 30
           <th v-if="isShow('超滤率2')" width="60px">超滤率 <br />(ml/h)</th>
31 31
           <th v-if="isShow('钠浓度')" width="60px"> 钠浓度 <br />(mmol/L) </th>
32 32
           <th v-if="isShow('钠浓度1')" width="60px"> 钠浓度 <br />(mmol/L) </th>
@@ -38,7 +38,7 @@
38 38
           <th v-if="isShow('置换量')&& (template_id == 43 )" width="50px" > 置换量 <br />(ml/h) </th>
39 39
           <th v-if="isShow('置换量')&& ((template_id == 6 && org_id != 9919 && template_id!=43 && org_id!=10478) || (template_id == 10 && org_id!=10191) || template_id == 11 || template_id == 20 || template_id == 26 || template_id == 29  || template_id == 46  || template_id == 47 || template_id == 48 || template_id == 53 || template_id == 54 | template_id == 56 || org_id == 10340 || org_id == 10432) && org_id!=10558 && org_id!=10346&&org_id!=10517 &&org_id!=10598 &&org_id!=10617 &&org_id!=10414 && org_id!=10510" width="50px" > 置换量 <br />(ml) </th>
40 40
           <th v-if="isShow('置换量')&& ((template_id != 6 || org_id == 9919 || org_id ==10478) && (template_id != 10 || org_id == 10191) && template_id != 11 && template_id != 20 && template_id != 26 && template_id != 29 && template_id!=43 && template_id!=46 && template_id!=47  && template_id!=48  && template_id!=53 && template_id!=54 && template_id!=56 && org_id!=10340  && org_id!=10432) || org_id == 10558 || org_id ==10346 || org_id ==10517 || org_id ==10598 || org_id ==10617 || org_id ==10414 || org_id == 10510" width="50px" > 置换量 <br />(L) </th>
41
-          <th v-if="isShow('置换量1')" width="50px" > 置换量 <br />(L) </th>
41
+        
42 42
           <th v-if="isShow('电导度')" width="60px"> 电导度 <br />(mS/cm) </th>
43 43
           <th v-if="isShow('电导度1')" width="60px"> 电导度 <br />(mS/cm) </th>
44 44
           <th v-if="isShow('置换液流量')" width="70px"> 置换液流量 <br /><span v-if="template_id !=27 && template_id!=29 && template_id!=60">(ml/h)</span><span v-if="template_id == 27 || template_id == 29 || template_id ==60">(ml/min)</span>  </th>
@@ -47,6 +47,7 @@
47 47
           <th v-if="isShow('透析液流量1')" width="70px"> 透析液流量 <br />(ml/h)  </th>
48 48
           <th v-if="isShow('肝素用量余量')" width="70px"> 肝素用量余量 <br />(ml) </th>
49 49
           <th v-if="isShow('剩余肝素')" width="70px"> 剩余肝素 <br />(ml) </th>
50
+          <th v-if="isShow('置换量1')" width="50px" > 置换量 <br />(L) </th>
50 51
           <th v-if="isShow('抗凝剂')" width="70px">抗凝剂</th>
51 52
           <th v-if="isShow('累计血容量')&& (template_id!=41) && org_id!=10340" width="50px" > 累计血容量 <br />(ml) </th>
52 53
           <th v-if="isShow('累计血容量')&& (template_id ==41) && org_id!=10340" width="50px" > 累计血容量 <br />(L) </th>
@@ -119,7 +120,6 @@
119 120
           <td v-if="isShow('置换率')">{{ item.replacement_rate ? item.replacement_rate : "" }}</td>
120 121
           <td v-if="isShow('置换率1')">{{ item.replacement_rate_one ? item.replacement_rate_one : "/" }}</td>
121 122
           <td v-if="isShow('置换量')" >{{ item.displacement_quantity ? item.displacement_quantity : "" }}</td>
122
-          <td v-if="isShow('置换量1')" >{{ item.displacement_quantity_one ? item.displacement_quantity_one : "/" }}</td>
123 123
           <th v-if="isShow('电导度')">{{ item.conductivity ? item.conductivity : "" }}</th>
124 124
           <th v-if="isShow('电导度1')">{{ item.conductivity_one ? item.conductivity_one : "/" }}</th>
125 125
           <th v-if="isShow('置换液流量')"> {{ item.displacement_flow_quantity ? item.displacement_flow_quantity : "" }} </th>
@@ -129,6 +129,7 @@
129 129
 
130 130
           <th v-if="isShow('肝素用量余量')"> {{ item.heparin ? item.heparin : "" }} </th>
131 131
           <th v-if="isShow('剩余肝素')"> {{ item.heparin_one ? item.heparin_one : "/" }} </th>
132
+          <td v-if="isShow('置换量1')" >{{ item.displacement_quantity_one ? item.displacement_quantity_one : "/" }}</td>
132 133
           <th v-if="isShow('抗凝剂')">
133 134
             <span v-if="item.monitor_anticoagulant == 0"></span>
134 135
             <span v-if="item.monitor_anticoagulant == 1">无肝素</span>

+ 2 - 2
src/pages/main/today/dialysisPrescription.vue Ver fichero

@@ -26,8 +26,8 @@
26 26
 
27 27
         <li v-if="isShow('处方脱水量')">
28 28
           <label>处方脱水量 :</label>
29
-          <span class="content" v-if="this.$store.getters.user.template_info.org_id !=10597 && this.$store.getters.user.template_info.org_id !=10612  && this.$store.getters.user.template_info.org_id !=10598 && this.$store.getters.user.template_info.org_id !=10679 && this.$store.getters.user.template_info.org_id !=10677 && this.$store.getters.user.template_info.org_id !=10679&& this.$store.getters.user.template_info.org_id !=10702">{{prescription_water != '0'?prescription_water:''}}ml</span>
30
-          <span class="content" v-if="this.$store.getters.user.template_info.org_id ==10597 || this.$store.getters.user.template_info.org_id ==10612 || this.$store.getters.user.template_info.org_id ==10598  || this.$store.getters.user.template_info.org_id ==10679 || this.$store.getters.user.template_info.org_id ==10677 || this.$store.getters.user.template_info.org_id == 10679|| this.$store.getters.user.template_info.org_id == 10702">{{prescription_water != '0'?prescription_water:''}}L</span>
29
+          <span class="content" v-if="this.$store.getters.user.template_info.org_id !=10597 && this.$store.getters.user.template_info.org_id !=10612  && this.$store.getters.user.template_info.org_id !=10598 && this.$store.getters.user.template_info.org_id !=10679 && this.$store.getters.user.template_info.org_id !=10677 && this.$store.getters.user.template_info.org_id !=10679&& this.$store.getters.user.template_info.org_id !=10702 && this.$store.getters.user.template_info.org_id !=10635">{{prescription_water != '0'?prescription_water:''}}ml</span>
30
+          <span class="content" v-if="this.$store.getters.user.template_info.org_id ==10597 || this.$store.getters.user.template_info.org_id ==10612 || this.$store.getters.user.template_info.org_id ==10598  || this.$store.getters.user.template_info.org_id ==10679 || this.$store.getters.user.template_info.org_id ==10677 || this.$store.getters.user.template_info.org_id == 10679|| this.$store.getters.user.template_info.org_id == 10702 || this.$store.getters.user.template_info.org_id == 10635">{{prescription_water != '0'?prescription_water:''}}L</span>
31 31
         </li>
32 32
 
33 33
         <li v-if="isShow('钙')">

+ 6 - 2
src/pages/monitoring/index.vue Ver fichero

@@ -108,7 +108,8 @@
108 108
             <th width="2.2%" rowspan="2">机号</th>
109 109
             <th width="2.5%" rowspan="2">透析号</th>
110 110
             <th width="3%" rowspan="2">透析模式</th>
111
-            <th width="3.5%" rowspan="2">目标超滤量</th>
111
+            <th width="3.5%" rowspan="2" v-if="$store.getters.user.template_info.org_id!=10702">目标超滤量</th>
112
+            <th width="3.5%" rowspan="2" v-if="$store.getters.user.template_info.org_id ==10702">处方脱水量</th>
112 113
             <th width="3.5%" rowspan="2">实际超滤量</th>
113 114
             <th width="4%" rowspan="2">体重(透前/透后)</th>
114 115
             <th width="3%" rowspan="2">透析时长</th>
@@ -188,9 +189,12 @@
188 189
               </span>
189 190
             </span>
190 191
             </td>
191
-            <td width="3.5%">
192
+            <td width="3.5%" v-if="$store.getters.user.template_info.org_id!=10702">
192 193
                 <span v-if="item.prescription!=null">{{item.prescription.target_ultrafiltration? item.prescription.target_ultrafiltration: ""}} </span>
193 194
             </td>
195
+            <td width="3.5%" v-if="$store.getters.user.template_info.org_id == 10702">
196
+                <span v-if="item.prescription!=null">{{item.prescription.prescription_water? item.prescription.prescription_water: ""}} </span>
197
+            </td>
194 198
             <td width="3.5%">
195 199
                 <span v-if="item.assessment_after_dislysis!=null">{{item.assessment_after_dislysis.actual_ultrafiltration? item.assessment_after_dislysis.actual_ultrafiltration: ""}} </span>
196 200
             </td>