|
@@ -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) " >
|
|
279
|
+ v-if=" isShow('置换量') && (template_id == 6 || template_id == 10 || template_id == 11 || template_id == 20 || template_id == 26) || org_id != 9919" >
|
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" >
|
|
290
|
+ v-if=" isShow('置换量') && (template_id != 6 && template_id != 10 && template_id != 11 && template_id != 20 && template_id != 26) || org_id == 9919" >
|
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">
|
|
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">
|
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)">
|
|
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">
|
536
|
536
|
<el-form-item label="置换量(ml):">
|
537
|
537
|
<el-input v-model="form.displacement_quantity"></el-input>
|
538
|
538
|
</el-form-item>
|
|
@@ -789,6 +789,7 @@ export default {
|
789
|
789
|
},
|
790
|
790
|
created() {
|
791
|
791
|
this.template_id = this.$store.getters.xt_user.template_info.template_id
|
|
792
|
+ this.org_id = this.$store.getters.xt_user.template_info.org_id
|
792
|
793
|
var date = this.$route.query.date
|
793
|
794
|
var patient_id = this.$route.query.patient_id
|
794
|
795
|
this.patient_id = patient_id
|