28169 1 год назад
Родитель
Сommit
d11655dcdf

+ 9 - 1
src/xt_pages/dialysis/details/dialog/AssessmentAfterDislysis.vue Просмотреть файл

@@ -987,8 +987,16 @@ export default {
987 987
       }
988 988
     },
989 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 1002
   methods: {

+ 3 - 2
src/xt_pages/dialysis/details/dialog/adviceDialog/AddGroupAdvice.vue Просмотреть файл

@@ -1630,7 +1630,8 @@ export default {
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 1635
         var year = date.getFullYear()
1635 1636
           var month = date.getMonth() + 1
1636 1637
           var day = date.getDate()
@@ -1748,7 +1749,7 @@ export default {
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 1753
         var date = new Date()
1753 1754
           var year = date.getFullYear()
1754 1755
           var month = date.getMonth() + 1

+ 3 - 1
src/xt_pages/dialysis/details/dialog/assessmentBeforeDislysisDialog.vue Просмотреть файл

@@ -1567,7 +1567,9 @@
1567 1567
          console.log("params",ParamsQuery)
1568 1568
          this.$refs.assessmentBeforeDislysis.validate((valid) => {
1569 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 1573
         ParamsQuery['record_date'] = this.record_date
1572 1574
         ParamsQuery['mode'] = '1'
1573 1575