Browse Source

新分支

28169 1 year ago
parent
commit
d11655dcdf

+ 9 - 1
src/xt_pages/dialysis/details/dialog/AssessmentAfterDislysis.vue View File

987
       }
987
       }
988
     },
988
     },
989
     'form.weight_after': function() {
989
     'form.weight_after': function() {
990
-      if (this) {
990
+      console.log('体重减少',  this.form.weight_after)
991
+      this.form.weight_loss = ((this.predialysis_evaluation.weight_before - this.predialysis_evaluation.additional_weight) - (this.form.weight_after - this.form.additional_weight)).toFixed(1)
992
+    
993
+      if (this.form.weight_loss < 0) {
994
+        this.form.weight_loss = ''
995
+      }
996
+      if (this.form.weight_after == '') {
997
+        this.form.weight_loss = ''
991
       }
998
       }
999
+      
992
     }
1000
     }
993
   },
1001
   },
994
   methods: {
1002
   methods: {

+ 3 - 2
src/xt_pages/dialysis/details/dialog/adviceDialog/AddGroupAdvice.vue View File

1630
           }
1630
           }
1631
       }
1631
       }
1632
 
1632
 
1633
-      if(this.$store.getters.xt_user.org.id == 10580 || this.$store.getters.xt_user.org.id == 10585){
1633
+      if(this.$store.getters.xt_user.org.id == 10580){
1634
+        var date = new Date()
1634
         var year = date.getFullYear()
1635
         var year = date.getFullYear()
1635
           var month = date.getMonth() + 1
1636
           var month = date.getMonth() + 1
1636
           var day = date.getDate()
1637
           var day = date.getDate()
1748
           }
1749
           }
1749
       }
1750
       }
1750
 
1751
 
1751
-      if(this.$store.getters.xt_user.org.id == 10579){
1752
+      if(this.$store.getters.xt_user.org.id == 10579  || this.$store.getters.xt_user.org.id == 10585){
1752
         var date = new Date()
1753
         var date = new Date()
1753
           var year = date.getFullYear()
1754
           var year = date.getFullYear()
1754
           var month = date.getMonth() + 1
1755
           var month = date.getMonth() + 1

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

1567
          console.log("params",ParamsQuery)
1567
          console.log("params",ParamsQuery)
1568
          this.$refs.assessmentBeforeDislysis.validate((valid) => {
1568
          this.$refs.assessmentBeforeDislysis.validate((valid) => {
1569
           if (valid) {
1569
           if (valid) {
1570
-            ParamsQuery['patient'] = this.patient.id
1570
+        // ParamsQuery['patient'] = parseInt(this.$route.query.patient_id) 
1571
+        ParamsQuery['patient'] = this.patient.id
1572
+        
1571
         ParamsQuery['record_date'] = this.record_date
1573
         ParamsQuery['record_date'] = this.record_date
1572
         ParamsQuery['mode'] = '1'
1574
         ParamsQuery['mode'] = '1'
1573
 
1575