|
@@ -604,7 +604,6 @@
|
604
|
604
|
<el-col :span="8" v-if="isShow('透析相关高血压')">
|
605
|
605
|
<el-form-item label="透析相关高血压:">
|
606
|
606
|
<el-select v-model="form.hypertenison">
|
607
|
|
- <el-option :key="0" label="请选择" :value="0"></el-option>
|
608
|
607
|
<el-option
|
609
|
608
|
v-for="item in option"
|
610
|
609
|
:label="item.name"
|
|
@@ -617,7 +616,6 @@
|
617
|
616
|
<el-col :span="8" v-if="isShow('透析相关低血压')">
|
618
|
617
|
<el-form-item label="透析相关低血压">
|
619
|
618
|
<el-select v-model="form.hypopiesia">
|
620
|
|
- <el-option :key="0" label="请选择" :value="0"></el-option>
|
621
|
619
|
<el-option
|
622
|
620
|
v-for="item in option"
|
623
|
621
|
:label="item.name"
|
|
@@ -629,12 +627,26 @@
|
629
|
627
|
</el-col>
|
630
|
628
|
<el-col :span="8" v-if="isShow('离科方式')">
|
631
|
629
|
<el-form-item label="离科方式">
|
632
|
|
- <el-input v-model="form.leave_office_method"></el-input>
|
|
630
|
+ <el-select v-model="form.leave_office_method">
|
|
631
|
+ <el-option
|
|
632
|
+ v-for="item in leaveOfficeMethod"
|
|
633
|
+ :label="item.name"
|
|
634
|
+ :value="item.id"
|
|
635
|
+ :key="item.id"
|
|
636
|
+ ></el-option>
|
|
637
|
+ </el-select>
|
633
|
638
|
</el-form-item>
|
634
|
639
|
</el-col>
|
635
|
640
|
<el-col :span="8" v-if="isShow('转归')">
|
636
|
641
|
<el-form-item label="转归">
|
637
|
|
- <el-input v-model="form.lapse"></el-input>
|
|
642
|
+ <el-select v-model="form.lapse">
|
|
643
|
+ <el-option
|
|
644
|
+ v-for="item in lapseList"
|
|
645
|
+ :label="item.name"
|
|
646
|
+ :value="item.id"
|
|
647
|
+ :key="item.id"
|
|
648
|
+ ></el-option>
|
|
649
|
+ </el-select>
|
638
|
650
|
</el-form-item>
|
639
|
651
|
</el-col>
|
640
|
652
|
<el-col :span="24" v-if="isShow('KT/V')">
|
|
@@ -728,8 +740,8 @@ export default {
|
728
|
740
|
sealing_fluid_special_name: '',
|
729
|
741
|
option:[
|
730
|
742
|
{id:0,name:"请选择"},
|
731
|
|
- {id:1,name:"有"},
|
732
|
|
- {id:2,name:"无"},
|
|
743
|
+ {id:"1",name:"有"},
|
|
744
|
+ {id:"2",name:"无"},
|
733
|
745
|
],
|
734
|
746
|
InnerDialogProps: {
|
735
|
747
|
values: [],
|
|
@@ -802,7 +814,9 @@ export default {
|
802
|
814
|
other_complication:'',
|
803
|
815
|
ktv:"",
|
804
|
816
|
urr:"",
|
805
|
|
- }
|
|
817
|
+ },
|
|
818
|
+ lapseList:[],
|
|
819
|
+ leaveOfficeMethod:[]
|
806
|
820
|
}
|
807
|
821
|
},
|
808
|
822
|
watch: {
|
|
@@ -1006,6 +1020,12 @@ export default {
|
1006
|
1020
|
data["additional_weight"] = this.form.additional_weight ? parseFloat(this.form.additional_weight) : 0
|
1007
|
1021
|
data["other_complication"] = this.form.other_complication
|
1008
|
1022
|
data["ktv"] = this.form.ktv
|
|
1023
|
+ data["urr"] = this.form.urr
|
|
1024
|
+ data["hypertenison"] = parseInt(this.form.hypertenison)
|
|
1025
|
+ data["hypopiesia"] = parseInt(this.form.hypopiesia)
|
|
1026
|
+ data["leave_office_method"] = this.form.leave_office_method
|
|
1027
|
+ data["lapse"] = this.form.lapse
|
|
1028
|
+ console.log("Paramsquery",data)
|
1009
|
1029
|
postAssessmentAfterDislysis(ParamsQuery, data)
|
1010
|
1030
|
.then(response => {
|
1011
|
1031
|
this.loading = false
|
|
@@ -1154,8 +1174,11 @@ export default {
|
1154
|
1174
|
this.predialysis = predialysis
|
1155
|
1175
|
this.form.observation_content = predialysis.observation_content
|
1156
|
1176
|
this.form.inpatient_department = predialysis.inpatient_department
|
1157
|
|
- this.form.observation_content_other =
|
1158
|
|
- predialysis.observation_content_other
|
|
1177
|
+ this.form.observation_content_other = predialysis.observation_content_other
|
|
1178
|
+ this.form.hypertenison = predialysis.hypertenison.toString()
|
|
1179
|
+ this.form.hypopiesia = predialysis.hypopiesia.toString()
|
|
1180
|
+ this.form.leave_office_method = predialysis.leave_office_method
|
|
1181
|
+ this.form.lapse = predialysis.lapse
|
1159
|
1182
|
// console.log("透后", predialysis);
|
1160
|
1183
|
|
1161
|
1184
|
if(predialysis != null && predialysis.id == 0){
|
|
@@ -1267,6 +1290,8 @@ export default {
|
1267
|
1290
|
this.complicationOptions = getDataConfig('hemodialysis', 'complication')
|
1268
|
1291
|
this.bloodFlowOptions = getDataConfig('hemodialysis', 'blood_flow')
|
1269
|
1292
|
this.sealingFluidDisposeOptions = getDataConfig('hemodialysis', 'sealing_fluid_dispose')
|
|
1293
|
+ this.lapseList = getDataConfig('hemodialysis', 'lapse')
|
|
1294
|
+ this.leaveOfficeMethod = getDataConfig('hemodialysis','leave_office_method')
|
1270
|
1295
|
this.internalFistulaTremorAcOptions = this.$store.getters.internal_fistula_tremor_ac
|
1271
|
1296
|
this.patientGoseOptions = this.$store.getters.patient_gose
|
1272
|
1297
|
this.observationContentOptions = this.$store.getters.observation_content
|