|
@@ -954,6 +954,7 @@ export default {
|
954
|
954
|
data['actual_treatment_hour'] = this.form.actual_treatment_hour ? parseFloat(this.form.actual_treatment_hour) : 0
|
955
|
955
|
data['actual_treatment_minute'] = this.form.actual_treatment_minute ? parseFloat(this.form.actual_treatment_minute) : 0
|
956
|
956
|
data['cruor'] = this.form.cruor
|
|
957
|
+ data['pip_coagulation'] = this.form.pip_coagulation
|
957
|
958
|
data['symptom_after_dialysis'] = this.form.symptom_after_dialysis
|
958
|
959
|
data['dialysis_intakes'] = this.form.dialysis_intakes ? parseFloat(this.form.dialysis_intakes) : 0
|
959
|
960
|
data['internal_fistula'] = this.form.internal_fistula
|
|
@@ -1113,8 +1114,8 @@ export default {
|
1113
|
1114
|
case '10':
|
1114
|
1115
|
this.InnerDialogProps.values = this.pip_coagulationOptions
|
1115
|
1116
|
this.InnerDialogProps.titles = '管路凝血'
|
1116
|
|
- this.InnerDialogProps.type = 'cruor'
|
1117
|
|
- this.InnerDialogProps.selected = this.form.pipe
|
|
1117
|
+ this.InnerDialogProps.type = 'pip_coagulation'
|
|
1118
|
+ this.InnerDialogProps.selected = this.form.pip_coagulation
|
1118
|
1119
|
this.InnerDialogProps.isShowTextArea = false
|
1119
|
1120
|
break
|
1120
|
1121
|
}
|
|
@@ -1130,6 +1131,9 @@ export default {
|
1130
|
1131
|
case 'cruor':
|
1131
|
1132
|
this.form.cruor = val.value.join(',')
|
1132
|
1133
|
break
|
|
1134
|
+ case 'pip_coagulation':
|
|
1135
|
+ this.form.pip_coagulation = val.value.join(',')
|
|
1136
|
+ break
|
1133
|
1137
|
case 'symptom_after_dialysis':
|
1134
|
1138
|
this.form.symptom_after_dialysis = val.value.join(',')
|
1135
|
1139
|
break
|
|
@@ -1297,7 +1301,7 @@ export default {
|
1297
|
1301
|
created() {
|
1298
|
1302
|
// console.log("this.form", this.form);
|
1299
|
1303
|
this.cruorOptions = getDataConfig('hemodialysis', 'cruor')
|
1300
|
|
- this.pip_coagulationOptions = getDataConfig('hemodialysis','pipe')
|
|
1304
|
+ this.pip_coagulationOptions = getDataConfig('hemodialysis','pip_coagulation')
|
1301
|
1305
|
this.symptomsOptions = getDataConfig('hemodialysis', 'symptoms')
|
1302
|
1306
|
this.internalFistulaOptions = getDataConfig('hemodialysis', 'internal_fistula')
|
1303
|
1307
|
this.vascularAccessOptions = getDataConfig('hemodialysis', 'vascular_access')
|