|
@@ -201,6 +201,16 @@
|
201
|
201
|
</el-form-item>
|
202
|
202
|
</el-col>
|
203
|
203
|
|
|
204
|
+ <el-col :span="8" v-if="isShow('管路凝血')">
|
|
205
|
+ <el-form-item label="管路凝血: ">
|
|
206
|
+ <el-input
|
|
207
|
+ v-model="form.pip_coagulation"
|
|
208
|
+ readonly
|
|
209
|
+ @focus="showDialog('10')"
|
|
210
|
+ ></el-input>
|
|
211
|
+ </el-form-item>
|
|
212
|
+ </el-col>
|
|
213
|
+
|
204
|
214
|
<el-col :span="8" v-if="isShow('患者去向')">
|
205
|
215
|
<el-form-item label="患者去向: ">
|
206
|
216
|
<el-select v-model="form.patient_gose">
|
|
@@ -440,7 +450,7 @@
|
440
|
450
|
</el-form-item>
|
441
|
451
|
</el-col>
|
442
|
452
|
|
443
|
|
-
|
|
453
|
+
|
444
|
454
|
<el-col :span="8" v-if="isShow('失衡综合症')">
|
445
|
455
|
<el-form-item label="失衡综合症: ">
|
446
|
456
|
<el-select v-model="form.disequilibrium_syndrome">
|
|
@@ -455,7 +465,7 @@
|
455
|
465
|
</el-select>
|
456
|
466
|
</el-form-item>
|
457
|
467
|
</el-col>
|
458
|
|
-
|
|
468
|
+
|
459
|
469
|
<el-col :span="8" v-if="isShow('透析期间进食')">
|
460
|
470
|
<el-form-item label="透析期间进食: ">
|
461
|
471
|
<el-radio-group v-model="form.is_eat">
|
|
@@ -676,6 +686,7 @@ export default {
|
676
|
686
|
isVisibility: false,
|
677
|
687
|
template_id: 0,
|
678
|
688
|
cruorOptions: [],
|
|
689
|
+ pip_coagulationOptions: [],
|
679
|
690
|
symptomsOptions: [],
|
680
|
691
|
internalFistulaOptions: [],
|
681
|
692
|
vascularAccessOptions: [],
|
|
@@ -723,6 +734,7 @@ export default {
|
723
|
734
|
actual_treatment_hour: '',
|
724
|
735
|
actual_treatment_minute: '',
|
725
|
736
|
cruor: '',
|
|
737
|
+ pip_coagulation: '',
|
726
|
738
|
symptom_after_dialysis: '',
|
727
|
739
|
dialysis_intakes: '',
|
728
|
740
|
internal_fistula: '',
|
|
@@ -1000,7 +1012,7 @@ export default {
|
1000
|
1012
|
data["machine_run"] = this.form.machine_run
|
1001
|
1013
|
data["after_urea"] = this.form.after_urea
|
1002
|
1014
|
console.log("Paramsquery",data)
|
1003
|
|
-
|
|
1015
|
+
|
1004
|
1016
|
postAssessmentAfterDislysis(ParamsQuery, data)
|
1005
|
1017
|
.then(response => {
|
1006
|
1018
|
this.loading = false
|
|
@@ -1091,12 +1103,20 @@ export default {
|
1091
|
1103
|
this.InnerDialogProps.isShowTextArea = false
|
1092
|
1104
|
break
|
1093
|
1105
|
case '9':
|
|
1106
|
+
|
1094
|
1107
|
this.InnerDialogProps.values = this.sealingFluidDisposeOptions
|
1095
|
1108
|
this.InnerDialogProps.titles = '封管液配置'
|
1096
|
1109
|
this.InnerDialogProps.type = 'sealing_fluid_dispose'
|
1097
|
1110
|
this.InnerDialogProps.selected = this.form.sealing_fluid_dispose
|
1098
|
1111
|
this.InnerDialogProps.isShowTextArea = false
|
1099
|
1112
|
break
|
|
1113
|
+ case '10':
|
|
1114
|
+ this.InnerDialogProps.values = this.pip_coagulationOptions
|
|
1115
|
+ this.InnerDialogProps.titles = '管路凝血'
|
|
1116
|
+ this.InnerDialogProps.type = 'cruor'
|
|
1117
|
+ this.InnerDialogProps.selected = this.form.pipe
|
|
1118
|
+ this.InnerDialogProps.isShowTextArea = false
|
|
1119
|
+ break
|
1100
|
1120
|
}
|
1101
|
1121
|
},
|
1102
|
1122
|
selectActualTreatmentHour(val) {
|
|
@@ -1163,7 +1183,7 @@ export default {
|
1163
|
1183
|
if(predialysis.id > 0){
|
1164
|
1184
|
this.form.hypopiesia = predialysis.hypopiesia.toString()
|
1165
|
1185
|
}
|
1166
|
|
-
|
|
1186
|
+
|
1167
|
1187
|
|
1168
|
1188
|
|
1169
|
1189
|
this.form.leave_office_method = predialysis.leave_office_method
|
|
@@ -1277,6 +1297,7 @@ export default {
|
1277
|
1297
|
created() {
|
1278
|
1298
|
// console.log("this.form", this.form);
|
1279
|
1299
|
this.cruorOptions = getDataConfig('hemodialysis', 'cruor')
|
|
1300
|
+ this.pip_coagulationOptions = getDataConfig('hemodialysis','pipe')
|
1280
|
1301
|
this.symptomsOptions = getDataConfig('hemodialysis', 'symptoms')
|
1281
|
1302
|
this.internalFistulaOptions = getDataConfig('hemodialysis', 'internal_fistula')
|
1282
|
1303
|
this.vascularAccessOptions = getDataConfig('hemodialysis', 'vascular_access')
|