Kaynağa Gözat

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

See999 4 yıl önce
ebeveyn
işleme
625a024319

+ 36 - 0
src/xt_pages/dialysis/details/dialog/assessmentBeforeDislysisDialog.vue Dosyayı Görüntüle

@@ -669,10 +669,46 @@
669 669
               this.assessmentBeforeDislysis.dry_weight = this.lastPredialysisEvaluation.dry_weight
670 670
             }
671 671
           }
672
+          if (this.lastPredialysisEvaluation != null) {
673
+            this.$set(
674
+              this.assessmentBeforeDislysis,
675
+              'additional_weight',
676
+              this.lastPredialysisEvaluation['additional_weight'].toString()
677
+            )
678
+
679
+            this.$set(
680
+              this.assessmentBeforeDislysis,
681
+              'internal_fistula',
682
+              this.lastPredialysisEvaluation['internal_fistula']
683
+            )
684
+            this.$set(
685
+              this.assessmentBeforeDislysis,
686
+              'internal_fistula_skin',
687
+              this.lastPredialysisEvaluation['internal_fistula_skin']
688
+            )
689
+            this.$set(
690
+              this.assessmentBeforeDislysis,
691
+              'blood_access_part_id',
692
+              this.lastPredialysisEvaluation['blood_access_part_id']
693
+            )
694
+            this.$set(
695
+              this.assessmentBeforeDislysis,
696
+              'blood_access_part_opera_id',
697
+              this.lastPredialysisEvaluation['blood_access_part_opera_id']
698
+            )
699
+          }
700
+
672 701
         } else {
673 702
           this.assessmentBeforeDislysis.dry_weight = this.predialysis_evaluation['dry_weight']
674 703
           this.weight_adjust.weight = this.predialysis_evaluation['dry_weight']
675 704
         }
705
+
706
+
707
+
708
+
709
+
710
+
711
+
676 712
       },
677 713
       hide() {
678 714
         this.isVisibility = false

+ 2 - 2
src/xt_pages/qcd/indicatorControlAnalysis/components/office.vue Dosyayı Görüntüle

@@ -239,9 +239,9 @@
239 239
                     }
240 240
 
241 241
                     return new echarts.graphic.LinearGradient(0, 0, 0, 1, [
242
-                      { offset: 0, color: colorList[0] },
242
+                      {offset: 0, color: colorList[index][0]},
243 243
                       // { offset: 0.5, color: colorList[index][1] },
244
-                      { offset: 1, color: colorList[1] }
244
+                      {offset: 1, color: colorList[index][1]}
245 245
                     ])
246 246
                   },
247 247
                   barBorderRadius: [5, 5, 0, 0] //柱状角成椭圆形

+ 1 - 0
src/xt_pages/user/patients.vue Dosyayı Görüntüle

@@ -765,6 +765,7 @@
765 765
 
766 766
       },
767 767
       handleSuccess({ results, header }) {
768
+        console.log(results)
768 769
         if (header != undefined && header.length > 0) {
769 770
           var isHasName = header.includes('*姓名')
770 771
           var isHasGender = header.includes('*性别')