Browse Source

11月28 检验检查

yq1 6 months ago
parent
commit
a887fa16e0

+ 3 - 3
src/xt_pages/dialysis/batch_print/batch_print_order_eighty.vue View File

@@ -199,7 +199,7 @@
199 199
                               : ""
200 200
                           }}
201 201
                         </div>
202
-                        
202
+                        /
203 203
                         <div class="under_line" style="width: 50px; text-align: center">
204 204
                           {{
205 205
                             record.assessment_before_dislysis.diastolic_blood_pressure
@@ -603,7 +603,7 @@
603 603
                           <td>
604 604
                             {{
605 605
                               monitor_record.systolic_blood_pressure
606
-                                ? monitor_record.systolic_blood_pressure + ""
606
+                                ? monitor_record.systolic_blood_pressure + "/"
607 607
                                 : ""
608 608
                             }}
609 609
                             {{
@@ -1049,7 +1049,7 @@
1049 1049
                           </span>
1050 1050
                           <span v-else></span>
1051 1051
                         </div>
1052
-                        
1052
+                        /
1053 1053
                         <div class="under_line"
1054 1054
                           style="width: 50px; text-align: center"
1055 1055
                         >

+ 16 - 11
src/xt_pages/dialysis/template/DialysisPrintOrderSeventysix.vue View File

@@ -2164,13 +2164,15 @@ export default {
2164 2164
       ) {
2165 2165
         const obj30 = '首剂'
2166 2166
         checkDate.push(obj30);
2167
-      } if (
2168
-        this.prescription.anticoagulant_weichi == "" &&
2169
-        this.prescription.anticoagulant != 1
2170
-      ) {
2171
-        const obj31 = '维持'
2172
-        checkDate.push(obj31);
2173
-      } if (
2167
+      } 
2168
+      // if (
2169
+      //   this.prescription.anticoagulant_weichi == "" &&
2170
+      //   this.prescription.anticoagulant != 1
2171
+      // ) {
2172
+      //   const obj31 = '维持'
2173
+      //   checkDate.push(obj31);
2174
+      // } 
2175
+      if (
2174 2176
         this.prescription.anticoagulant_zongliang == "" &&
2175 2177
         this.prescription.anticoagulant != 1 &&
2176 2178
         this.prescription.anticoagulant != 5
@@ -2945,10 +2947,13 @@ export default {
2945 2947
     },
2946 2948
     getcheckData(val){
2947 2949
       if(val.length >0){
2948
-        const a = val.join(',')
2949
-        console.log('a',a);
2950
-        this.$message.error(a +" 未填");
2951
-        return a
2950
+        let message = `记录单未填数据:<br/>&nbsp;${val.join("<br/>&nbsp;")}`;
2951
+        this.$alert(message, '提示', {
2952
+          confirmButtonText: '确定',
2953
+          type: 'warning',
2954
+          dangerouslyUseHTMLString: true,
2955
+          
2956
+        });
2952 2957
       }else{
2953 2958
         this.$message.success('核对完成')
2954 2959
       }

+ 7 - 7
src/xt_pages/dialysis/template/DialysisPrintOrderSixtyeight.vue View File

@@ -1565,7 +1565,7 @@
1565 1565
                           style="padding-left: 7px"
1566 1566
                         >
1567 1567
                           <div >
1568
-                            <template v-if="advice.children!=undefined && (org_id==10551||org_id == 0)">
1568
+                            <template v-if="advice.children!=undefined && (org_id==10551)">
1569 1569
                               <div v-for="(item,index) in advice.children" :key="index">
1570 1570
                                 {{ item.advice_name }}
1571 1571
                                 <span v-if="item.advice_desc">
@@ -1578,7 +1578,7 @@
1578 1578
                                 <span v-if="item.single_dose !=''">
1579 1579
                                   {{ item.single_dose}}{{ item.single_dose_unit }}
1580 1580
                                 </span>
1581
-                                
1581
+
1582 1582
                               </div>
1583 1583
                             </template>
1584 1584
                             <span v-if="advice.parent_id > 0">---></span>
@@ -3358,7 +3358,7 @@ export default {
3358 3358
         this.users = response.data.data.users;
3359 3359
         this.patientInfo = response.data.data.patientInfo;
3360 3360
         console.log('response.data.data',response.data.data);
3361
-        
3361
+
3362 3362
         this.patientInfo.birth = uParseTime(
3363 3363
           this.patientInfo.birthday,
3364 3364
           "{y}-{m}-{d}"
@@ -3756,14 +3756,14 @@ export default {
3756 3756
           }
3757 3757
         }
3758 3758
 
3759
-        if(this.org_id ==10551 ||this.org_id ==0){
3759
+        if(this.org_id ==10551){
3760 3760
           for(let i in this.doctor_advices){
3761 3761
             if(this.doctor_advices[i].parent_id >0){
3762 3762
               this.doctor_advices.splice(i,1)
3763 3763
             }
3764 3764
           }
3765 3765
         }
3766
-        
3766
+
3767 3767
 
3768 3768
         this.totollength = this.doctor_advices.length + this.monitors.length;
3769 3769
         console.log("this.totollength",this.totollength)
@@ -3779,11 +3779,11 @@ export default {
3779 3779
               doctor_advices_2.push(element);
3780 3780
             }
3781 3781
           }
3782
-          
3782
+
3783 3783
           this.doctor_advices = doctor_advices_1;
3784 3784
           this.doctor_advices_2 = doctor_advices_2;
3785 3785
         }
3786
-        
3786
+
3787 3787
       } else {
3788 3788
         this.loading = false;
3789 3789
         this.$message.error("请求数据失败");

+ 10 - 6
src/xt_pages/dialysis/template/DialysisPrintOrderSop.vue View File

@@ -39,7 +39,7 @@
39 39
                     <label-box :isChecked="predialysis.symptom_before_dialysis_other==''?true :false" showValue="无特殊"></label-box>&nbsp;
40 40
                     <label-box :isChecked="predialysis.symptom_before_dialysis_other!=''?true :false" showValue="出现:"></label-box>
41 41
                   <!-- </span> -->
42
-                  
42
+
43 43
                   <!-- <span>{{predialysis.symptom_before_dialysis}}</span> -->
44 44
                   <span>{{predialysis.symptom_before_dialysis_other}}</span>
45 45
                 </div>
@@ -166,6 +166,7 @@
166 166
                             predialysis.blood_access_part_opera_name!='临时静脉导管' &&
167 167
                             predialysis.blood_access_part_opera_name!=''?true :false" showValue="其它">
168 168
                 </label-box>
169
+
169 170
               </div>&nbsp;&nbsp;
170 171
               <div style="display: inline-block;line-height: 30px;">
171 172
                 穿刺者:
@@ -503,7 +504,7 @@ export default {
503 504
         (this.prescription.mode_id == 2 || this.prescription.mode_id == 5 || this.prescription.mode_id == 12)){
504 505
           const obj3 = "置换量"
505 506
           checkDate.push(obj3)
506
-      } if(this.afterdialysis.actual_treatment_hour == '' && 
507
+      } if(this.afterdialysis.actual_treatment_hour == '' &&
507 508
           this.afterdialysis.actual_treatment_minute == ''
508 509
       ){
509 510
         const obj4 = "治疗时间"
@@ -1270,10 +1271,13 @@ export default {
1270 1271
     },
1271 1272
     getcheckData(val){
1272 1273
       if(val.length >0){
1273
-        const a = val.join(',')
1274
-        console.log('a',a);
1275
-        this.$message.error(a +" 未填");
1276
-        return a
1274
+        let message = `记录单未填数据:<br/>&nbsp;${val.join("<br/>&nbsp;")}`;
1275
+        this.$alert(message, '提示', {
1276
+          confirmButtonText: '确定',
1277
+          type: 'warning',
1278
+          dangerouslyUseHTMLString: true,
1279
+          
1280
+        });
1277 1281
       }else{
1278 1282
         this.$message.success('核对完成')
1279 1283
       }

+ 11 - 10
src/xt_pages/dialysis/template/DialysisPrintOrdereighty.vue View File

@@ -186,7 +186,7 @@
186 186
                             : ""
187 187
                         }}
188 188
                       </div>
189
-                      
189
+                      /
190 190
                       <div class="under_line" style="width: 50px; text-align: center">
191 191
                         {{
192 192
                           predialysis.diastolic_blood_pressure
@@ -584,7 +584,7 @@
584 584
                       </tr>
585 585
                       <tr v-for="(monitor, monindex) in monitors" :key="monindex" style="">
586 586
                         <td>{{ getTime(monitor.operate_time, "{h}:{i}") }}</td>
587
-                        <td>{{monitor.systolic_blood_pressure? monitor.systolic_blood_pressure + " ": ""}}
587
+                        <td>{{monitor.systolic_blood_pressure? monitor.systolic_blood_pressure + "/": ""}}
588 588
                           {{monitor.diastolic_blood_pressure? monitor.diastolic_blood_pressure: ""}}</td>
589 589
                         <td>{{ monitor.pulse_frequency? monitor.pulse_frequency: ""}}</td>
590 590
                         <td>{{monitor.blood_flow_volume? monitor.blood_flow_volume: ""}}</td>
@@ -889,7 +889,7 @@
889 889
                           </span>
890 890
                            <span v-else></span>
891 891
                       </div>
892
-                      
892
+                      /
893 893
                       <div
894 894
                         class="under_line"
895 895
                         style="width: 50px; text-align: center"
@@ -959,10 +959,9 @@
959 959
                       导管:
960 960
                       <div class="under_line"
961 961
                         style="width: 75%; text-align: center;white-space: normal;"
962
-                      >
963
-                        {{
964
-                          afterdialysis.catheter ? afterdialysis.catheter : ""
965
-                        }}
962
+                      > 
963
+
964
+                          {{ afterdialysis.catheter ? afterdialysis.catheter : ""}}
966 965
                       </div>
967 966
                     </div>
968 967
                     <div class="inline_block" style="flex: 2">
@@ -1034,11 +1033,13 @@
1034 1033
                       <div class="under_line"
1035 1034
                         style="width: 70px; text-align: center"
1036 1035
                       >
1037
-                        {{
1038
-                          afterdialysis.dialysis_intakes
1036
+                        <span>
1037
+                          {{ afterdialysis.dialysis_intakes
1039 1038
                             ? afterdialysis.dialysis_intakes
1040 1039
                             : ""
1041
-                        }}
1040
+                          }}
1041
+                        </span>
1042
+                        
1042 1043
                       </div>
1043 1044
 
1044 1045
                       {{ getUnit(afterdialysis.dialysis_intakes_unit) }}