|
@@ -64,6 +64,12 @@
|
64
|
64
|
</el-form-item>
|
65
|
65
|
</el-col>
|
66
|
66
|
|
|
67
|
+ <el-col :span="8" v-if="isShow('透后体重')">
|
|
68
|
+ <el-form-item label="透后体重(kg): " :prop="isName('透后体重')" :rules="isCheckmust('透后体重')">
|
|
69
|
+ <el-input v-model="form.after_weight"></el-input>
|
|
70
|
+ </el-form-item>
|
|
71
|
+ </el-col>
|
|
72
|
+
|
67
|
73
|
<el-col :span="8" v-if="isShow('穿刺处血肿')">
|
68
|
74
|
<el-form-item label="穿刺处血肿: " :prop="isName('穿刺处血肿')" :rules="isCheckmust('穿刺处血肿')">
|
69
|
75
|
<el-radio-group v-model="form.puncture_point_haematoma">
|
|
@@ -900,6 +906,7 @@ export default {
|
900
|
906
|
condenser:"",
|
901
|
907
|
last_after_weight:"",
|
902
|
908
|
displace_liqui_value:"",
|
|
909
|
+ after_weight:"",
|
903
|
910
|
},
|
904
|
911
|
lapseList:[],
|
905
|
912
|
leaveOfficeMethod:[],
|
|
@@ -1043,6 +1050,9 @@ export default {
|
1043
|
1050
|
|
1044
|
1051
|
this.form.additional_weight = this.predialysis_evaluation.additional_weight
|
1045
|
1052
|
}
|
|
1053
|
+ },
|
|
1054
|
+ 'form.after_weight':function(){
|
|
1055
|
+ this.form.after_weight = this.form.weight_after - this.form.additional_weight
|
1046
|
1056
|
}
|
1047
|
1057
|
},
|
1048
|
1058
|
methods: {
|