Browse Source

修改相关bug

csx 5 years ago
parent
commit
1d9b86f7bd

+ 11 - 0
src/api/dialysis.js View File

@@ -243,4 +243,15 @@ export function CreateDryWeight(params){
243 243
 }
244 244
 
245 245
 
246
+export function GetSolution(params){
247
+  return request({
248
+    url:"/m/api/solution/get",
249
+    method:'get',
250
+    params:params,
251
+  })
252
+
253
+}
254
+
255
+
256
+
246 257
 

+ 3 - 2
src/pages/main/dialog/AssessmentDialog.vue View File

@@ -459,7 +459,6 @@
459 459
     },
460 460
     methods: {
461 461
       menuDryComfirm(val){
462
-        console.log(val)
463 462
         this.isShowDialog = true
464 463
         this.$refs.dry.close()
465 464
         this.formValue.dry_weight = val.dry_weight
@@ -1186,7 +1185,9 @@
1186 1185
 
1187 1186
           this.formValue.dry_weight = this.formValue.dry_weight.toString()
1188 1187
         }
1189
-
1188
+        // if (this.formValue.dry_weight == ""){
1189
+        //   this.formValue.
1190
+        // }
1190 1191
 
1191 1192
         EditAssessmentBeforeDislysis(this.$route.query.patient_id, this.record_date, this.formValue).then(response => {
1192 1193
           if (response.data.state == 0) {

+ 164 - 117
src/pages/main/dialog/PrescriptionDialog.vue View File

@@ -35,8 +35,10 @@
35 35
         </div>
36 36
 
37 37
         <div class="item" v-if="isShow('目标超滤量')">
38
-          <label class="name" for="mbcll" v-if="this.$store.getters.user.template_info.template_id == 6">目标超滤量(ml)</label>
39
-          <label class="name" for="mbcll" v-if="this.$store.getters.user.template_info.template_id != 6">目标超滤量(L)</label>
38
+          <label class="name" for="mbcll"
39
+                 v-if="this.$store.getters.user.template_info.template_id == 6">目标超滤量(ml)</label>
40
+          <label class="name" for="mbcll"
41
+                 v-if="this.$store.getters.user.template_info.template_id != 6">目标超滤量(L)</label>
40 42
           <div class="content">
41 43
             <input type="tel" @focus="inputFocus" id="mbcll" v-model="dialysisPrescription.target_ultrafiltration"/>
42 44
           </div>
@@ -326,6 +328,7 @@
326 328
              :record="record"
327 329
              :last_record="last_record"
328 330
              :patient_prop="patient"
331
+             :dry_weight="dry_weight"
329 332
              :prescription_prop="prescription_prop"
330 333
              v-on:menu-msg-tip="menuMsgTip"></msg-tip>
331 334
 
@@ -335,7 +338,7 @@
335 338
 <script>
336 339
   import CheckBoxSubMenu from './subMenu/checkBoxSubMenu'
337 340
   import MultipleSubMenu from './subMenu/multipleSubMenu'
338
-  import {commitDialysisPrescription, CreateGroupAdvice, postSign, postSolution} from '@/api/dialysis'
341
+  import {commitDialysisPrescription, CreateGroupAdvice, GetSolution, postSign, postSolution} from '@/api/dialysis'
339 342
 
340 343
   import {Toast} from 'vant'
341 344
   import {getDataConfig} from '@/utils/data'
@@ -373,6 +376,10 @@
373 376
       },
374 377
       config: {
375 378
         type: Object
379
+      }, schedual: {
380
+        type: Object
381
+      }, dry_weight: {
382
+        type: Object
376 383
       },
377 384
       operators: {
378 385
         type: Array,
@@ -391,6 +398,8 @@
391 398
         default: function () {
392 399
           return new Array()
393 400
         }
401
+      }, last_prescription: {
402
+        type: Object,
394 403
       },
395 404
       prescription_prop: {
396 405
         type: Object,
@@ -538,7 +547,7 @@
538 547
           selectId: 0
539 548
         }
540 549
       }
541
-    },computed: {
550
+    }, computed: {
542 551
       // 计算属性的 getter
543 552
 
544 553
     }, methods: {
@@ -804,27 +813,27 @@
804 813
                 return false
805 814
               } else {
806 815
 
807
-                var date = new Date();
808
-                var year = date.getFullYear();
809
-                var month = date.getMonth() + 1;
810
-                var day = date.getDate();
816
+                var date = new Date()
817
+                var year = date.getFullYear()
818
+                var month = date.getMonth() + 1
819
+                var day = date.getDate()
811 820
 
812
-                var hours = date.getHours();
813
-                var minites = date.getMinutes();
821
+                var hours = date.getHours()
822
+                var minites = date.getMinutes()
814 823
 
815 824
                 if (month < 10) {
816
-                  month = "0" + month;
825
+                  month = '0' + month
817 826
                 }
818 827
                 if (day < 10) {
819
-                  day = "0" + day;
828
+                  day = '0' + day
820 829
                 }
821 830
                 if (hours < 10) {
822
-                  hours = "0" + hours;
831
+                  hours = '0' + hours
823 832
                 }
824 833
                 if (minites < 10) {
825
-                  minites = "0" + minites;
834
+                  minites = '0' + minites
826 835
                 }
827
-                var nowDate = year + "-" + month + "-" + day +" " +hours+":"+ minites;
836
+                var nowDate = year + '-' + month + '-' + day + ' ' + hours + ':' + minites
828 837
 
829 838
                 Toast.success('提交成功')
830 839
                 let params = {
@@ -840,7 +849,7 @@
840 849
                 CreateGroupAdvice(this.$route.query.patient_id, 0, params).then(rs => {
841 850
                   var resp = rs.data
842 851
                   if (resp.state == 1) {
843
-                    this.$emit('prescription', response.data.data.prescription,resp.data.advices)
852
+                    this.$emit('prescription', response.data.data.prescription, resp.data.advices)
844 853
 
845 854
                   } else {
846 855
 
@@ -862,28 +871,27 @@
862 871
                 return false
863 872
               } else {
864 873
                 Toast.success('提交成功')
865
-                var date = new Date();
866
-                var year = date.getFullYear();
867
-                var month = date.getMonth() + 1;
868
-                var day = date.getDate();
874
+                var date = new Date()
875
+                var year = date.getFullYear()
876
+                var month = date.getMonth() + 1
877
+                var day = date.getDate()
869 878
 
870
-                var hours = date.getHours();
871
-                var minites = date.getMinutes();
879
+                var hours = date.getHours()
880
+                var minites = date.getMinutes()
872 881
 
873 882
                 if (month < 10) {
874
-                  month = "0" + month;
883
+                  month = '0' + month
875 884
                 }
876 885
                 if (day < 10) {
877
-                  day = "0" + day;
886
+                  day = '0' + day
878 887
                 }
879 888
                 if (hours < 10) {
880
-                  hours = "0" + hours;
889
+                  hours = '0' + hours
881 890
                 }
882 891
                 if (minites < 10) {
883
-                  minites = "0" + minites;
892
+                  minites = '0' + minites
884 893
                 }
885
-                var nowDate = year + "-" + month + "-" + day +" " +hours+":"+ minites;
886
-
894
+                var nowDate = year + '-' + month + '-' + day + ' ' + hours + ':' + minites
887 895
 
888 896
                 let params = {
889 897
                   advices: targetAdvices,
@@ -897,8 +905,8 @@
897 905
                 CreateGroupAdvice(this.$route.query.patient_id, 0, params).then(rs => {
898 906
                   var resp = rs.data
899 907
                   if (resp.state == 1) {
900
-                    this.$emit('prescription', response.data.data.prescription,resp.data.advices)
901
-                    this.$emit('longSolution', response.data.data.solution,resp.data.advices)
908
+                    this.$emit('prescription', response.data.data.prescription, resp.data.advices)
909
+                    this.$emit('longSolution', response.data.data.solution, resp.data.advices)
902 910
                   } else {
903 911
 
904 912
                   }
@@ -956,8 +964,41 @@
956 964
         })
957 965
         switch (val.type) {
958 966
           case 1:
959
-            this.dialysisPrescription.mode_id = val.selectId
960
-
967
+            Toast.loading({forbidClick: true, duration: 0, message: '切换模式中,请稍候',})
968
+            //从服务器获取对应模式的长期处方
969
+            let ParamsQuery = {}
970
+            ParamsQuery['patient_id'] = this.$route.query.patient_id
971
+            ParamsQuery['mode_id'] = val.selectId
972
+            GetSolution(ParamsQuery).then(response => {
973
+              if (response.data.state == 0) {
974
+                Toast.fail(response.data.msg)
975
+                return false
976
+              } else {
977
+                Toast.success('切换成功')
978
+                if (response.data.data.solution != null) {
979
+                  for (const key in response.data.data.solution) { //长期处方不为空
980
+                    if (key != 'target_ultrafiltration') {
981
+                      this.dialysisPrescription[key] = response.data.data.solution[key]
982
+                    }
983
+                  }
984
+                } else {
985
+                  if (response.data.data.prescription != null) {  //临时处方不为空
986
+                    for (const key in response.data.data.prescription) {
987
+                      if (key != 'target_ultrafiltration') {
988
+                        this.dialysisPrescription[key] = response.data.data.prescription[key]
989
+                      }
990
+                    }
991
+                  } else {
992
+                    for (const key in this.dialysisPrescription) { //临时处方为空
993
+                      if (key != 'target_ultrafiltration') {
994
+                        this.dialysisPrescription[key] = ''
995
+                      }
996
+                    }
997
+                    this.dialysisPrescription.mode_id = val.selectId
998
+                  }
999
+                }
1000
+              }
1001
+            })
961 1002
             break
962 1003
           case 2:
963 1004
             this.dialysisPrescription.dialyzer = val.selectId
@@ -1079,16 +1120,14 @@
1079 1120
         return anticoagulan_name
1080 1121
       },
1081 1122
       commitInfo: function () {
1082
-
1083
-        // if(this.$store.getters.user.template_info.template_id == 6) {
1084
-        //   if (this.dialysisPrescription.mode_id == 2) {
1085
-        //     if (this.dialysisPrescription.displace_liqui_part == 0 || this.dialysisPrescription.displace_liqui_part == -2 || this.dialysisPrescription.replacement_total == 0 || this.dialysisPrescription.replacement_total == "") {
1086
-        //       Toast.fail("HDF模式下置换方式和置换量不能为空!")
1087
-        //       return
1088
-        //     }
1089
-        //   }
1090
-        // }
1091
-
1123
+        if (this.$store.getters.user.template_info.template_id == 6) {
1124
+          if (this.dialysisPrescription.mode_id == 2) {
1125
+            if (this.dialysisPrescription.displace_liqui_part == 0 || this.dialysisPrescription.displace_liqui_part == -2 || this.dialysisPrescription.displace_liqui_value == 0 || this.dialysisPrescription.displace_liqui_value == '') {
1126
+              Toast.fail('HDF模式下置换方式和置换液总量不能为空!')
1127
+              return
1128
+            }
1129
+          }
1130
+        }
1092 1131
         this.is_pre = 1
1093 1132
         if (this.prescription_prop.id == '') {
1094 1133
 
@@ -1152,27 +1191,27 @@
1152 1191
                 } else {
1153 1192
                   Toast.success('提交成功')
1154 1193
 
1155
-                  var date = new Date();
1156
-                  var year = date.getFullYear();
1157
-                  var month = date.getMonth() + 1;
1158
-                  var day = date.getDate();
1194
+                  var date = new Date()
1195
+                  var year = date.getFullYear()
1196
+                  var month = date.getMonth() + 1
1197
+                  var day = date.getDate()
1159 1198
 
1160
-                  var hours = date.getHours();
1161
-                  var minites = date.getMinutes();
1199
+                  var hours = date.getHours()
1200
+                  var minites = date.getMinutes()
1162 1201
 
1163 1202
                   if (month < 10) {
1164
-                    month = "0" + month;
1203
+                    month = '0' + month
1165 1204
                   }
1166 1205
                   if (day < 10) {
1167
-                    day = "0" + day;
1206
+                    day = '0' + day
1168 1207
                   }
1169 1208
                   if (hours < 10) {
1170
-                    hours = "0" + hours;
1209
+                    hours = '0' + hours
1171 1210
                   }
1172 1211
                   if (minites < 10) {
1173
-                    minites = "0" + minites;
1212
+                    minites = '0' + minites
1174 1213
                   }
1175
-                  var nowDate = year + "-" + month + "-" + day +" " +hours+":"+ minites;
1214
+                  var nowDate = year + '-' + month + '-' + day + ' ' + hours + ':' + minites
1176 1215
 
1177 1216
                   let params = {
1178 1217
                     advices: this.waitUploadAdvices,
@@ -1284,28 +1323,27 @@
1284 1323
                     return false
1285 1324
                   } else {
1286 1325
 
1287
-                    var date = new Date();
1288
-                    var year = date.getFullYear();
1289
-                    var month = date.getMonth() + 1;
1290
-                    var day = date.getDate();
1326
+                    var date = new Date()
1327
+                    var year = date.getFullYear()
1328
+                    var month = date.getMonth() + 1
1329
+                    var day = date.getDate()
1291 1330
 
1292
-                    var hours = date.getHours();
1293
-                    var minites = date.getMinutes();
1331
+                    var hours = date.getHours()
1332
+                    var minites = date.getMinutes()
1294 1333
 
1295 1334
                     if (month < 10) {
1296
-                      month = "0" + month;
1335
+                      month = '0' + month
1297 1336
                     }
1298 1337
                     if (day < 10) {
1299
-                      day = "0" + day;
1338
+                      day = '0' + day
1300 1339
                     }
1301 1340
                     if (hours < 10) {
1302
-                      hours = "0" + hours;
1341
+                      hours = '0' + hours
1303 1342
                     }
1304 1343
                     if (minites < 10) {
1305
-                      minites = "0" + minites;
1344
+                      minites = '0' + minites
1306 1345
                     }
1307
-                    var nowDate = year + "-" + month + "-" + day +" " +hours+":"+ minites;
1308
-
1346
+                    var nowDate = year + '-' + month + '-' + day + ' ' + hours + ':' + minites
1309 1347
 
1310 1348
                     let params = {
1311 1349
                       advices: this.waitUploadAdvices,
@@ -1375,14 +1413,14 @@
1375 1413
 
1376 1414
         }
1377 1415
       }, commitSolutionInfo: function () {
1378
-        // if(this.$store.getters.user.template_info.template_id == 6) {
1379
-        //   if (this.dialysisPrescription.mode_id == 2) {
1380
-        //     if (this.dialysisPrescription.displace_liqui_part == 0 || this.dialysisPrescription.displace_liqui_part == -2 || this.dialysisPrescription.replacement_total == 0 || this.dialysisPrescription.replacement_total == "") {
1381
-        //       Toast.fail("HDF模式下置换方式和置换量不能为空!")
1382
-        //       return
1383
-        //     }
1384
-        //   }
1385
-        // }
1416
+        if (this.$store.getters.user.template_info.template_id == 6) {
1417
+          if (this.dialysisPrescription.mode_id == 2) {
1418
+            if (this.dialysisPrescription.displace_liqui_part == 0 || this.dialysisPrescription.displace_liqui_part == -2 || this.dialysisPrescription.displace_liqui_value == 0 || this.dialysisPrescription.displace_liqui_value == '') {
1419
+              Toast.fail('HDF模式下置换方式和置换量不能为空!')
1420
+              return
1421
+            }
1422
+          }
1423
+        }
1386 1424
         this.is_pre = 2
1387 1425
 
1388 1426
         if (this.prescription_prop.id == '') {
@@ -1456,28 +1494,27 @@
1456 1494
                 } else {
1457 1495
                   Toast.success('提交成功')
1458 1496
 
1459
-                  var date = new Date();
1460
-                  var year = date.getFullYear();
1461
-                  var month = date.getMonth() + 1;
1462
-                  var day = date.getDate();
1497
+                  var date = new Date()
1498
+                  var year = date.getFullYear()
1499
+                  var month = date.getMonth() + 1
1500
+                  var day = date.getDate()
1463 1501
 
1464
-                  var hours = date.getHours();
1465
-                  var minites = date.getMinutes();
1502
+                  var hours = date.getHours()
1503
+                  var minites = date.getMinutes()
1466 1504
 
1467 1505
                   if (month < 10) {
1468
-                    month = "0" + month;
1506
+                    month = '0' + month
1469 1507
                   }
1470 1508
                   if (day < 10) {
1471
-                    day = "0" + day;
1509
+                    day = '0' + day
1472 1510
                   }
1473 1511
                   if (hours < 10) {
1474
-                    hours = "0" + hours;
1512
+                    hours = '0' + hours
1475 1513
                   }
1476 1514
                   if (minites < 10) {
1477
-                    minites = "0" + minites;
1515
+                    minites = '0' + minites
1478 1516
                   }
1479
-                  var nowDate = year + "-" + month + "-" + day +" " +hours+":"+ minites;
1480
-
1517
+                  var nowDate = year + '-' + month + '-' + day + ' ' + hours + ':' + minites
1481 1518
 
1482 1519
                   let params = {
1483 1520
                     advices: this.waitUploadAdvices,
@@ -1598,28 +1635,27 @@
1598 1635
                   } else {
1599 1636
                     this.advice_visibility = false
1600 1637
 
1638
+                    var date = new Date()
1639
+                    var year = date.getFullYear()
1640
+                    var month = date.getMonth() + 1
1641
+                    var day = date.getDate()
1601 1642
 
1602
-                    var date = new Date();
1603
-                    var year = date.getFullYear();
1604
-                    var month = date.getMonth() + 1;
1605
-                    var day = date.getDate();
1606
-
1607
-                    var hours = date.getHours();
1608
-                    var minites = date.getMinutes();
1643
+                    var hours = date.getHours()
1644
+                    var minites = date.getMinutes()
1609 1645
 
1610 1646
                     if (month < 10) {
1611
-                      month = "0" + month;
1647
+                      month = '0' + month
1612 1648
                     }
1613 1649
                     if (day < 10) {
1614
-                      day = "0" + day;
1650
+                      day = '0' + day
1615 1651
                     }
1616 1652
                     if (hours < 10) {
1617
-                      hours = "0" + hours;
1653
+                      hours = '0' + hours
1618 1654
                     }
1619 1655
                     if (minites < 10) {
1620
-                      minites = "0" + minites;
1656
+                      minites = '0' + minites
1621 1657
                     }
1622
-                    var nowDate = year + "-" + month + "-" + day +" " +hours+":"+ minites;
1658
+                    var nowDate = year + '-' + month + '-' + day + ' ' + hours + ':' + minites
1623 1659
 
1624 1660
                     let params = {
1625 1661
                       advices: this.waitUploadAdvices,
@@ -1634,8 +1670,8 @@
1634 1670
                       var resp = rs.data
1635 1671
                       if (resp.state == 1) {
1636 1672
                         this.doctorAdvices = resp.data.advices
1637
-                        this.$emit('longSolution', response.data.data.solution,resp.data.advices)
1638
-                        this.$emit('prescription', response.data.data.prescription,resp.data.advices)
1673
+                        this.$emit('longSolution', response.data.data.solution, resp.data.advices)
1674
+                        this.$emit('prescription', response.data.data.prescription, resp.data.advices)
1639 1675
                       } else {
1640 1676
 
1641 1677
                       }
@@ -1872,6 +1908,13 @@
1872 1908
         for (const key in this.solution_prop) {
1873 1909
           this.dialysisPrescription[key] = this.solution_prop[key]
1874 1910
         }
1911
+      } else if (this.last_prescription != null && typeof this.last_prescription.id != 'undefined' && this.last_prescription.id) {
1912
+        for (const key in this.last_prescription) {
1913
+          this.dialysisPrescription[key] = this.last_prescription[key]
1914
+        }
1915
+      } else {
1916
+        this.dialysisPrescription.mode_id = this.schedual.mode_id
1917
+
1875 1918
       }
1876 1919
 
1877 1920
       if (this.dialysisPrescription.dialysis_duration_hour.length == 0 || this.dialysisPrescription.dialysis_duration_minute.length == 0) {
@@ -1932,32 +1975,36 @@
1932 1975
       CheckBoxSubMenu
1933 1976
     },
1934 1977
     watch: {
1935
-      "dialysisPrescription.anticoagulant_shouji":function(val){
1936
-         console.log(this.dialysisPrescription.anticoagulant_shouji)
1937
-        console.log(this.dialysisPrescription.anticoagulant_weichi)
1938
-
1939
-        if(this.dialysisPrescription.anticoagulant_shouji == "" && this.dialysisPrescription.anticoagulant_weichi == ""){
1940
-            this.dialysisPrescription.anticoagulant_zongliang = parseInt(0) + parseInt(0)
1941
-          }else if(this.dialysisPrescription.anticoagulant_shouji != "" && this.dialysisPrescription.anticoagulant_weichi != "" ){
1942
-            this.dialysisPrescription.anticoagulant_zongliang = parseInt(this.dialysisPrescription.anticoagulant_shouji) + parseInt(this.dialysisPrescription.anticoagulant_weichi)
1943
-          }else if(this.dialysisPrescription.anticoagulant_shouji != "" && this.dialysisPrescription.anticoagulant_shouji == ""){
1944
-            this.dialysisPrescription.anticoagulant_zongliang = parseInt(this.dialysisPrescription.anticoagulant_shouji) + parseInt(0)
1945
-          }else if(this.dialysisPrescription.anticoagulant_shouji == "" && this.dialysisPrescription.anticoagulant_shouji != ""){
1946
-            this.dialysisPrescription.anticoagulant_zongliang = parseInt(0) + parseInt(this.dialysisPrescription.anticoagulant_shouji)
1978
+      'dialysisPrescription.anticoagulant_shouji': function (val) {
1979
+        if (this.dialysisPrescription.anticoagulant_shouji == '' && this.dialysisPrescription.anticoagulant_weichi == '') {
1980
+          this.dialysisPrescription.anticoagulant_zongliang = parseInt(0) + parseInt(0)
1981
+        } else if (this.dialysisPrescription.anticoagulant_shouji != '' && this.dialysisPrescription.anticoagulant_weichi != '') {
1982
+          this.dialysisPrescription.anticoagulant_zongliang = parseInt(this.dialysisPrescription.anticoagulant_shouji) + parseInt(this.dialysisPrescription.anticoagulant_weichi)
1983
+        } else if (this.dialysisPrescription.anticoagulant_shouji != '' && this.dialysisPrescription.anticoagulant_shouji == '') {
1984
+          this.dialysisPrescription.anticoagulant_zongliang = parseInt(this.dialysisPrescription.anticoagulant_shouji) + parseInt(0)
1985
+        } else if (this.dialysisPrescription.anticoagulant_shouji == '' && this.dialysisPrescription.anticoagulant_shouji != '') {
1986
+          this.dialysisPrescription.anticoagulant_zongliang = parseInt(0) + parseInt(this.dialysisPrescription.anticoagulant_shouji)
1987
+        }
1988
+        if(isNaN(this.dialysisPrescription.anticoagulant_zongliang)){
1989
+          this.dialysisPrescription.anticoagulant_zongliang = ''
1990
+        }
1947 1991
 
1948
-          }
1949 1992
 
1950
-      }, "dialysisPrescription.anticoagulant_weichi":function(val){
1993
+      }, 'dialysisPrescription.anticoagulant_weichi': function (val) {
1951 1994
         console.log(this.dialysisPrescription.anticoagulant_shouji)
1952 1995
         console.log(this.dialysisPrescription.anticoagulant_weichi)
1953
-        if(this.dialysisPrescription.anticoagulant_shouji == "" && this.dialysisPrescription.anticoagulant_weichi == ""){
1996
+        if (this.dialysisPrescription.anticoagulant_shouji == '' && this.dialysisPrescription.anticoagulant_weichi == '') {
1954 1997
           this.dialysisPrescription.anticoagulant_zongliang = parseInt(0) + parseInt(0)
1955
-        }else if(this.dialysisPrescription.anticoagulant_shouji != "" && this.dialysisPrescription.anticoagulant_weichi != "" ){
1998
+        } else if (this.dialysisPrescription.anticoagulant_shouji != '' && this.dialysisPrescription.anticoagulant_weichi != '') {
1956 1999
           this.dialysisPrescription.anticoagulant_zongliang = parseInt(this.dialysisPrescription.anticoagulant_shouji) + parseInt(this.dialysisPrescription.anticoagulant_weichi)
1957
-        }else if(this.dialysisPrescription.anticoagulant_shouji != "" && this.dialysisPrescription.anticoagulant_shouji == ""){
2000
+        } else if (this.dialysisPrescription.anticoagulant_shouji != '' && this.dialysisPrescription.anticoagulant_shouji == '') {
1958 2001
           this.dialysisPrescription.anticoagulant_zongliang = parseInt(this.dialysisPrescription.anticoagulant_shouji) + parseInt(0)
1959
-        }else if(this.dialysisPrescription.anticoagulant_shouji == "" && this.dialysisPrescription.anticoagulant_shouji != ""){
2002
+        } else if (this.dialysisPrescription.anticoagulant_shouji == '' && this.dialysisPrescription.anticoagulant_shouji != '') {
1960 2003
           this.dialysisPrescription.anticoagulant_zongliang = parseInt(0) + parseInt(this.dialysisPrescription.anticoagulant_shouji)
2004
+        }
2005
+
2006
+        if(isNaN(this.dialysisPrescription.anticoagulant_zongliang)){
2007
+          this.dialysisPrescription.anticoagulant_zongliang = ''
1961 2008
 
1962 2009
         }
1963 2010
       },

+ 16 - 2
src/pages/main/dialog/subMenu/MsgTip.vue View File

@@ -27,7 +27,7 @@
27 27
         <div class="item">
28 28
           <label class="name" for="txms">干体重(kg)</label>
29 29
           <div class="content">
30
-            <span class="text" id="txms">{{last_predialysis.dry_weight}}</span>
30
+            <span class="text" id="txms">{{dry}}</span>
31 31
 
32 32
           </div>
33 33
         </div>
@@ -79,13 +79,25 @@
79 79
       if (this.predialysis&&this.predialysis.weight_before > 0 && this.predialysis.weight_after_last_transparency > 0) {
80 80
         this.add_weight = parseFloat(this.predialysis.weight_before - this.predialysis.weight_after_last_transparency).toFixed(2)
81 81
       }
82
+
83
+      console.log(this.dry_weight )
84
+      if(this.dry_weight != null){
85
+        this.dry = this.dry_weight.dry_weight
86
+      }else{
87
+
88
+        this.dry = this.last_predialysis.dry_weight
89
+
90
+      }
91
+
92
+
82 93
     },
83 94
     data () {
84 95
       return {
85 96
         result: [],
86 97
         id: 0,
87 98
         selectName: '',
88
-        add_weight:0
99
+        add_weight:0,
100
+        dry:0,
89 101
       }
90 102
     },
91 103
     props: {
@@ -110,6 +122,8 @@
110 122
       },
111 123
       prescription_prop: {
112 124
         type: Object
125
+      },dry_weight:{
126
+        type: Object
113 127
       },
114 128
     },
115 129
     computed: {

+ 15 - 15
src/pages/main/dialysis/LongTable.vue View File

@@ -1,9 +1,9 @@
1 1
 <template>
2 2
     <div>
3
-        <div class="blueBorder"></div>              
4
-        <div class="tableTit " >   
3
+        <div class="blueBorder"></div>
4
+        <div class="tableTit " >
5 5
             <ul>
6
-                <li v-for="(item,index) in ['序号','透析模式','透析时长','医生','更新日期','操作']" :key="index" :value="item.value" >{{item}}</li>
6
+                <li v-for="(item,index) in ['序号','透析模式','透析时长','医生','更新日期']" :key="index" :value="item.value" >{{item}}</li>
7 7
                 <!-- <li v-for="(item,index) in ['序号','透析模式','透析时长','医生','更新日期']" :key="index" :value="item.value" >{{item}}</li> -->
8 8
             </ul>
9 9
         </div>
@@ -20,7 +20,7 @@
20 20
                 <span>{{item.dialysis_duration_hour}}h {{item.dialysis_duration_minute}}min</span>
21 21
                 <span>{{tranDoctor(item.registrars_id)}}</span>
22 22
                 <span>{{item.edate}}</span>
23
-                <span @click="openEdit(index, item)"><i class="iconfont">&#xe6f7;</i>修改</span>
23
+                <!--<span @click="openEdit(index, item)"><i class="iconfont">&#xe6f7;</i>修改</span>-->
24 24
                 </li>
25 25
             </ul>
26 26
           </van-list>
@@ -160,7 +160,7 @@
160 160
               </div>
161 161
 
162 162
               <div class="line"></div>
163
-              
163
+
164 164
               <div class="item">
165 165
                 <label class="name" for="txyll">透析液流量(ml/min)</label>
166 166
                 <div class="content">
@@ -195,18 +195,18 @@
195 195
                 </div>
196 196
                 <textarea class="textarea" id="bz" placeholder="请输入内容" v-model="dialysisSolution.remark" @focus="lastInputFocus" @blur="lastInputBlur"></textarea>
197 197
               </div>
198
-              
198
+
199 199
               <!--<div class="footer">-->
200 200
               <!--处方医生:刘小军 医生-->
201 201
               <!--</div>-->
202
-              
202
+
203 203
             </div>
204 204
           </div>
205 205
 
206 206
 
207 207
           <check-box-sub-menu :visibility="visibility" v-on:menu-cancle="menuCancle" v-on:menu-comfirm="menuComfirm"
208 208
                           :propsForm="propForm"></check-box-sub-menu>
209
-                          
209
+
210 210
           <mt-datetime-picker
211 211
             ref="picker"
212 212
             type="time"
@@ -237,7 +237,7 @@ export default {
237 237
       visibility:false,
238 238
       loading: false,
239 239
       finished: false,
240
-      
240
+
241 241
       queryParams: {
242 242
         page: 0,
243 243
         id: 0,
@@ -344,7 +344,7 @@ export default {
344 344
         for(var key in item) {
345 345
           this.dialysisSolution[key] = item[key];
346 346
         }
347
-        
347
+
348 348
       this.timeValue = this.dialysisSolution.dialysis_duration_hour + "小时" + this.dialysisSolution.dialysis_duration_minute + "分钟";
349 349
 
350 350
       this.time = (this.dialysisSolution.dialysis_duration_hour>=10?this.dialysisSolution.dialysis_duration_hour:'0'+this.dialysisSolution.dialysis_duration_hour) + ":" + (this.dialysisSolution.dialysis_duration_minute>=10?this.dialysisSolution.dialysis_duration_minute:'0'+this.dialysisSolution.dialysis_duration_minute);
@@ -358,8 +358,8 @@ export default {
358 358
             dialogTop.scrollTop = 0;
359 359
         });
360 360
       }
361
-      
362
-        
361
+
362
+
363 363
     },
364 364
     popupDidHide(){
365 365
       this.showObj.showPopup = false;
@@ -430,7 +430,7 @@ export default {
430 430
           this.dialysisSolution.mode_id = val.selectId;
431 431
           this.dialysisSolution.mode_name = this.GetModeByModeId(this.dialysisSolution.mode_id);
432 432
           break;
433
-       
433
+
434 434
         case 5:
435 435
           this.dialysisSolution.anticoagulant = val.selectId;
436 436
 
@@ -565,7 +565,7 @@ export default {
565 565
             this.loading = false;
566 566
           }
567 567
         });
568
-        
568
+
569 569
     },
570 570
   },
571 571
   created(){
@@ -573,7 +573,7 @@ export default {
573 573
     this.fetchAllAdminUsers();
574 574
     this.queryParams.id = this.$route.query.patient_id;
575 575
     this.onLoad();
576
-    
576
+
577 577
     this.modeOption = this.$store.getters.treatment_mode;
578 578
     this.dialysateFormulationOptions = getDataConfig('hemodialysis','dialysate_formulation');
579 579
     this.anticoagulantsConfit = this.$store.getters.anticoagulants_confit;

+ 18 - 0
src/pages/main/today/TodayTab.vue View File

@@ -141,6 +141,10 @@
141 141
                            :last_predialysis="last_predialysis_evaluation"
142 142
                            :record="assessment_after_dislysis"
143 143
                            :last_record="last_assessment_after_dislysis"
144
+                           :last_prescription="last_prescription"
145
+                           :dry_weight="dryWeight"
146
+
147
+                           :schedual="schedual"
144 148
                            @longSolution="longSolutionFunc" ref="prescription_dialog"></prescription-dialog>
145 149
     </van-popup>
146 150
 
@@ -307,6 +311,7 @@ import {parseTime} from '@/utils'
307 311
         schedual: {}, // 患者排班信息
308 312
         prescription: {}, // 透析处方
309 313
         solution: {}, // 透析方案
314
+        last_prescription:{},
310 315
         receiver_treatment_access: {}, // 接诊评估
311 316
         predialysis_evaluation: {}, // 透前评估
312 317
         last_predialysis_evaluation: {}, // 上次透前评估
@@ -770,6 +775,8 @@ import {parseTime} from '@/utils'
770 775
     },
771 776
     weightFunc (val) {
772 777
       this.dryWeight = val
778
+
779
+
773 780
     },
774 781
     requestDialysisRecord () {
775 782
       var dateStr = parseTime(this.date, '{y}-{m}-{d}')
@@ -790,6 +797,10 @@ import {parseTime} from '@/utils'
790 797
           var storedata = this.$store.getters.scheduals
791 798
           var scheduals = storedata.scheduals
792 799
 
800
+
801
+
802
+
803
+
793 804
           var patient = resp.data.patient // 患者信息
794 805
           var schedual = resp.data.schedual // 患者排班信息
795 806
           var prescription = resp.data.prescription // 透析处方
@@ -797,6 +808,8 @@ import {parseTime} from '@/utils'
797 808
           var receiver_treatment_access = resp.data.receiver_treatment_access // 接诊评估
798 809
           var predialysis_evaluation = resp.data.predialysis_evaluation // 透前评估
799 810
           var doctor_advices = resp.data.doctor_advices // 临时医嘱
811
+          var last_prescription = resp.data.last_prescription
812
+
800 813
           this.dryWeight = resp.data.dry_weight
801 814
 
802 815
           if (prescription == null || prescription.creater == 0) {
@@ -861,6 +874,10 @@ import {parseTime} from '@/utils'
861 874
           this.schedual = schedual == null ? {} : schedual
862 875
           this.prescription = prescription == null ? {id: ''} : prescription
863 876
           this.solution = solution == null ? {id: ''} : solution
877
+          this.last_prescription = last_prescription == null ? {id: ''} : last_prescription
878
+
879
+
880
+
864 881
           this.receiver_treatment_access =
865 882
               receiver_treatment_access == null
866 883
                 ? {id: ''}
@@ -877,6 +894,7 @@ import {parseTime} from '@/utils'
877 894
           this.config = config
878 895
           this.goodTypes = types
879 896
 
897
+
880 898
           if (this.doctor_advices.length > 0) {
881 899
             var group = this.newAdviceGroupObject()
882 900
             var initGroupBlock = function (group, advice) {