|
@@ -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
|
},
|