|
@@ -276,7 +276,7 @@
|
276
|
276
|
align="center"
|
277
|
277
|
label="置换量(ml)"
|
278
|
278
|
width="100"
|
279
|
|
- v-if=" isShow('置换量') && ((template_id == 6 || template_id == 10 || template_id == 11 || template_id == 20 || template_id == 26) || org_id != 9919)" >
|
|
279
|
+ v-if=" isShow('置换量') && ((template_id == 6 && org_id != 9919) || template_id == 10 || template_id == 11 || template_id == 20 || template_id == 26)" >
|
280
|
280
|
<template slot-scope="scope">
|
281
|
281
|
{{ scope.row.displacement_quantity ? scope.row.displacement_quantity : "" }}
|
282
|
282
|
</template>
|
|
@@ -287,7 +287,7 @@
|
287
|
287
|
align="center"
|
288
|
288
|
label="置换量(L)"
|
289
|
289
|
width="100"
|
290
|
|
- v-if=" isShow('置换量') && ((template_id != 6 && template_id != 10 && template_id != 11 && template_id != 20 && template_id != 26) || org_id == 9919)" >
|
|
290
|
+ v-if=" isShow('置换量') && ((template_id != 6 || org_id == 9919) && template_id != 10 && template_id != 11 && template_id != 20 && template_id != 26)" >
|
291
|
291
|
<template slot-scope="scope">
|
292
|
292
|
{{ scope.row.displacement_quantity ? scope.row.displacement_quantity : "" }}
|
293
|
293
|
</template>
|
|
@@ -527,12 +527,12 @@
|
527
|
527
|
<el-input v-model="form.replacement_rate"></el-input>
|
528
|
528
|
</el-form-item>
|
529
|
529
|
</el-col>
|
530
|
|
- <el-col :span="8" v-if=" isShow('置换量') && ((template_id != 6 && template_id != 10 && template_id != 11 && template_id != 20 && template_id != 26) || org_id == 9919)">
|
|
530
|
+ <el-col :span="8" v-if=" isShow('置换量') && ((template_id != 6 || org_id == 9919) && template_id != 10 && template_id != 11 && template_id != 20 && template_id != 26)">
|
531
|
531
|
<el-form-item label="置换量(L):">
|
532
|
532
|
<el-input v-model="form.displacement_quantity"></el-input>
|
533
|
533
|
</el-form-item>
|
534
|
534
|
</el-col>
|
535
|
|
- <el-col :span="8" v-if=" isShow('置换量') && ((template_id == 6 || template_id == 10 || template_id == 11 || template_id == 20 || template_id == 26) || org_id != 9919)">
|
|
535
|
+ <el-col :span="8" v-if=" isShow('置换量') && ((template_id == 6 && org_id != 9919) || template_id == 10 || template_id == 11 || template_id == 20 || template_id == 26)">
|
536
|
536
|
<el-form-item label="置换量(ml):">
|
537
|
537
|
<el-input v-model="form.displacement_quantity"></el-input>
|
538
|
538
|
</el-form-item>
|