|
@@ -203,6 +203,30 @@
|
203
|
203
|
</div>
|
204
|
204
|
</div>
|
205
|
205
|
</div>
|
|
206
|
+ <div class="row" style="padding: 2px 0;line-height:23px;">
|
|
207
|
+ <div class="inline_block" style="flex:1;">
|
|
208
|
+ 置换方式:
|
|
209
|
+ <label-box
|
|
210
|
+ :isChecked="
|
|
211
|
+ prescription.displace_liqui_part == 1 ? true : false
|
|
212
|
+ "
|
|
213
|
+ showValue="前置换"
|
|
214
|
+ ></label-box>
|
|
215
|
+ <label-box
|
|
216
|
+ :isChecked="
|
|
217
|
+ prescription.displace_liqui_part == 2 ? true : false
|
|
218
|
+ "
|
|
219
|
+ showValue="后置换"
|
|
220
|
+ ></label-box>
|
|
221
|
+ </div>
|
|
222
|
+ <div class="inline_block" style="margin-left:20px;flex:1;">
|
|
223
|
+ 置换量:
|
|
224
|
+ <div class="under_line" style="width: 70px;text-align: center">
|
|
225
|
+ {{ prescription.replacement_total ? prescription.replacement_total : "" }}
|
|
226
|
+ </div>
|
|
227
|
+ ml
|
|
228
|
+ </div>
|
|
229
|
+ </div>
|
206
|
230
|
</td>
|
207
|
231
|
</tr>
|
208
|
232
|
<tr>
|
|
@@ -848,8 +872,8 @@ export default {
|
848
|
872
|
this.summary = response.data.data.summary
|
849
|
873
|
this.org_template_info = response.data.data.org_template_info
|
850
|
874
|
|
851
|
|
- if (this.monitors.length < 10) {
|
852
|
|
- var nl = 10 - this.monitors.length
|
|
875
|
+ if (this.monitors.length < 9) {
|
|
876
|
+ var nl = 9 - this.monitors.length
|
853
|
877
|
for (let index = 0; index < nl; index++) {
|
854
|
878
|
this.monitors.push([])
|
855
|
879
|
}
|