|
@@ -131,21 +131,21 @@
|
131
|
131
|
血管通路:<br>
|
132
|
132
|
(内瘘):
|
133
|
133
|
<check-box text="自体内瘘"
|
134
|
|
- :checked="predialysis.blood_access_internal_fistula.indexOf('自体内瘘')>-1?true:false"></check-box>
|
|
134
|
+ :checked="predialysis.internal_fistula.indexOf('自体内瘘')>-1?true:false"></check-box>
|
135
|
135
|
<check-box text="人工血管内瘘"
|
136
|
|
- :checked="predialysis.blood_access_internal_fistula.indexOf('人工血管内瘘')>-1?true:false"></check-box>
|
|
136
|
+ :checked="predialysis.internal_fistula.indexOf('人工血管内瘘')>-1?true:false"></check-box>
|
137
|
137
|
<check-box text="正常"
|
138
|
|
- :checked="predialysis.blood_access_internal_fistula.indexOf('正常')>-1?true:false"></check-box>
|
|
138
|
+ :checked="predialysis.internal_fistula.indexOf('正常')>-1?true:false"></check-box>
|
139
|
139
|
<check-box text="震颤"
|
140
|
|
- :checked="predialysis.blood_access_internal_fistula.indexOf('震颤')>-1?true:false"></check-box>
|
|
140
|
+ :checked="predialysis.internal_fistula.indexOf('震颤')>-1?true:false"></check-box>
|
141
|
141
|
<check-box text="堵塞"
|
142
|
|
- :checked="predialysis.blood_access_internal_fistula.indexOf('堵塞')>-1?true:false"></check-box>
|
|
142
|
+ :checked="predialysis.internal_fistula.indexOf('堵塞')>-1?true:false"></check-box>
|
143
|
143
|
<check-box text="血肿"
|
144
|
|
- :checked="predialysis.blood_access_internal_fistula.indexOf('血肿')>-1?true:false"></check-box>
|
|
144
|
+ :checked="predialysis.internal_fistula.indexOf('血肿')>-1?true:false"></check-box>
|
145
|
145
|
<check-box text="淤血"
|
146
|
|
- :checked="predialysis.blood_access_internal_fistula.indexOf('淤血')>-1?true:false"></check-box>
|
|
146
|
+ :checked="predialysis.internal_fistula.indexOf('淤血')>-1?true:false"></check-box>
|
147
|
147
|
<check-box text="感染"
|
148
|
|
- :checked="predialysis.blood_access_internal_fistula.indexOf('感染')>-1?true:false"></check-box>
|
|
148
|
+ :checked="predialysis.internal_fistula.indexOf('感染')>-1?true:false"></check-box>
|
149
|
149
|
</div>
|
150
|
150
|
<div class="inline_block" style="margin-left: 10px;">
|
151
|
151
|
其它:
|
|
@@ -186,9 +186,9 @@
|
186
|
186
|
<check-box text="长期" :checked="predialysis.venous_catheterization == 1?true:false"></check-box>
|
187
|
187
|
<check-box text="临时" :checked="predialysis.venous_catheterization == 2?true:false"></check-box>
|
188
|
188
|
 位置:
|
189
|
|
- <check-box text="锁骨下" :checked="predialysis.venous_catheterization_part == 1?true:false"></check-box>
|
190
|
|
- <check-box text="颈静脉" :checked="predialysis.venous_catheterization_part == 2?true:false"></check-box>
|
191
|
|
- <check-box text="股静脉" :checked="predialysis.venous_catheterization_part == 3?true:false"></check-box>
|
|
189
|
+ <check-box text="锁骨下" :checked="predialysis.blood_access_part_id == 1?true:false"></check-box>
|
|
190
|
+ <check-box text="颈静脉" :checked="predialysis.blood_access_part_id == 2?true:false"></check-box>
|
|
191
|
+ <check-box text="股静脉" :checked="predialysis.blood_access_part_id == 3?true:false"></check-box>
|
192
|
192
|
<div class="inline_block">
|
193
|
193
|
其它:
|
194
|
194
|
<div class="under_line" style="width: 50px;text-align: left">
|
|
@@ -200,22 +200,22 @@
|
200
|
200
|
<div class="row" style="padding: 2px 0;line-height:19px;">
|
201
|
201
|
<div class="inline_block">
|
202
|
202
|
中心静脉导管:
|
203
|
|
- <check-box text="正常" :checked="predialysis.ductus_arantii.indexOf('正常')>-1?true:false"></check-box>
|
204
|
|
- <check-box text="不畅" :checked="predialysis.ductus_arantii.indexOf('不畅')>-1?true:false"></check-box>
|
|
203
|
+ <check-box text="正常" :checked="predialysis.catheter.indexOf('正常')>-1?true:false"></check-box>
|
|
204
|
+ <check-box text="不畅" :checked="predialysis.catheter.indexOf('不畅')>-1?true:false"></check-box>
|
205
|
205
|
<check-box text="血流不足"
|
206
|
|
- :checked="predialysis.ductus_arantii.indexOf('血流不足')>-1?true:false"></check-box>
|
|
206
|
+ :checked="predialysis.catheter.indexOf('血流不足')>-1?true:false"></check-box>
|
207
|
207
|
(
|
208
|
|
- <check-box text="正接" :checked="predialysis.ductus_arantii.indexOf('正接')>-1?true:false"></check-box>
|
|
208
|
+ <check-box text="正接" :checked="predialysis.catheter.indexOf('正接')>-1?true:false"></check-box>
|
209
|
209
|
/
|
210
|
|
- <check-box text="反接" :checked="predialysis.ductus_arantii.indexOf('反接')>-1?true:false"></check-box>
|
|
210
|
+ <check-box text="反接" :checked="predialysis.catheter.indexOf('反接')>-1?true:false"></check-box>
|
211
|
211
|
)
|
212
|
|
- <check-box text="血栓" :checked="predialysis.ductus_arantii.indexOf('血栓')>-1?true:false"></check-box>
|
|
212
|
+ <check-box text="血栓" :checked="predialysis.catheter.indexOf('血栓')>-1?true:false"></check-box>
|
213
|
213
|
<check-box text="缝线脱落"
|
214
|
|
- :checked="predialysis.ductus_arantii.indexOf('缝线脱落')>-1?true:false"></check-box>
|
|
214
|
+ :checked="predialysis.catheter.indexOf('缝线脱落')>-1?true:false"></check-box>
|
215
|
215
|
<check-box text="导管脱落"
|
216
|
|
- :checked="predialysis.ductus_arantii.indexOf('导管脱落')>-1?true:false"></check-box>
|
217
|
|
- <check-box text="感染" :checked="predialysis.ductus_arantii.indexOf('感染')>-1?true:false"></check-box>
|
218
|
|
- <check-box text="破损" :checked="predialysis.ductus_arantii.indexOf('破损')>-1?true:false"></check-box>
|
|
216
|
+ :checked="predialysis.catheter.indexOf('导管脱落')>-1?true:false"></check-box>
|
|
217
|
+ <check-box text="感染" :checked="predialysis.catheter.indexOf('感染')>-1?true:false"></check-box>
|
|
218
|
+ <check-box text="破损" :checked="predialysis.catheter.indexOf('破损')>-1?true:false"></check-box>
|
219
|
219
|
</div>
|
220
|
220
|
<div class="inline_block">
|
221
|
221
|
其它:
|
|
@@ -1409,6 +1409,14 @@
|
1409
|
1409
|
}
|
1410
|
1410
|
},
|
1411
|
1411
|
methods: {
|
|
1412
|
+ getIsCheckDataConfig(pName, cName, targetName){
|
|
1413
|
+ var arr = getDataConfig(pName,cName)
|
|
1414
|
+ for (let i = 0; i < arr.length; i++){
|
|
1415
|
+ if (arr[i].name == targetName){
|
|
1416
|
+ return arr[i].id
|
|
1417
|
+ }
|
|
1418
|
+ }
|
|
1419
|
+ },
|
1412
|
1420
|
getAdminUser(id) {
|
1413
|
1421
|
if (id == 0) {
|
1414
|
1422
|
return ''
|