Bladeren bron

修改相关bug

csx 5 jaren geleden
bovenliggende
commit
1d9b86f7bd

+ 11 - 0
src/api/dialysis.js Bestand weergeven

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 Bestand weergeven

459
     },
459
     },
460
     methods: {
460
     methods: {
461
       menuDryComfirm(val){
461
       menuDryComfirm(val){
462
-        console.log(val)
463
         this.isShowDialog = true
462
         this.isShowDialog = true
464
         this.$refs.dry.close()
463
         this.$refs.dry.close()
465
         this.formValue.dry_weight = val.dry_weight
464
         this.formValue.dry_weight = val.dry_weight
1186
 
1185
 
1187
           this.formValue.dry_weight = this.formValue.dry_weight.toString()
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
         EditAssessmentBeforeDislysis(this.$route.query.patient_id, this.record_date, this.formValue).then(response => {
1192
         EditAssessmentBeforeDislysis(this.$route.query.patient_id, this.record_date, this.formValue).then(response => {
1192
           if (response.data.state == 0) {
1193
           if (response.data.state == 0) {

+ 164 - 117
src/pages/main/dialog/PrescriptionDialog.vue Bestand weergeven

35
         </div>
35
         </div>
36
 
36
 
37
         <div class="item" v-if="isShow('目标超滤量')">
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
           <div class="content">
42
           <div class="content">
41
             <input type="tel" @focus="inputFocus" id="mbcll" v-model="dialysisPrescription.target_ultrafiltration"/>
43
             <input type="tel" @focus="inputFocus" id="mbcll" v-model="dialysisPrescription.target_ultrafiltration"/>
42
           </div>
44
           </div>
326
              :record="record"
328
              :record="record"
327
              :last_record="last_record"
329
              :last_record="last_record"
328
              :patient_prop="patient"
330
              :patient_prop="patient"
331
+             :dry_weight="dry_weight"
329
              :prescription_prop="prescription_prop"
332
              :prescription_prop="prescription_prop"
330
              v-on:menu-msg-tip="menuMsgTip"></msg-tip>
333
              v-on:menu-msg-tip="menuMsgTip"></msg-tip>
331
 
334
 
335
 <script>
338
 <script>
336
   import CheckBoxSubMenu from './subMenu/checkBoxSubMenu'
339
   import CheckBoxSubMenu from './subMenu/checkBoxSubMenu'
337
   import MultipleSubMenu from './subMenu/multipleSubMenu'
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
   import {Toast} from 'vant'
343
   import {Toast} from 'vant'
341
   import {getDataConfig} from '@/utils/data'
344
   import {getDataConfig} from '@/utils/data'
373
       },
376
       },
374
       config: {
377
       config: {
375
         type: Object
378
         type: Object
379
+      }, schedual: {
380
+        type: Object
381
+      }, dry_weight: {
382
+        type: Object
376
       },
383
       },
377
       operators: {
384
       operators: {
378
         type: Array,
385
         type: Array,
391
         default: function () {
398
         default: function () {
392
           return new Array()
399
           return new Array()
393
         }
400
         }
401
+      }, last_prescription: {
402
+        type: Object,
394
       },
403
       },
395
       prescription_prop: {
404
       prescription_prop: {
396
         type: Object,
405
         type: Object,
538
           selectId: 0
547
           selectId: 0
539
         }
548
         }
540
       }
549
       }
541
-    },computed: {
550
+    }, computed: {
542
       // 计算属性的 getter
551
       // 计算属性的 getter
543
 
552
 
544
     }, methods: {
553
     }, methods: {
804
                 return false
813
                 return false
805
               } else {
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
                 if (month < 10) {
824
                 if (month < 10) {
816
-                  month = "0" + month;
825
+                  month = '0' + month
817
                 }
826
                 }
818
                 if (day < 10) {
827
                 if (day < 10) {
819
-                  day = "0" + day;
828
+                  day = '0' + day
820
                 }
829
                 }
821
                 if (hours < 10) {
830
                 if (hours < 10) {
822
-                  hours = "0" + hours;
831
+                  hours = '0' + hours
823
                 }
832
                 }
824
                 if (minites < 10) {
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
                 Toast.success('提交成功')
838
                 Toast.success('提交成功')
830
                 let params = {
839
                 let params = {
840
                 CreateGroupAdvice(this.$route.query.patient_id, 0, params).then(rs => {
849
                 CreateGroupAdvice(this.$route.query.patient_id, 0, params).then(rs => {
841
                   var resp = rs.data
850
                   var resp = rs.data
842
                   if (resp.state == 1) {
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
                   } else {
854
                   } else {
846
 
855
 
862
                 return false
871
                 return false
863
               } else {
872
               } else {
864
                 Toast.success('提交成功')
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
                 if (month < 10) {
882
                 if (month < 10) {
874
-                  month = "0" + month;
883
+                  month = '0' + month
875
                 }
884
                 }
876
                 if (day < 10) {
885
                 if (day < 10) {
877
-                  day = "0" + day;
886
+                  day = '0' + day
878
                 }
887
                 }
879
                 if (hours < 10) {
888
                 if (hours < 10) {
880
-                  hours = "0" + hours;
889
+                  hours = '0' + hours
881
                 }
890
                 }
882
                 if (minites < 10) {
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
                 let params = {
896
                 let params = {
889
                   advices: targetAdvices,
897
                   advices: targetAdvices,
897
                 CreateGroupAdvice(this.$route.query.patient_id, 0, params).then(rs => {
905
                 CreateGroupAdvice(this.$route.query.patient_id, 0, params).then(rs => {
898
                   var resp = rs.data
906
                   var resp = rs.data
899
                   if (resp.state == 1) {
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
                   } else {
910
                   } else {
903
 
911
 
904
                   }
912
                   }
956
         })
964
         })
957
         switch (val.type) {
965
         switch (val.type) {
958
           case 1:
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
             break
1002
             break
962
           case 2:
1003
           case 2:
963
             this.dialysisPrescription.dialyzer = val.selectId
1004
             this.dialysisPrescription.dialyzer = val.selectId
1079
         return anticoagulan_name
1120
         return anticoagulan_name
1080
       },
1121
       },
1081
       commitInfo: function () {
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
         this.is_pre = 1
1131
         this.is_pre = 1
1093
         if (this.prescription_prop.id == '') {
1132
         if (this.prescription_prop.id == '') {
1094
 
1133
 
1152
                 } else {
1191
                 } else {
1153
                   Toast.success('提交成功')
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
                   if (month < 10) {
1202
                   if (month < 10) {
1164
-                    month = "0" + month;
1203
+                    month = '0' + month
1165
                   }
1204
                   }
1166
                   if (day < 10) {
1205
                   if (day < 10) {
1167
-                    day = "0" + day;
1206
+                    day = '0' + day
1168
                   }
1207
                   }
1169
                   if (hours < 10) {
1208
                   if (hours < 10) {
1170
-                    hours = "0" + hours;
1209
+                    hours = '0' + hours
1171
                   }
1210
                   }
1172
                   if (minites < 10) {
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
                   let params = {
1216
                   let params = {
1178
                     advices: this.waitUploadAdvices,
1217
                     advices: this.waitUploadAdvices,
1284
                     return false
1323
                     return false
1285
                   } else {
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
                     if (month < 10) {
1334
                     if (month < 10) {
1296
-                      month = "0" + month;
1335
+                      month = '0' + month
1297
                     }
1336
                     }
1298
                     if (day < 10) {
1337
                     if (day < 10) {
1299
-                      day = "0" + day;
1338
+                      day = '0' + day
1300
                     }
1339
                     }
1301
                     if (hours < 10) {
1340
                     if (hours < 10) {
1302
-                      hours = "0" + hours;
1341
+                      hours = '0' + hours
1303
                     }
1342
                     }
1304
                     if (minites < 10) {
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
                     let params = {
1348
                     let params = {
1311
                       advices: this.waitUploadAdvices,
1349
                       advices: this.waitUploadAdvices,
1375
 
1413
 
1376
         }
1414
         }
1377
       }, commitSolutionInfo: function () {
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
         this.is_pre = 2
1424
         this.is_pre = 2
1387
 
1425
 
1388
         if (this.prescription_prop.id == '') {
1426
         if (this.prescription_prop.id == '') {
1456
                 } else {
1494
                 } else {
1457
                   Toast.success('提交成功')
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
                   if (month < 10) {
1505
                   if (month < 10) {
1468
-                    month = "0" + month;
1506
+                    month = '0' + month
1469
                   }
1507
                   }
1470
                   if (day < 10) {
1508
                   if (day < 10) {
1471
-                    day = "0" + day;
1509
+                    day = '0' + day
1472
                   }
1510
                   }
1473
                   if (hours < 10) {
1511
                   if (hours < 10) {
1474
-                    hours = "0" + hours;
1512
+                    hours = '0' + hours
1475
                   }
1513
                   }
1476
                   if (minites < 10) {
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
                   let params = {
1519
                   let params = {
1483
                     advices: this.waitUploadAdvices,
1520
                     advices: this.waitUploadAdvices,
1598
                   } else {
1635
                   } else {
1599
                     this.advice_visibility = false
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
                     if (month < 10) {
1646
                     if (month < 10) {
1611
-                      month = "0" + month;
1647
+                      month = '0' + month
1612
                     }
1648
                     }
1613
                     if (day < 10) {
1649
                     if (day < 10) {
1614
-                      day = "0" + day;
1650
+                      day = '0' + day
1615
                     }
1651
                     }
1616
                     if (hours < 10) {
1652
                     if (hours < 10) {
1617
-                      hours = "0" + hours;
1653
+                      hours = '0' + hours
1618
                     }
1654
                     }
1619
                     if (minites < 10) {
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
                     let params = {
1660
                     let params = {
1625
                       advices: this.waitUploadAdvices,
1661
                       advices: this.waitUploadAdvices,
1634
                       var resp = rs.data
1670
                       var resp = rs.data
1635
                       if (resp.state == 1) {
1671
                       if (resp.state == 1) {
1636
                         this.doctorAdvices = resp.data.advices
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
                       } else {
1675
                       } else {
1640
 
1676
 
1641
                       }
1677
                       }
1872
         for (const key in this.solution_prop) {
1908
         for (const key in this.solution_prop) {
1873
           this.dialysisPrescription[key] = this.solution_prop[key]
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
       if (this.dialysisPrescription.dialysis_duration_hour.length == 0 || this.dialysisPrescription.dialysis_duration_minute.length == 0) {
1920
       if (this.dialysisPrescription.dialysis_duration_hour.length == 0 || this.dialysisPrescription.dialysis_duration_minute.length == 0) {
1932
       CheckBoxSubMenu
1975
       CheckBoxSubMenu
1933
     },
1976
     },
1934
     watch: {
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
         console.log(this.dialysisPrescription.anticoagulant_shouji)
1994
         console.log(this.dialysisPrescription.anticoagulant_shouji)
1952
         console.log(this.dialysisPrescription.anticoagulant_weichi)
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
           this.dialysisPrescription.anticoagulant_zongliang = parseInt(0) + parseInt(0)
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
           this.dialysisPrescription.anticoagulant_zongliang = parseInt(this.dialysisPrescription.anticoagulant_shouji) + parseInt(this.dialysisPrescription.anticoagulant_weichi)
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
           this.dialysisPrescription.anticoagulant_zongliang = parseInt(this.dialysisPrescription.anticoagulant_shouji) + parseInt(0)
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
           this.dialysisPrescription.anticoagulant_zongliang = parseInt(0) + parseInt(this.dialysisPrescription.anticoagulant_shouji)
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 Bestand weergeven

27
         <div class="item">
27
         <div class="item">
28
           <label class="name" for="txms">干体重(kg)</label>
28
           <label class="name" for="txms">干体重(kg)</label>
29
           <div class="content">
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
           </div>
32
           </div>
33
         </div>
33
         </div>
79
       if (this.predialysis&&this.predialysis.weight_before > 0 && this.predialysis.weight_after_last_transparency > 0) {
79
       if (this.predialysis&&this.predialysis.weight_before > 0 && this.predialysis.weight_after_last_transparency > 0) {
80
         this.add_weight = parseFloat(this.predialysis.weight_before - this.predialysis.weight_after_last_transparency).toFixed(2)
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
     data () {
94
     data () {
84
       return {
95
       return {
85
         result: [],
96
         result: [],
86
         id: 0,
97
         id: 0,
87
         selectName: '',
98
         selectName: '',
88
-        add_weight:0
99
+        add_weight:0,
100
+        dry:0,
89
       }
101
       }
90
     },
102
     },
91
     props: {
103
     props: {
110
       },
122
       },
111
       prescription_prop: {
123
       prescription_prop: {
112
         type: Object
124
         type: Object
125
+      },dry_weight:{
126
+        type: Object
113
       },
127
       },
114
     },
128
     },
115
     computed: {
129
     computed: {

+ 15 - 15
src/pages/main/dialysis/LongTable.vue Bestand weergeven

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

+ 18 - 0
src/pages/main/today/TodayTab.vue Bestand weergeven

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