Browse Source

新分支

28169 1 year ago
parent
commit
59de288ac0

+ 9 - 0
src/api/role/admin.js View File

309
     method:"get",
309
     method:"get",
310
     params:params,
310
     params:params,
311
   })
311
   })
312
+}
313
+
314
+export function toCheckPDFInformation(params){
315
+  
316
+  return request({
317
+    url:"/api/device/tocheckinformation",
318
+    method:"Get",
319
+    params:params,
320
+  })
312
 }
321
 }

+ 15 - 17
src/xt_pages/dialysis/details/dialog/AssessmentAfterDislysis.vue View File

569
         </el-col>
569
         </el-col>
570
         <el-col :span="8" v-if="isShow('意识')">
570
         <el-col :span="8" v-if="isShow('意识')">
571
             <el-form-item label="意识" :prop="isName('意识')" :rules="isCheckmust('意识')">
571
             <el-form-item label="意识" :prop="isName('意识')" :rules="isCheckmust('意识')">
572
-             <el-select v-model="form.consciousness "    > 
572
+             <el-select v-model="form.consciousness "    >
573
              <!-- v-if="form.consciousness ==' ' ? placeholder='请选择': form.consciousness " -->
573
              <!-- v-if="form.consciousness ==' ' ? placeholder='请选择': form.consciousness " -->
574
              <el-option label="请选择" :value="0"></el-option>
574
              <el-option label="请选择" :value="0"></el-option>
575
               <el-option
575
               <el-option
579
                 :key="item.id"
579
                 :key="item.id"
580
               ></el-option>
580
               ></el-option>
581
              </el-select>
581
              </el-select>
582
-             
582
+
583
             </el-form-item>
583
             </el-form-item>
584
         </el-col>
584
         </el-col>
585
         <el-col :span="8" v-if="isShow('跌倒风险')">
585
         <el-col :span="8" v-if="isShow('跌倒风险')">
608
                   :key="item.value"
608
                   :key="item.value"
609
                 ></el-option>
609
                 ></el-option>
610
               </el-select>
610
               </el-select>
611
-              
611
+
612
             </el-form-item>
612
             </el-form-item>
613
        </el-col>
613
        </el-col>
614
 
614
 
643
           type="primary"
643
           type="primary"
644
           @click="submitForm('form')"
644
           @click="submitForm('form')"
645
           :loading="loading"
645
           :loading="loading"
646
-          
646
+
647
           >保 存</el-button>
647
           >保 存</el-button>
648
           <!-- v-if="hasPermission" -->
648
           <!-- v-if="hasPermission" -->
649
       </span>
649
       </span>
680
                 </span>
680
                 </span>
681
              </el-row>
681
              </el-row>
682
            </el-form>
682
            </el-form>
683
-         
683
+
684
           </span>
684
           </span>
685
           <span slot="footer" class="dialog-footer">
685
           <span slot="footer" class="dialog-footer">
686
             <el-button @click="infoDialogVisible = false">取 消</el-button>
686
             <el-button @click="infoDialogVisible = false">取 消</el-button>
858
         machine_run:0,
858
         machine_run:0,
859
         after_urea:"",
859
         after_urea:"",
860
         accumulated_blood_volume:"",
860
         accumulated_blood_volume:"",
861
-     
861
+
862
       },
862
       },
863
       lapseList:[],
863
       lapseList:[],
864
       leaveOfficeMethod:[],
864
       leaveOfficeMethod:[],
1004
           filedList[i].is_write == 1 &&
1004
           filedList[i].is_write == 1 &&
1005
           filedList[i].is_show == 1
1005
           filedList[i].is_show == 1
1006
         ) {
1006
         ) {
1007
-          
1007
+
1008
           if(name == "穿刺处血肿" || name == '拔针后穿刺点渗血' || name == '透析期间进食' ){
1008
           if(name == "穿刺处血肿" || name == '拔针后穿刺点渗血' || name == '透析期间进食' ){
1009
             return [
1009
             return [
1010
               { required: true, message: `请选择${name}`,trigger: ['blur','change'] },
1010
               { required: true, message: `请选择${name}`,trigger: ['blur','change'] },
1016
               // },
1016
               // },
1017
             ];
1017
             ];
1018
           }
1018
           }
1019
-            
1019
+
1020
           return [{ required: true ,message:`请输入${name}`, trigger: ['blur','change'] }];
1020
           return [{ required: true ,message:`请输入${name}`, trigger: ['blur','change'] }];
1021
-          
1021
+
1022
         }
1022
         }
1023
       }
1023
       }
1024
     },
1024
     },
1044
             filedList[i].is_write == 1 &&
1044
             filedList[i].is_write == 1 &&
1045
             filedList[i].is_show == 1
1045
             filedList[i].is_show == 1
1046
           ) {
1046
           ) {
1047
-            
1047
+
1048
             // if(name == "其他观察内容"){
1048
             // if(name == "其他观察内容"){
1049
             //   return [
1049
             //   return [
1050
             //     { required: true, message: `请输入${name}`,trigger: ['blur','change'] },
1050
             //     { required: true, message: `请输入${name}`,trigger: ['blur','change'] },
1057
             //   ];
1057
             //   ];
1058
             // }
1058
             // }
1059
             return [{ required: true ,message:`请输入${name}`, trigger: ['blur','change'] }];
1059
             return [{ required: true ,message:`请输入${name}`, trigger: ['blur','change'] }];
1060
-            
1060
+
1061
           }
1061
           }
1062
         }
1062
         }
1063
       }
1063
       }
1076
       }
1076
       }
1077
       return false
1077
       return false
1078
     },
1078
     },
1079
-   
1079
+
1080
     submitForm(formName) {
1080
     submitForm(formName) {
1081
       this.$refs[formName].validate((valid)=>{
1081
       this.$refs[formName].validate((valid)=>{
1082
         if(valid){
1082
         if(valid){
1181
           data["after_urea"] = this.form.after_urea
1181
           data["after_urea"] = this.form.after_urea
1182
           data["pip_coagulation"] = this.form.pip_coagulation
1182
           data["pip_coagulation"] = this.form.pip_coagulation
1183
           data["accumulated_blood_volume"] = this.form.accumulated_blood_volume
1183
           data["accumulated_blood_volume"] = this.form.accumulated_blood_volume
1184
-       
1184
+
1185
           console.log("Data",data)
1185
           console.log("Data",data)
1186
           console.log("Paramsquery",data)
1186
           console.log("Paramsquery",data)
1187
 
1187
 
1347
 
1347
 
1348
     // 数据开始
1348
     // 数据开始
1349
     show(predialysis,last_after) {
1349
     show(predialysis,last_after) {
1350
-      console.log("透后体重2332233223wo",predialysis)
1351
-      // console.log('asdfadsfdasf',this.form.consciousness);
1352
       this.isVisibility = true
1350
       this.isVisibility = true
1353
       this.predialysis = predialysis
1351
       this.predialysis = predialysis
1354
       this.form.observation_content = predialysis.observation_content
1352
       this.form.observation_content = predialysis.observation_content
1423
     hide() {
1421
     hide() {
1424
       this.isVisibility = false
1422
       this.isVisibility = false
1425
     },
1423
     },
1426
-    
1424
+
1427
     setRecords(records) {
1425
     setRecords(records) {
1428
       for (var index in records) {
1426
       for (var index in records) {
1429
         this.$set(this.assessment_after_dislysis, index, records[index])
1427
         this.$set(this.assessment_after_dislysis, index, records[index])
1516
     this.consciousnessList = getDataConfig("hemodialysis","consciousness")
1514
     this.consciousnessList = getDataConfig("hemodialysis","consciousness")
1517
     this.fallriskList = getDataConfig("hemodialysis","fallrisk")
1515
     this.fallriskList = getDataConfig("hemodialysis","fallrisk")
1518
      this.machineList = getDataConfig("hemodialysis","machine_run")
1516
      this.machineList = getDataConfig("hemodialysis","machine_run")
1519
-     
1517
+
1520
     this.internalFistulaTremorAcOptions = this.$store.getters.internal_fistula_tremor_ac
1518
     this.internalFistulaTremorAcOptions = this.$store.getters.internal_fistula_tremor_ac
1521
     this.patientGoseOptions = this.$store.getters.patient_gose
1519
     this.patientGoseOptions = this.$store.getters.patient_gose
1522
     this.observationContentOptions = this.$store.getters.observation_content
1520
     this.observationContentOptions = this.$store.getters.observation_content

+ 3 - 4
src/xt_pages/dialysis/details/dialog/assessmentBeforeDislysisDialog.vue View File

1105
       },
1105
       },
1106
 
1106
 
1107
       show(assessment, lastDryWeightDislysis,last_predialysis_evaluation,lastAssessment,record_date) {
1107
       show(assessment, lastDryWeightDislysis,last_predialysis_evaluation,lastAssessment,record_date) {
1108
-        console.log("dryWeightList",this.dryWeightList)
1109
-        console.log("doclist",this.docList)
1108
+      
1110
         let filedList = store.getters.xt_user.fileds;
1109
         let filedList = store.getters.xt_user.fileds;
1111
-        console.log(filedList,'filedList')
1110
+       
1112
         this.lastPredialysisEvaluation = last_predialysis_evaluation
1111
         this.lastPredialysisEvaluation = last_predialysis_evaluation
1113
         console.log("获取上次数据",this.lastPredialysisEvaluation, this.$store.getters.xt_user.org.id )
1112
         console.log("获取上次数据",this.lastPredialysisEvaluation, this.$store.getters.xt_user.org.id )
1114
 
1113
 
1115
         if(record_date!=null && record_date!=undefined){
1114
         if(record_date!=null && record_date!=undefined){
1116
            this.record_date = record_date
1115
            this.record_date = record_date
1117
         }
1116
         }
1118
-        console.log("日期23333333333我",this.record_date)
1117
+       
1119
         if(this.lastPredialysisEvaluation != null) {
1118
         if(this.lastPredialysisEvaluation != null) {
1120
         // if(this.lastPredialysisEvaluation.remark == "" && this.$store.getters.xt_user.org.id == 10307){
1119
         // if(this.lastPredialysisEvaluation.remark == "" && this.$store.getters.xt_user.org.id == 10307){
1121
         //     console.log("2o2o3232o23o2o3o23")
1120
         //     console.log("2o2o3232o23o2o3o23")

+ 253 - 23
src/xt_pages/dialysis/details/index.vue View File

455
       >
455
       >
456
       <div id="print_content">
456
       <div id="print_content">
457
         <div class="print_main_content">
457
         <div class="print_main_content">
458
-          <div class="table_panel">
459
-            <div style="border: 1px solid black;width: 82%;">
458
+          <div class="table_panel" v-for="(main_collection,index) in printList">
459
+            <div style="border: 1px solid black;width: 82%;"  >
460
               <div style="margin: 5px 0;">
460
               <div style="margin: 5px 0;">
461
-                <span style="font-weight: bolder;">柴镜洋</span>&nbsp;&nbsp;<span>男</span>&nbsp;&nbsp;
462
-                <span>37岁</span>&nbsp;&nbsp;<span>2023-9-26</span>&nbsp;&nbsp;
463
-                <span>V区</span>&nbsp;&nbsp;<span>上午</span>&nbsp;&nbsp;<span>V80床</span>
461
+                <span style="font-weight: bolder;">{{main_collection.patient.name}} </span>&nbsp;&nbsp;
462
+                  <span v-if="main_collection.patient.gender==1">男</span>
463
+                  <span v-if="main_collection.patient.gender==2">女</span>
464
+                <span>
465
+
466
+                </span>&nbsp;&nbsp;
467
+                <span>{{getNewAge(main_collection.patient.id_card_no)  }}岁</span>&nbsp;&nbsp;<span>{{getTimes(main_collection.schedule_date)}}</span>&nbsp;&nbsp;
468
+                <span></span>
469
+                  &nbsp;&nbsp;
470
+                  <span>
471
+                    <span style="width:auto;" v-if="main_collection.schedule_type == 1">上午</span>
472
+                    <span style="width:auto;" v-if="main_collection.schedule_type == 2">下午</span>
473
+                    <span style="width:auto;" v-if="main_collection.schedule_type == 3">晚上</span>
474
+                </span>&nbsp;&nbsp;<span>{{ main_collection.number.number }}</span>
464
               </div>
475
               </div>
465
               <div style="margin: 5px 0;">
476
               <div style="margin: 5px 0;">
466
-                <span>身高:180cm</span>&nbsp;&nbsp;<span>干体重:67.2kg</span>&nbsp;&nbsp;
477
+                <span>身高:{{ main_collection.patient.height?main_collection.patient.height:"" }} cm</span>&nbsp;&nbsp;<span>干体重:{{main_collection.assessmentbefor.dry_weight}}kg</span>&nbsp;&nbsp;
467
                  <span>HCT:%</span>&nbsp;&nbsp;<span>KTV目标:</span> 
478
                  <span>HCT:%</span>&nbsp;&nbsp;<span>KTV目标:</span> 
468
               </div>
479
               </div>
469
             </div>
480
             </div>
472
             </div>
483
             </div>
473
             <div style="border: 1px solid black;width: 82%;">
484
             <div style="border: 1px solid black;width: 82%;">
474
               <div style="display: flex;margin: 5px 0;">
485
               <div style="display: flex;margin: 5px 0;">
475
-                <div style="flex: 1;">透析模式:</div>
476
-                <div style="flex: 1;">透析器:</div>
477
-                <div style="flex: 1;">灌流器:</div>
486
+                <div style="flex: 1;">透析模式:{{getModeId(main_collection.mode_id)}}</div>
487
+                <div style="flex: 1;">透析器/灌流器:{{main_collection.prescription.dialyzer_perfusion_apparatus }} </div>
488
+              
478
               </div>
489
               </div>
479
               <div style="display: flex;margin: 5px 0;">
490
               <div style="display: flex;margin: 5px 0;">
480
-                <div style="flex: 1;">血流量:ml/分</div>
481
-                <div style="flex: 1;">置换液总量:L</div>
491
+                <div style="flex: 1;">血流量:{{main_collection.prescription.blood_flow_volume}}ml/min</div>
492
+                <div style="flex: 1;">置换液总量:{{main_collection.prescription.displace_liqui_value}}L</div>
482
               </div>
493
               </div>
483
               <div style="margin: 5px 0;">
494
               <div style="margin: 5px 0;">
484
                 <div>透析液类型:
495
                 <div>透析液类型:
485
-                  <span>Na:138</span>
486
-                  <span>K:2.0</span>
487
-                  <span>Ca:1.5</span>
488
-                  <span>不含HCO3:35</span>
496
+                  <span>Na:{{ main_collection.prescription.sodium }}</span>
497
+                  <span>K:{{ main_collection.prescription.kalium }}</span>
498
+                  <span>Ca:{{main_collection.prescription.calcium }}</span>
499
+                  <span>
500
+                    <span v-if="main_collection.prescription.chaptalization==0"> 不含 </span>
501
+                    <span v-if="main_collection.prescription.chaptalization>0"> 含糖:{{main_collection.prescription.chaptalization}} </span>
502
+                    HCO3:</span>
489
                 </div>
503
                 </div>
490
               </div>
504
               </div>
491
               <div style="display: flex;margin: 5px 0;">
505
               <div style="display: flex;margin: 5px 0;">
494
               </div>
508
               </div>
495
               <div style="margin: 5px 0;">
509
               <div style="margin: 5px 0;">
496
                 <span>抗凝方案:</span>
510
                 <span>抗凝方案:</span>
497
-                <span>低分子肝素钙</span>
498
-                <span>首剂:iu</span>
499
-                <span>追加:iu</span>              
511
+                <span>{{ main_collection.dialysissolution.anticoagulant ? anticoagulants_confit[main_collection.dialysissolution.anticoagulant].name : ''}}</span>
512
+                <span>
513
+                  首剂:<span v-if="main_collection.dialysissolution.anticoagulant == 1">{{main_collection.dialysissolution.anticoagulant_shouji}} mg</span>
514
+                  <span v-if="main_collection.dialysissolution.anticoagulant == 2">
515
+                    {{main_collection.dialysissolution.anticoagulant_shouji}}mg
516
+                  </span>
517
+                  <span v-if="main_collection.dialysissolution.anticoagulant == 3">
518
+                    {{main_collection.dialysissolution.anticoagulant_shouji}}iu
519
+                  </span>
520
+                  <span v-if="main_collection.dialysissolution.anticoagulant == 4">
521
+                  {{main_collection.dialysissolution.anticoagulant_shouji}}mg
522
+                  </span>
523
+                  <span v-if="main_collection.dialysissolution.anticoagulant == 5">
524
+                  {{main_collection.dialysissolution.anticoagulant_shouji}} mg
525
+                  </span>
526
+                  <span v-if="main_collection.dialysissolution.anticoagulant == 6">
527
+                  {{main_collection.dialysissolution.anticoagulant_shouji}}iu
528
+                  </span>
529
+                  <span v-if="main_collection.dialysissolution.anticoagulant == 7">
530
+                    {{main_collection.dialysissolution.anticoagulant_shouji}}iu
531
+                  </span>
532
+                  <span v-if="main_collection.dialysissolution.anticoagulant == 8">
533
+                    {{main_collection.dialysissolution.anticoagulant_shouji}}iu
534
+                  </span>
535
+                  <span v-if="main_collection.dialysissolution.anticoagulant == 9">
536
+                    {{main_collection.dialysissolution.anticoagulant_shouji}}iu
537
+                  </span>
538
+                  <span v-if="main_collection.dialysissolution.anticoagulant == 10">
539
+                    {{main_collection.dialysissolution.anticoagulant_shouji}}iu
540
+                    </span>
541
+                  <span v-if="main_collection.dialysissolution.anticoagulant == 11">
542
+                    {{main_collection.dialysissolution.anticoagulant_shouji}}iu
543
+                  </span>
544
+                </span> 
545
+
546
+                <span>
547
+                  维持:{{main_collection.dialysissolution.anticoagulant_weichi}}
548
+                  <span v-if="main_collection.dialysissolution.anticoagulant == 1">
549
+                    mg/h
550
+                  </span>
551
+                  <span v-if="main_collection.dialysissolution.anticoagulant == 2">
552
+                    mg/h
553
+                  </span>
554
+                  <span v-if="main_collection.dialysissolution.anticoagulant == 3">
555
+                  iu/h
556
+                  </span>
557
+                  <span v-if="main_collection.dialysissolution.anticoagulant == 4">
558
+                    mg/h
559
+                  </span>
560
+                  <span v-if="main_collection.dialysissolution.anticoagulant == 5">
561
+                    mg/h
562
+                  </span>
563
+                  <span v-if="main_collection.dialysissolution.anticoagulant == 6">
564
+                  iu/h
565
+                  </span>
566
+                  <span v-if="main_collection.dialysissolution.anticoagulant == 7">
567
+                  iu/h
568
+                  </span>
569
+                  <span v-if="main_collection.dialysissolution.anticoagulant == 8">
570
+                    iu/h
571
+                  </span>
572
+                  <span v-if="main_collection.dialysissolution.anticoagulant == 9">
573
+                    iu/h
574
+                  </span>
575
+                  <span v-if="main_collection.dialysissolution.anticoagulant == 10">
576
+                    iu/h
577
+                    </span>
578
+                  <span v-if="main_collection.dialysissolution.anticoagulant == 11">
579
+                    iu/h
580
+                  </span>
581
+                </span>  
582
+                
583
+                <span>
584
+                    总量:{{main_collection.dialysissolution.anticoagulant_zongliang}}
585
+                  <span v-if="main_collection.dialysissolution.anticoagulant == 1">
586
+                    mg
587
+                  </span>
588
+                  <span v-if="main_collection.dialysissolution.anticoagulant == 2">
589
+                    mg
590
+                  </span>
591
+                  <span v-if="main_collection.dialysissolution.anticoagulant == 3">
592
+                    iu
593
+                  </span>
594
+                  <span v-if="main_collection.dialysissolution.anticoagulant == 4">
595
+                  mg
596
+                  </span>
597
+                  <span v-if="main_collection.dialysissolution.anticoagulant == 5">
598
+                    mg
599
+                  </span>
600
+                  <span v-if="main_collection.dialysissolution.anticoagulant == 6">
601
+                  iu
602
+                  </span>
603
+                  <span v-if="main_collection.dialysissolution.anticoagulant == 7">
604
+                    iu
605
+                  </span>
606
+                  <span v-if="main_collection.dialysissolution.anticoagulant == 8">
607
+                    iu
608
+                  </span>
609
+                  <span v-if="main_collection.dialysissolution.anticoagulant == 9">
610
+                  iu
611
+                  </span>
612
+                  <span v-if="main_collection.dialysissolution.anticoagulant == 10">
613
+                    iu
614
+                    </span>
615
+                  <span v-if="main_collection.dialysissolution.anticoagulant == 11">
616
+                  iu
617
+                  </span>
618
+                  </span>
500
               </div>
619
               </div>
501
               <div style="margin: 5px 0;">
620
               <div style="margin: 5px 0;">
502
-                血管通路:自体动静脉内瘘
621
+                血管通路:{{getBloodAccess(main_collection.assessmentbefor.blood_access_part_opera_id)   }}
503
               </div>
622
               </div>
504
             </div>
623
             </div>
505
             <div style="border: 1px solid black;width: 82%;">
624
             <div style="border: 1px solid black;width: 82%;">
506
-              <div style="margin: 5px 0;">高危因素:</div>
625
+              <div style="margin: 5px 0;">高危因素:{{ main_collection.prescription.remark }}</div>
507
             </div>
626
             </div>
508
           </div>
627
           </div>
509
         </div>
628
         </div>
1036
   getDialysisSchedules,
1155
   getDialysisSchedules,
1037
   getInitPrintData
1156
   getInitPrintData
1038
 } from '@/api/dialysis_record'
1157
 } from '@/api/dialysis_record'
1158
+import { getDataConfig } from '@/utils/data'
1039
 import { parseTime } from '@/utils'
1159
 import { parseTime } from '@/utils'
1040
 import BreadCrumb from '@/xt_pages/components/bread-crumb'
1160
 import BreadCrumb from '@/xt_pages/components/bread-crumb'
1041
 import print from 'print-js'
1161
 import print from 'print-js'
1162
+import { uParseTime } from '@/utils/tools'
1042
 export default {
1163
 export default {
1043
   name: 'index',
1164
   name: 'index',
1044
   components: {
1165
   components: {
1178
       lastOrder:{},
1299
       lastOrder:{},
1179
       dryWeightList:[],
1300
       dryWeightList:[],
1180
       docList:[],
1301
       docList:[],
1302
+      blood_access_part_opera: [],
1181
     }
1303
     }
1182
   },
1304
   },
1183
   created() {
1305
   created() {
1306
+   this.blood_access_part_opera = getDataConfig('hemodialysis', 'vascular_access_desc')
1307
+   this.org_id = this.$store.getters.xt_user.org.id,
1184
    this.printDate = moment().format("YYYY-MM-DD HH:mm:ss")
1308
    this.printDate = moment().format("YYYY-MM-DD HH:mm:ss")
1185
     if(this.$route.query.showView){
1309
     if(this.$route.query.showView){
1186
       this.showView = this.$route.query.showView
1310
       this.showView = this.$route.query.showView
2247
       let strDate = h  + ':' + m;
2371
       let strDate = h  + ':' + m;
2248
       return strDate;
2372
       return strDate;
2249
     },
2373
     },
2374
+    getTimes(time) {
2375
+      return uParseTime(time, '{y}-{m}-{d}')
2376
+    },
2250
     refresh(){
2377
     refresh(){
2251
       this.requestDialysisSchedules()
2378
       this.requestDialysisSchedules()
2252
     },
2379
     },
2510
       getInitPrintData(params).then(response=>{
2637
       getInitPrintData(params).then(response=>{
2511
         if(response.data.state == 1){
2638
         if(response.data.state == 1){
2512
           var list = response.data.data.list
2639
           var list = response.data.data.list
2640
+          console.log("listwowoowowowowow",list)
2513
           var assessmentAfterDislysis =  response.data.data.assessmentAfterDislysis
2641
           var assessmentAfterDislysis =  response.data.data.assessmentAfterDislysis
2514
-          console.log("list2332322332",list)
2642
+         
2515
           this.printList = list
2643
           this.printList = list
2516
           this.assessmentAfterDislysis = assessmentAfterDislysis
2644
           this.assessmentAfterDislysis = assessmentAfterDislysis
2517
-          this.startVisibility = true
2518
-          // this.centerDialogVisible =true
2645
+        
2646
+          if(this.org_id == 0 || this.org_id ==10469){
2647
+            this.centerDialogVisible = true
2648
+          }else{
2649
+            this.startVisibility = true
2650
+          }
2519
           loading.close()
2651
           loading.close()
2520
         }
2652
         }
2521
       })
2653
       })
2654
+    },
2655
+    getModeId(val){
2656
+      var name =""
2657
+      if(val == 1){
2658
+        name ="HD"
2659
+      }
2660
+      if(val == 2){
2661
+        name ="HDF"
2662
+      }
2663
+      if(val == 3){
2664
+        name ="HD+HP"
2665
+      }
2666
+      if(val == 4){
2667
+        name ="HP"
2668
+      }
2669
+      if(val == 5){
2670
+        name ="HF"
2671
+      }
2672
+      if(val == 6){
2673
+        name ="SCUF"
2674
+      }
2675
+      if(val == 7){
2676
+        name ="IUF"
2677
+      }
2678
+      if(val == 8){
2679
+        name ="IUF"
2680
+      }
2681
+      if(val == 9){
2682
+        name ="HFHD+HP"
2683
+      }
2684
+      if(val == 10){
2685
+        name ="HFHD+HP"
2686
+      }
2687
+      if(val == 11){
2688
+        name ="HFR"
2689
+      }
2690
+      if(val == 12){
2691
+        name ="HDF+HP"
2692
+      }
2693
+      if(val == 13){
2694
+        name ="CRRT"
2695
+      }
2696
+      if(val == 14){
2697
+        name ="腹水回输"
2698
+      }
2699
+      if(val == 19){
2700
+        name ="IUF+HD"
2701
+      }
2702
+      if(val == 20){
2703
+        name ="UF"
2704
+      }
2705
+      if(val == 21){
2706
+        name ="HD+"
2707
+      }
2708
+      if(val == 22){
2709
+        name ="血浆胆红素吸附+HDF"
2710
+      }
2711
+      if(val == 23){
2712
+        name ="血浆胆红素吸附"
2713
+      }
2714
+      if(val == 24){
2715
+        name ="I-HDF"
2716
+      }
2717
+      if(val == 25){
2718
+        name ="HD高通"
2719
+      }
2720
+      if(val == 26){
2721
+        name ="CVVH"
2722
+      }
2723
+      if(val == 27){
2724
+        name ="CVVHD"
2725
+      }
2726
+      if(val == 28){
2727
+        name ="CVVHDF"
2728
+      }
2729
+      if(val == 29){
2730
+        name ="PE"
2731
+      }
2732
+      if(val == 30){
2733
+        name ="血浆胆红素吸附+HP"
2734
+      }
2735
+      if(val == 31){
2736
+        name ="HPD"
2737
+      }
2738
+      if(val == 32){
2739
+        name ="HDP"
2740
+      }
2741
+      return name
2742
+    },
2743
+    getBloodAccess(id){
2744
+        var name = ""
2745
+        for(let i=0;i<this.blood_access_part_opera.length;i++){
2746
+          if(id == this.blood_access_part_opera[i].id){
2747
+             name = this.blood_access_part_opera[i].name
2748
+          }
2749
+        }
2750
+        return name
2522
     }
2751
     }
2752
+    
2523
   }
2753
   }
2524
 }
2754
 }
2525
 </script>
2755
 </script>

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

2059
                   <td
2059
                   <td
2060
                     style="font-size: 16px"
2060
                     style="font-size: 16px"
2061
                     width="10%"
2061
                     width="10%"
2062
-                    v-if="org_id == 10223"
2062
+                    v-if="org_id == 10223 || org_id == 9538"
2063
                   >
2063
                   >
2064
                     核对护士
2064
                     核对护士
2065
                   </td>
2065
                   </td>
2150
                       getTime(advice.execution_time, "{h}:{i}")
2150
                       getTime(advice.execution_time, "{h}:{i}")
2151
                     }}</span>
2151
                     }}</span>
2152
                   </td>
2152
                   </td>
2153
-                  <td height="32px" v-if="org_id == 10223">
2153
+                  <td height="32px" v-if="org_id == 10223 || org_id ==9538">
2154
                     <span v-if="setAdminUserES(advice.checker) == ''">{{
2154
                     <span v-if="setAdminUserES(advice.checker) == ''">{{
2155
                       getAdminUser(advice.checker)
2155
                       getAdminUser(advice.checker)
2156
                     }}</span>
2156
                     }}</span>

+ 18 - 3
src/xt_pages/role/admin.vue View File

187
           @click="toSendInformaton">发送短信验证码</el-button>  -->
187
           @click="toSendInformaton">发送短信验证码</el-button>  -->
188
        
188
        
189
           
189
           
190
-        <!-- <el-button
190
+        <el-button
191
           type="primary"
191
           type="primary"
192
           size="small"
192
           size="small"
193
           icon="el-icon-circle-plus-outline"
193
           icon="el-icon-circle-plus-outline"
194
           style="float:left"
194
           style="float:left"
195
-          @click="toSavePDFInformation">生成PDF</el-button> -->
195
+          @click="toSavePDFInformation">生成PDF</el-button>
196
+
197
+
198
+        <el-button
199
+          type="primary"
200
+          size="small"
201
+          icon="el-icon-circle-plus-outline"
202
+          style="float:left"
203
+          @click="toCheckPDFInformation">PDF验证</el-button>
196
      </div>
204
      </div>
197
     
205
     
198
       
206
       
491
 
499
 
492
 <script>
500
 <script>
493
 import { adminMainView, getAdmins, setAdminStatus,toSign,toTestOne,toTestTwo,toTestThree,toTestFour,toTestFive,toTestSeven,toTestEight,toTestNight,toTestTen,toTestElement,toTestThrityMent,saveEnterprise,getEnterPriseById,getMobileCode,savePersionEnterPrise,getPerseEnterPriseById,CreatePersionSeal,CreateNewEnterPrise,toTestThrity,toEndEnterPrise,getEnterPriseDetail
501
 import { adminMainView, getAdmins, setAdminStatus,toSign,toTestOne,toTestTwo,toTestThree,toTestFour,toTestFive,toTestSeven,toTestEight,toTestNight,toTestTen,toTestElement,toTestThrityMent,saveEnterprise,getEnterPriseById,getMobileCode,savePersionEnterPrise,getPerseEnterPriseById,CreatePersionSeal,CreateNewEnterPrise,toTestThrity,toEndEnterPrise,getEnterPriseDetail
494
-  ,CreateQianshuUserName,CreateSKDSendInformation,toSavePDFInformation} from "@/api/role/admin";
502
+  ,CreateQianshuUserName,CreateSKDSendInformation,toSavePDFInformation,toCheckPDFInformation} from "@/api/role/admin";
495
 import { getRoles } from "@/api/role/role";
503
 import { getRoles } from "@/api/role/role";
496
 
504
 
497
 import { parseTime } from "@/utils";
505
 import { parseTime } from "@/utils";
1062
            var orderId = response.data.data.orderId
1070
            var orderId = response.data.data.orderId
1063
          }
1071
          }
1064
       })
1072
       })
1073
+    },
1074
+    toCheckPDFInformation(){
1075
+      toCheckPDFInformation().then(response=>{
1076
+        if(response.data.data == 1){
1077
+          var information =  response.data.data.information
1078
+        }
1079
+      })
1065
     }
1080
     }
1066
   },
1081
   },
1067
   watch: {
1082
   watch: {

+ 8 - 2
src/xt_pages/stock/drugs/inventory.vue View File

228
             panOneShow:true,
228
             panOneShow:true,
229
             houseList:[],
229
             houseList:[],
230
             storehouse_id:"",
230
             storehouse_id:"",
231
+            org_id:0,
231
         }
232
         }
232
     },
233
     },
233
     methods:{
234
     methods:{
330
                    list[i].last_stock_min_number = ""
331
                    list[i].last_stock_min_number = ""
331
                    list[i].min_number = list[i].XtBaseDrug.min_number
332
                    list[i].min_number = list[i].XtBaseDrug.min_number
332
                    list[i].manufacturer_name  = ""
333
                    list[i].manufacturer_name  = ""
333
-                   list[i].type = 4
334
+                   if(this.org_id == 10489){
335
+                     list[i].type = 4
336
+                   }else{
337
+                     list[i].type = 6
338
+                    }
334
                    for(let j=0;j<this.manufacturerList.length;j++){
339
                    for(let j=0;j<this.manufacturerList.length;j++){
335
                      if(list[i].manufacturer == this.manufacturerList[j].id){
340
                      if(list[i].manufacturer == this.manufacturerList[j].id){
336
                         list[i].manufacturer_name = this.manufacturerList[j].manufacturer_name
341
                         list[i].manufacturer_name = this.manufacturerList[j].manufacturer_name
338
                    }
343
                    }
339
                    this.WarehouseList.push(list[i])
344
                    this.WarehouseList.push(list[i])
340
                 }
345
                 }
341
-                console.log("lisrt2332323223322323232323",list)
346
+                // console.log("lisrt2332323223322323232323",list)
342
                   let objInfo = {}
347
                   let objInfo = {}
343
                   this.WarehouseList.forEach((item,index)=>{
348
                   this.WarehouseList.forEach((item,index)=>{
344
                     let { drug_id } = item
349
                     let { drug_id } = item
913
     }
918
     }
914
     },
919
     },
915
     created(){
920
     created(){
921
+      this.org_id = this.$store.getters.xt_user.org.id
916
       this.unitList =  this.getDataConfig('hemodialysis','units')
922
       this.unitList =  this.getDataConfig('hemodialysis','units')
917
       this.getlist()
923
       this.getlist()
918
     },
924
     },

+ 8 - 1
src/xt_pages/stock/inventory.vue View File

222
          showTableOne:false,
222
          showTableOne:false,
223
          houseList:[],
223
          houseList:[],
224
          storehouse_id:"",
224
          storehouse_id:"",
225
+         org_id:0,
225
         }
226
         }
226
     },
227
     },
227
     methods:{
228
     methods:{
455
          if(response.data.state == 1){
456
          if(response.data.state == 1){
456
            var list = response.data.data.list
457
            var list = response.data.data.list
457
            for(let i=0;i<list.length;i++){
458
            for(let i=0;i<list.length;i++){
458
-              list[i].type = 4
459
+              if(this.org_id == 10489){
460
+                list[i].type = 4
461
+              }else{
462
+                list[i].type = 6
463
+              }
464
+              
459
               list[i].good_name = list[i].GoodInfo.good_name
465
               list[i].good_name = list[i].GoodInfo.good_name
460
               list[i].specification_name = list[i].GoodInfo.specification_name
466
               list[i].specification_name = list[i].GoodInfo.specification_name
461
               list[i].manufacturer_name = ""
467
               list[i].manufacturer_name = ""
600
     }
606
     }
601
    },
607
    },
602
     created(){
608
     created(){
609
+      this.org_id = this.$store.getters.xt_user.org.id
603
       this.getlist()
610
       this.getlist()
604
     },
611
     },
605
     mounted() {
612
     mounted() {