|
@@ -126,15 +126,7 @@
|
126
|
126
|
>
|
127
|
127
|
)
|
128
|
128
|
<label-box
|
129
|
|
- :isChecked="
|
130
|
|
- prescription.mode_id == 3
|
131
|
|
- ? true
|
132
|
|
- : prescription.mode_id == 4
|
133
|
|
- ? true
|
134
|
|
- : prescription.mode_id == 5
|
135
|
|
- ? true
|
136
|
|
- : false
|
137
|
|
- "
|
|
129
|
+ :isChecked="prescription.mode_id > 2 ? true : false"
|
138
|
130
|
showValue="其他:"
|
139
|
131
|
></label-box>
|
140
|
132
|
<span v-if="prescription.mode_id == 3">
|
|
@@ -146,6 +138,33 @@
|
146
|
138
|
<span v-if="prescription.mode_id == 5">
|
147
|
139
|
{{ prescription.mode_id == 5 ? "HF" : "" }}
|
148
|
140
|
</span>
|
|
141
|
+ <span v-if="prescription.mode_id == 6">
|
|
142
|
+ {{ prescription.mode_id == 6 ? "SCUF" : "" }}
|
|
143
|
+ </span>
|
|
144
|
+ <span v-if="prescription.mode_id == 7">
|
|
145
|
+ {{ prescription.mode_id == 7 ? "IUF" : "" }}
|
|
146
|
+ </span>
|
|
147
|
+ <span v-if="prescription.mode_id == 8">
|
|
148
|
+ {{ prescription.mode_id == 8 ? "HFHD" : "" }}
|
|
149
|
+ </span>
|
|
150
|
+ <span v-if="prescription.mode_id == 9">
|
|
151
|
+ {{ prescription.mode_id == 9 ? "HFHD+HP" : "" }}
|
|
152
|
+ </span>
|
|
153
|
+ <span v-if="prescription.mode_id == 10">
|
|
154
|
+ {{ prescription.mode_id == 10 ? "PHF" : "" }}
|
|
155
|
+ </span>
|
|
156
|
+ <span v-if="prescription.mode_id == 11">
|
|
157
|
+ {{ prescription.mode_id == 11 ? "HFR" : "" }}
|
|
158
|
+ </span>
|
|
159
|
+ <span v-if="prescription.mode_id == 12">
|
|
160
|
+ {{ prescription.mode_id == 12 ? "HDF+HP" : "" }}
|
|
161
|
+ </span>
|
|
162
|
+ <span v-if="prescription.mode_id == 13">
|
|
163
|
+ {{ prescription.mode_id == 13 ? "CRRT" : "" }}
|
|
164
|
+ </span>
|
|
165
|
+ <span v-if="prescription.mode_id == 14">
|
|
166
|
+ {{ prescription.mode_id == 14 ? "腹水回输" : "" }}
|
|
167
|
+ </span>
|
149
|
168
|
</td>
|
150
|
169
|
<td colspan="3" style="border-left:1px solid #000;padding-left:5px">
|
151
|
170
|
治疗时间:
|
|
@@ -325,7 +344,7 @@
|
325
|
344
|
血管通路:
|
326
|
345
|
<label-box
|
327
|
346
|
:isChecked="
|
328
|
|
- predialysis.blood_access_part_opera_name.indexOf('内瘘') > -1
|
|
347
|
+ predialysis.blood_access_part_opera_name == '内瘘'
|
329
|
348
|
? true
|
330
|
349
|
: false
|
331
|
350
|
"
|