Bladeren bron

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

See999 4 jaren geleden
bovenliggende
commit
60b0b39699

+ 6 - 2
src/store/modules/globalConfig.js Bestand weergeven

1853
       },
1853
       },
1854
       {
1854
       {
1855
         id: 31,
1855
         id: 31,
1856
-        name: ''
1856
+        name: ''
1857
       },
1857
       },
1858
       {
1858
       {
1859
         id: 32,
1859
         id: 32,
1860
-        name: ''
1860
+        name: ''
1861
       },
1861
       },
1862
       {
1862
       {
1863
         id: 33,
1863
         id: 33,
1864
         name: '万份'
1864
         name: '万份'
1865
       },
1865
       },
1866
+      {
1867
+        id: 34,
1868
+        name: '副'
1869
+      },
1866
     ],
1870
     ],
1867
     body_fluid: [{
1871
     body_fluid: [{
1868
       id: 1,
1872
       id: 1,

+ 26 - 2
src/xt_pages/dialysis/details/dialog/assessmentBeforeDislysisDialog.vue Bestand weergeven

547
              <el-input v-model="assessmentBeforeDislysis.dehydration"></el-input>
547
              <el-input v-model="assessmentBeforeDislysis.dehydration"></el-input>
548
             </el-form-item>
548
             </el-form-item>
549
           </el-col>
549
           </el-col>
550
-          
551
 
550
 
551
+
552
+          <el-col :span="8">
553
+            <el-form-item label="透析前药物:" v-if="isShow('透析前药物')">
554
+             <el-input v-model="assessmentBeforeDislysis.pre_dialysis_drugs"></el-input>
555
+            </el-form-item>
556
+          </el-col>
557
+
558
+          <el-col :span="8">
559
+            <el-form-item label="围手术期:" v-if="isShow('围手术期')">
560
+              <el-select v-model="assessmentBeforeDislysis.period">
561
+                <el-option :key="0" label="请选择" :value="0"></el-option>
562
+                <el-option label="无" value="1"></el-option>
563
+                <el-option label="有" value="2"></el-option>
564
+              </el-select>
565
+            </el-form-item>
566
+          </el-col>
567
+          
568
+          <el-col :span="8">
569
+            <el-form-item label="预计进食量:" v-if="isShow('预计进食量')">
570
+             <el-input v-model="assessmentBeforeDislysis.estimated_food_intake"></el-input>
571
+            </el-form-item>
572
+          </el-col>
552
          
573
          
553
           <el-col :span="24">
574
           <el-col :span="24">
554
             <el-form-item label="备注: ">
575
             <el-form-item label="备注: ">
712
           thrombus_av:"",
733
           thrombus_av:"",
713
           thromubus_a:"",
734
           thromubus_a:"",
714
           thromubus_v:"",
735
           thromubus_v:"",
715
-          dehydration:""
736
+          dehydration:"",
737
+          pre_dialysis_drugs:"",
738
+          period:"",
739
+          estimated_food_intake:"",
716
         },
740
         },
717
 
741
 
718
         InnerDialogProps: {
742
         InnerDialogProps: {

+ 29 - 0
src/xt_pages/dialysis/details/dialog/dialysisPrescriptionDialog.vue Bestand weergeven

525
 
525
 
526
             </el-form-item>
526
             </el-form-item>
527
           </el-col>
527
           </el-col>
528
+               
529
+          
530
+          <el-col :span="8" v-if="isShows('病情')">
531
+             <el-form-item label="病情:">
532
+                <el-select v-model="dialysisPrescription.illness" placeholder="请选择">
533
+                <el-option :key="0" label="请选择" :value="0"></el-option>
534
+                <el-option
535
+                  v-for="(item, index) in  illnessList "
536
+                  :key="index"
537
+                  :label="item.name"
538
+                  :value="item.id"
539
+                ></el-option>
540
+              </el-select>
541
+             </el-form-item>
542
+          </el-col>
543
+
544
+          <el-col :span="8" v-if="isShows('葡萄糖')">
545
+             <el-form-item label="葡萄糖:">
546
+                <el-input v-model="dialysisPrescription.amylaceum"></el-input>
547
+             </el-form-item>
548
+          </el-col>
549
+
528
         </el-row>
550
         </el-row>
529
 
551
 
530
         <el-row :gutter="20">
552
         <el-row :gutter="20">
1018
           irrigation:"",
1040
           irrigation:"",
1019
           antioxidant_commodity_name:"",
1041
           antioxidant_commodity_name:"",
1020
           displace_speed:"",
1042
           displace_speed:"",
1043
+          illness:"",
1044
+          amylaceum:"",
1021
         },
1045
         },
1022
 
1046
 
1023
         anticoagulant: {
1047
         anticoagulant: {
1041
         bloods:[],
1065
         bloods:[],
1042
         irrigations:[],
1066
         irrigations:[],
1043
         dialyzers:[],
1067
         dialyzers:[],
1068
+        illnessList:[]
1044
       }
1069
       }
1045
     },
1070
     },
1046
     methods: {
1071
     methods: {
3527
         console.log("透析器",this.dialyzers)
3552
         console.log("透析器",this.dialyzers)
3528
         console.log("灌流器",this.irrigations)
3553
         console.log("灌流器",this.irrigations)
3529
       }
3554
       }
3555
+    },
3556
+    created(){
3557
+      this.illnessList = getDataConfig('hemodialysis','illness')
3558
+      console.log("列表22222222222",this.illnessList)
3530
     }
3559
     }
3531
   }
3560
   }
3532
 </script>
3561
 </script>

+ 1 - 1
src/xt_pages/qcd/basicInformationAnalysis.vue Bestand weergeven

710
       //本月的结束时间
710
       //本月的结束时间
711
       var monthEndDate = new Date(nowYear, nowMonth+1, 0);
711
       var monthEndDate = new Date(nowYear, nowMonth+1, 0);
712
       var timeEnd=Date.parse(monthEndDate)/1000-1;//s
712
       var timeEnd=Date.parse(monthEndDate)/1000-1;//s
713
-        console.log("本月最后一天",timeEnd)
713
+        // console.log("本月最后一天",timeEnd)
714
       //本月
714
       //本月
715
       if(state == 0){
715
       if(state == 0){
716
        //统计透析总量
716
        //统计透析总量