|
@@ -1165,7 +1165,7 @@
|
1165
|
1165
|
<check-box
|
1166
|
1166
|
text="无"
|
1167
|
1167
|
:checked="
|
1168
|
|
- afterdialysis.complication.indexOf('无') > -1
|
|
1168
|
+ afterdialysis.complication.indexOf('无') > -1
|
1169
|
1169
|
? true
|
1170
|
1170
|
: false
|
1171
|
1171
|
"
|
|
@@ -1174,9 +1174,9 @@
|
1174
|
1174
|
text="有"
|
1175
|
1175
|
:checked="
|
1176
|
1176
|
afterdialysis.complication.indexOf('头晕') > -1 ||
|
1177
|
|
- afterdialysis.complication.indexOf('头痛') > -1||
|
1178
|
|
- afterdialysis.complication.indexOf('呕吐') > -1||
|
1179
|
|
- afterdialysis.complication.indexOf('低血压') > -1
|
|
1177
|
+ afterdialysis.complication.indexOf('头痛') > -1 ||
|
|
1178
|
+ afterdialysis.complication.indexOf('呕吐') > -1 ||
|
|
1179
|
+ afterdialysis.complication.indexOf('低血压') > -1
|
1180
|
1180
|
? true
|
1181
|
1181
|
: false
|
1182
|
1182
|
"
|
|
@@ -1984,17 +1984,26 @@
|
1984
|
1984
|
<div class="row" style="padding: 2px 0;line-height:24px;">
|
1985
|
1985
|
<div class="inline_block">
|
1986
|
1986
|
血管通路:
|
|
1987
|
+ <!-- <check-box-->
|
|
1988
|
+ <!-- text="内瘘"-->
|
|
1989
|
+ <!-- :checked="prescription.blood_access == 1 ? true : false"-->
|
|
1990
|
+ <!-- ></check-box>-->
|
|
1991
|
+ <!-- <check-box-->
|
|
1992
|
+ <!-- text="直穿"-->
|
|
1993
|
+ <!-- :checked="prescription.blood_access == 2 ? true : false"-->
|
|
1994
|
+ <!-- ></check-box>-->
|
|
1995
|
+ <!-- <check-box-->
|
|
1996
|
+ <!-- text="导管"-->
|
|
1997
|
+ <!-- :checked="prescription.blood_access == 3 ? true : false"-->
|
|
1998
|
+ <!-- ></check-box>-->
|
|
1999
|
+
|
1987
|
2000
|
<check-box
|
1988
|
|
- text="内瘘"
|
1989
|
|
- :checked="prescription.blood_access == 1 ? true : false"
|
1990
|
|
- ></check-box>
|
1991
|
|
- <check-box
|
1992
|
|
- text="直穿"
|
1993
|
|
- :checked="prescription.blood_access == 2 ? true : false"
|
1994
|
|
- ></check-box>
|
1995
|
|
- <check-box
|
1996
|
|
- text="导管"
|
1997
|
|
- :checked="prescription.blood_access == 3 ? true : false"
|
|
2001
|
+ v-for="(item, index) in bloodAccessParOpera"
|
|
2002
|
+ :key="index"
|
|
2003
|
+ :text="item.name"
|
|
2004
|
+ :checked="
|
|
2005
|
+ prescription.blood_access == item.id ? true : false
|
|
2006
|
+ "
|
1998
|
2007
|
></check-box>
|
1999
|
2008
|
</div>
|
2000
|
2009
|
<div class="inline_block">
|
|
@@ -2700,7 +2709,7 @@ export default {
|
2700
|
2709
|
}
|
2701
|
2710
|
this.check = response.data.data.check;
|
2702
|
2711
|
this.predialysis = response.data.data.PredialysisEvaluation;
|
2703
|
|
- // console.log("透前数据", this.predialysis);
|
|
2712
|
+ // console.log("透前数据", this.predialysis);
|
2704
|
2713
|
this.predialysis.blood_access_part_opera_name = this.bloodAccessParOperaName(
|
2705
|
2714
|
this.predialysis.blood_access_part_opera_id
|
2706
|
2715
|
);
|
|
@@ -2779,6 +2788,7 @@ export default {
|
2779
|
2788
|
);
|
2780
|
2789
|
|
2781
|
2790
|
this.prescription = response.data.data.dialysisPrescription;
|
|
2791
|
+ console.log("透析处方", this.prescription);
|
2782
|
2792
|
this.receiverTreatmentAccess =
|
2783
|
2793
|
response.data.data.receiverTreatmentAccess;
|
2784
|
2794
|
|
|
@@ -3197,16 +3207,19 @@ export default {
|
3197
|
3207
|
this.intake_arr = getDataConfig("hemodialysis", "intake");
|
3198
|
3208
|
this.nutrition_arr = getDataConfig("hemodialysis", "nutrition");
|
3199
|
3209
|
|
3200
|
|
- // this.bloodAccessParOpera = getDataConfig('hemodialysis', 'vascular_access_desc')
|
3201
|
|
-
|
|
3210
|
+ this.bloodAccessParOpera = getDataConfig(
|
|
3211
|
+ "hemodialysis",
|
|
3212
|
+ "vascular_access_desc"
|
|
3213
|
+ );
|
|
3214
|
+ // console.log("血管通路", this.bloodAccessParOpera);
|
3202
|
3215
|
var bloodAccessParOpera = getDataConfig(
|
3203
|
3216
|
"hemodialysis",
|
3204
|
3217
|
"vascular_access_desc"
|
3205
|
3218
|
);
|
3206
|
|
- for (var key in bloodAccessParOpera) {
|
3207
|
|
- this.bloodAccessParOpera[bloodAccessParOpera[key].id] =
|
3208
|
|
- bloodAccessParOpera[key];
|
3209
|
|
- }
|
|
3219
|
+ // for (var key in bloodAccessParOpera) {
|
|
3220
|
+ // this.bloodAccessParOpera[bloodAccessParOpera[key].id] =
|
|
3221
|
+ // bloodAccessParOpera[key];
|
|
3222
|
+ // }
|
3210
|
3223
|
|
3211
|
3224
|
var dialysateFormulationOptions = getDataConfig(
|
3212
|
3225
|
"hemodialysis",
|