Browse Source

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

28169 1 week ago
parent
commit
ce508a710e

+ 7 - 1
src/xt_pages/dialysis/batch_print/batch_print_order_seven.vue View File

43
                   <td width="50">年 龄:</td>
43
                   <td width="50">年 龄:</td>
44
                   <td width="180">
44
                   <td width="180">
45
                     <div class="under-line">
45
                     <div class="under-line">
46
-                      &nbsp;{{ checkIdCardNo(record.patient.id_card_no) }}
46
+                      &nbsp;
47
+                      <span v-if="checkIdCardNo(record.patient.id_card_no)<100">
48
+                        {{ checkIdCardNo(record.patient.id_card_no) }}
49
+                      </span>
50
+                      <span v-else>
51
+                        {{ record.patient.age }}
52
+                      </span>
47
                     </div>
53
                     </div>
48
                   </td>
54
                   </td>
49
                   <td width="80">岁</td>
55
                   <td width="80">岁</td>

+ 2 - 1
src/xt_pages/dialysis/template/DialysisPrintOrderFortySeven.vue View File

1300
                             {{
1300
                             {{
1301
                               monitor.displacement_quantity
1301
                               monitor.displacement_quantity
1302
                                 ? monitor.displacement_quantity
1302
                                 ? monitor.displacement_quantity
1303
-                                : ""
1303
+                                : "0"
1304
                             }}
1304
                             }}
1305
                           </span>
1305
                           </span>
1306
                         </td>
1306
                         </td>
3040
 
3040
 
3041
         this.users = response.data.data.users;
3041
         this.users = response.data.data.users;
3042
         this.patientInfo = response.data.data.patientInfo;
3042
         this.patientInfo = response.data.data.patientInfo;
3043
+        console.log('this.patientInfo11111',this.patientInfo);
3043
 
3044
 
3044
         this.patientInfo.birth = uParseTime(
3045
         this.patientInfo.birth = uParseTime(
3045
           this.patientInfo.birthday,
3046
           this.patientInfo.birthday,

+ 9 - 2
src/xt_pages/dialysis/template/DialysisPrintOrderSeven.vue View File

26
               <td width="50">年 龄:</td>
26
               <td width="50">年 龄:</td>
27
               <td width="150">
27
               <td width="150">
28
                 <div class="under-line">
28
                 <div class="under-line">
29
-                  &nbsp;{{ checkIdCardNo(patientInfo.id_card_no) }}
29
+                  &nbsp;
30
+                  <span v-if="checkIdCardNo(patientInfo.id_card_no)<100">
31
+                    {{ checkIdCardNo(patientInfo.id_card_no) }}
32
+                  </span>
33
+                  <span v-else>
34
+                    {{ patientInfo.age }}
35
+                  </span>
30
                 </div>
36
                 </div>
31
               </td>
37
               </td>
32
               <td width="60">岁</td>
38
               <td width="60">岁</td>
914
       getDialysisRecord(this.queryParams).then(response => {
920
       getDialysisRecord(this.queryParams).then(response => {
915
         if (response.data.state === 1) {
921
         if (response.data.state === 1) {
916
           this.total = response.data.data.total;
922
           this.total = response.data.data.total;
917
-
923
+          console.log('response.data.data',response.data.data);
924
+          
918
           this.adminUser = response.data.data.users;
925
           this.adminUser = response.data.data.users;
919
           this.users = response.data.data.users;
926
           this.users = response.data.data.users;
920
           var patientInfo = response.data.data.patientInfo;
927
           var patientInfo = response.data.data.patientInfo;

+ 1 - 1
src/xt_pages/dialysis/template/DialysisPrintOrderSeventythree.vue View File

105
           </div>
105
           </div>
106
         </div>
106
         </div>
107
         <div class="row">
107
         <div class="row">
108
-          <div class="inline_block" style="margin-left: 10px">
108
+          <div class="inline_block" style="">
109
             透析日期:
109
             透析日期:
110
             <div class="under_line"
110
             <div class="under_line"
111
               style="width: 120px;text-align: left;
111
               style="width: 120px;text-align: left;

+ 10 - 2
src/xt_pages/dialysis/template/DialysisPrintOrderThirtyOne.vue View File

472
                   <span v-if="monitor.venous_pressure||monitor.arterial_pressure">/</span>
472
                   <span v-if="monitor.venous_pressure||monitor.arterial_pressure">/</span>
473
                   {{ monitor.arterial_pressure ? monitor.arterial_pressure : "" }}
473
                   {{ monitor.arterial_pressure ? monitor.arterial_pressure : "" }}
474
                 </td>
474
                 </td>
475
-                <td>&nbsp;{{monitor.ultrafiltration_volume==0 && monitor.id?'0':monitor.ultrafiltration_volume}}</td>
475
+                <td>&nbsp;
476
+                  <span v-if="monitor.operate_time <= dialysisOrder.end_time">
477
+                    {{monitor.ultrafiltration_volume==0 && monitor.id?'0':monitor.ultrafiltration_volume}}
478
+                  </span>
479
+                </td>
476
                 <td>&nbsp;{{monitor.transmembrane_pressure?monitor.transmembrane_pressure:''}}</td>
480
                 <td>&nbsp;{{monitor.transmembrane_pressure?monitor.transmembrane_pressure:''}}</td>
477
                 <td>&nbsp;{{monitor.conductivity?monitor.conductivity:''}}</td>
481
                 <td>&nbsp;{{monitor.conductivity?monitor.conductivity:''}}</td>
478
                 <td>&nbsp;{{monitor.dialysate_temperature ? monitor.dialysate_temperature : ''}}</td>
482
                 <td>&nbsp;{{monitor.dialysate_temperature ? monitor.dialysate_temperature : ''}}</td>
479
                 <!-- <td>&nbsp; <span v-if="monitor.operate_time"> {{ monitor.dialysate_flow ? monitor.dialysate_flow : "" }} </span></td> -->
483
                 <!-- <td>&nbsp; <span v-if="monitor.operate_time"> {{ monitor.dialysate_flow ? monitor.dialysate_flow : "" }} </span></td> -->
480
-                <td>&nbsp;{{monitor.ultrafiltration_rate?monitor.ultrafiltration_rate:'0'}}</td>
484
+                <td>&nbsp;
485
+                  <span v-if="monitor.operate_time <= dialysisOrder.end_time">
486
+                    {{monitor.ultrafiltration_rate?monitor.ultrafiltration_rate:'0'}}
487
+                  </span>
488
+                </td>
481
                 <td>
489
                 <td>
482
                   <span v-if="monitor.symptom"> {{ monitor.symptom }} </span>
490
                   <span v-if="monitor.symptom"> {{ monitor.symptom }} </span>
483
                   <span v-if="monitor.dispose"> {{ "  " + monitor.dispose }} </span>
491
                   <span v-if="monitor.dispose"> {{ "  " + monitor.dispose }} </span>

+ 0 - 1
src/xt_pages/outpatientCharges/statementPrint.vue View File

83
             org_id != 10191 &&org_id != 10210 &&org_id != 10485  &&org_id != 10480 &&
83
             org_id != 10191 &&org_id != 10210 &&org_id != 10485  &&org_id != 10480 &&
84
             org_id != 10510 &&org_id != 10633 && org_id != 10721   && this.paramsObj.balance_accounts_type == 2">
84
             org_id != 10510 &&org_id != 10633 && org_id != 10721   && this.paramsObj.balance_accounts_type == 2">
85
       </privateChargePrint>
85
       </privateChargePrint>
86
-
87
     </div>
86
     </div>
88
   </div>
87
   </div>
89
 </template>
88
 </template>

+ 1 - 2
src/xt_pages/outpatientDoctorStation/components/dialysishistory.vue View File

306
 
306
 
307
     },
307
     },
308
     rowclick(event){
308
     rowclick(event){
309
+      console.log('111111event',event.patient_id);
309
       this.$router.push({
310
       this.$router.push({
310
         path: "/dialysis/details/indexs",
311
         path: "/dialysis/details/indexs",
311
         query: { patient_id: event.patient_id, date: event.dialysis_date }
312
         query: { patient_id: event.patient_id, date: event.dialysis_date }
319
 
320
 
320
     },
321
     },
321
     getPatientDialysisRecords() {
322
     getPatientDialysisRecords() {
322
-      console.log("prams--------------------",this.queryParams)
323
       getPatientDialysisRecords(this.queryParams).then(response => {
323
       getPatientDialysisRecords(this.queryParams).then(response => {
324
         if (response.data.state == 1) {
324
         if (response.data.state == 1) {
325
           this.total = response.data.data.total;
325
           this.total = response.data.data.total;
370
       }
370
       }
371
     },
371
     },
372
     setAnticoagulantsConfit(prescription) {
372
     setAnticoagulantsConfit(prescription) {
373
-      console.log("透析处方----------------",prescription)
374
       if (typeof this.anticoagulantsConfit[prescription.anticoagulant] ==="undefined") {
373
       if (typeof this.anticoagulantsConfit[prescription.anticoagulant] ==="undefined") {
375
         return "";
374
         return "";
376
       } else {
375
       } else {

+ 3 - 1
src/xt_pages/outpatientDoctorStation/doctorDesk.vue View File

2745
     },
2745
     },
2746
 
2746
 
2747
     choosePatient(val) {
2747
     choosePatient(val) {
2748
+      console.log('1234567890',val);
2749
+      
2748
       if (this.titleType == '电子病历') {
2750
       if (this.titleType == '电子病历') {
2749
         if (this.$refs.child != undefined && this.$refs.child.watchSign > 2) {
2751
         if (this.$refs.child != undefined && this.$refs.child.watchSign > 2) {
2750
           this.$confirm('是否保存当前病例', '保存', {
2752
           this.$confirm('是否保存当前病例', '保存', {
4734
           this.$refs.child.watchSign = 0
4736
           this.$refs.child.watchSign = 0
4735
         }
4737
         }
4736
       }else if(this.titleType == '透析历史'){
4738
       }else if(this.titleType == '透析历史'){
4737
-
4739
+        this.patientid = val.id
4738
          this.$refs.childOne.show(this.patientid)
4740
          this.$refs.childOne.show(this.patientid)
4739
       } else {
4741
       } else {
4740
 
4742
 

+ 15 - 4
src/xt_pages/user/inspection.vue View File

1350
               console.log("item=-----------------12",inspectionsMap[items[index].id],inspectionsMap[parseInt(items[index].item_id)])
1350
               console.log("item=-----------------12",inspectionsMap[items[index].id],inspectionsMap[parseInt(items[index].item_id)])
1351
               if (item.item_id > 0) {
1351
               if (item.item_id > 0) {
1352
                 console.log('执行0',inspectionsMap[items[index].id]);
1352
                 console.log('执行0',inspectionsMap[items[index].id]);
1353
+
1353
                 if (typeof(inspectionsMap[parseInt(items[index].item_id)])  == "undefined") {
1354
                 if (typeof(inspectionsMap[parseInt(items[index].item_id)])  == "undefined") {
1354
                   if(this.org_id == 10121 || this.org_id ==10138 || this.org_id ==10278 ){
1355
                   if(this.org_id == 10121 || this.org_id ==10138 || this.org_id ==10278 ){
1355
                     item.value = inspectionsMap[items[index].id].inspect_value
1356
                     item.value = inspectionsMap[items[index].id].inspect_value
1356
                     item.item_name = inspectionsMap[items[index].id].item_name
1357
                     item.item_name = inspectionsMap[items[index].id].item_name
1357
                   }else{
1358
                   }else{
1358
                     console.log('执行3',inspectionsMap,item);
1359
                     console.log('执行3',inspectionsMap,item);
1359
-                    if(item.project_name == '血常规'){
1360
-                      item.value = inspectionsMap[items[index].id].inspect_value.replace(/&lt;/g, "<").replace(/&gt;/g, ">")
1361
-                      item.item_name = inspectionsMap[items[index].id].item_name
1362
-                    }else{
1360
+                    if(this.org_id == 10702 || this.org_id == 0){
1361
+                      if(item.project_name == '血常规'|| item.project_name == '透后肾功能' || 
1362
+                          item.project_name == '肝功能' || item.project_name == '电解质' || item.project_name == '透前肾功能'
1363
+                        ){
1364
+                        console.log('11111',inspectionsMap[items[index].id].inspect_value);
1365
+                        item.value = inspectionsMap[items[index].id].inspect_value.replace(/&lt;/g, "<").replace(/&gt;/g, ">")
1366
+                        item.item_name = inspectionsMap[items[index].id].item_name
1367
+                      }else{
1368
+                        
1369
+                        item.value = ''
1370
+                        item.item_name = ''
1371
+                      }
1372
+                    } else{
1363
                       item.value = ''
1373
                       item.value = ''
1364
                       item.item_name = ''
1374
                       item.item_name = ''
1365
                     }
1375
                     }
1369
                   item.value = inspectionsMap[items[index].item_id].inspect_value.replace(/&lt;/g, "<").replace(/&gt;/g, ">")
1379
                   item.value = inspectionsMap[items[index].item_id].inspect_value.replace(/&lt;/g, "<").replace(/&gt;/g, ">")
1370
                   item.item_name = inspectionsMap[items[index].item_id].item_name
1380
                   item.item_name = inspectionsMap[items[index].item_id].item_name
1371
                 }
1381
                 }
1382
+               
1372
 
1383
 
1373
                 if(this.org_id ==10191){
1384
                 if(this.org_id ==10191){
1374
                   if(item.project_name == "乙肝定性(五项)"){
1385
                   if(item.project_name == "乙肝定性(五项)"){