|
@@ -150,7 +150,8 @@
|
150
|
150
|
template_id == 17 ||
|
151
|
151
|
template_id == 18 ||
|
152
|
152
|
template_id == 19 ||
|
153
|
|
- template_id == 20)
|
|
153
|
+ template_id == 20 ||
|
|
154
|
+ template_id == 21)
|
154
|
155
|
"
|
155
|
156
|
>
|
156
|
157
|
<template slot-scope="scope">
|
|
@@ -176,7 +177,8 @@
|
176
|
177
|
template_id != 17 &&
|
177
|
178
|
template_id != 18 &&
|
178
|
179
|
template_id != 19 &&
|
179
|
|
- template_id != 20
|
|
180
|
+ template_id != 20 &&
|
|
181
|
+ template_id != 21
|
180
|
182
|
"
|
181
|
183
|
>
|
182
|
184
|
<template slot-scope="scope">
|
|
@@ -313,7 +315,7 @@
|
313
|
315
|
align="center"
|
314
|
316
|
label="超滤率(ml/h)"
|
315
|
317
|
width="100"
|
316
|
|
- v-if="isShow('超滤率') && (template_id == 6 || template_id == 10 || template_id == 11 || template_id == 12 || template_id == 13 || template_id == 17 || template_id == 18 || template_id == 19 || template_id == 20) "
|
|
318
|
+ v-if="isShow('超滤率') && (template_id == 6 || template_id == 10 || template_id == 11 || template_id == 12 || template_id == 13 || template_id == 17 || template_id == 18 || template_id == 19 || template_id == 20 || template_id == 21) "
|
317
|
319
|
>
|
318
|
320
|
<template slot-scope="scope">
|
319
|
321
|
{{ scope.row.ultrafiltration_rate ? scope.row.ultrafiltration_rate : "" }}
|
|
@@ -324,7 +326,7 @@
|
324
|
326
|
align="center"
|
325
|
327
|
label="超滤率(L/h)"
|
326
|
328
|
width="100"
|
327
|
|
- v-if="isShow('超滤率') && template_id != 6 && template_id != 10 && template_id != 11 && template_id != 12 && template_id != 13 && template_id != 17 && template_id != 18 && template_id != 19 && template_id != 20"
|
|
329
|
+ v-if="isShow('超滤率') && template_id != 6 && template_id != 10 && template_id != 11 && template_id != 12 && template_id != 13 && template_id != 17 && template_id != 18 && template_id != 19 && template_id != 20 && template_id != 21"
|
328
|
330
|
>
|
329
|
331
|
<template slot-scope="scope">
|
330
|
332
|
{{ scope.row.ultrafiltration_rate ? scope.row.ultrafiltration_rate : "" }}
|
|
@@ -465,12 +467,12 @@
|
465
|
467
|
</el-form-item>
|
466
|
468
|
</el-col>
|
467
|
469
|
|
468
|
|
- <el-col :span="8" v-if="isShow('超滤率') && (template_id == 6 || template_id == 10 || template_id == 11 || template_id == 12 || template_id == 13 || template_id == 17 || template_id == 18 || template_id == 19 || template_id == 20) ">
|
|
470
|
+ <el-col :span="8" v-if="isShow('超滤率') && (template_id == 6 || template_id == 10 || template_id == 11 || template_id == 12 || template_id == 13 || template_id == 17 || template_id == 18 || template_id == 19 || template_id == 20 || template_id == 21) ">
|
469
|
471
|
<el-form-item label="超滤率(ml/h)">
|
470
|
472
|
<el-input v-model="form.ultrafiltration_rate"></el-input>
|
471
|
473
|
</el-form-item>
|
472
|
474
|
</el-col>
|
473
|
|
- <el-col :span="8" v-if="isShow('超滤率') && template_id != 6 && template_id != 10 && template_id != 11 && template_id != 12 && template_id != 13 && template_id != 17 && template_id != 18 && template_id != 19 && template_id != 20">
|
|
475
|
+ <el-col :span="8" v-if="isShow('超滤率') && template_id != 6 && template_id != 10 && template_id != 11 && template_id != 12 && template_id != 13 && template_id != 17 && template_id != 18 && template_id != 19 && template_id != 20 && template_id != 21">
|
474
|
476
|
<el-form-item label="超滤率(L/h)">
|
475
|
477
|
<el-input v-model="form.ultrafiltration_rate"></el-input>
|
476
|
478
|
</el-form-item>
|
|
@@ -478,7 +480,7 @@
|
478
|
480
|
|
479
|
481
|
<el-col
|
480
|
482
|
:span="8"
|
481
|
|
- v-if=" isShow('超滤量') && (template_id == 6 || template_id == 10 || template_id == 11 || template_id == 12 || template_id == 13 || template_id == 17 || template_id == 18 || template_id == 19 || template_id == 20) " >
|
|
483
|
+ v-if=" isShow('超滤量') && (template_id == 6 || template_id == 10 || template_id == 11 || template_id == 12 || template_id == 13 || template_id == 17 || template_id == 18 || template_id == 19 || template_id == 20 || template_id == 21) " >
|
482
|
484
|
<el-form-item label="超滤量(ml):">
|
483
|
485
|
<el-input v-model="form.ultrafiltration_volume"></el-input>
|
484
|
486
|
</el-form-item>
|
|
@@ -486,7 +488,7 @@
|
486
|
488
|
|
487
|
489
|
<el-col
|
488
|
490
|
:span="8"
|
489
|
|
- v-if=" isShow('超滤量') && template_id != 6 && template_id != 10 && template_id != 11 && template_id != 12 && template_id != 13 && template_id != 17 && template_id != 18 && template_id != 19 && template_id != 20" >
|
|
491
|
+ v-if=" isShow('超滤量') && template_id != 6 && template_id != 10 && template_id != 11 && template_id != 12 && template_id != 13 && template_id != 17 && template_id != 18 && template_id != 19 && template_id != 20 && template_id != 21" >
|
490
|
492
|
<el-form-item label="超滤量(L):">
|
491
|
493
|
<el-input v-model="form.ultrafiltration_volume"></el-input>
|
492
|
494
|
</el-form-item>
|