|
|
@@ -26,8 +26,9 @@
|
|
|
<div class="content">{{ item.formingWeight }}{{ item.weightUnit }}</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
+
|
|
|
|
|
|
- <div class="item rx-sc">
|
|
|
+ <div class="item rx-sc" v-if="clientEnvironmentId != 3 && item.singleReport != 0">
|
|
|
<div class="rx ww40">
|
|
|
<div class="lable lable100 rx-cc">合格品数量</div>
|
|
|
<div class="content content_num rx-sc">
|
|
|
@@ -47,7 +48,7 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
|
|
|
- <div class="item rx-sc" v-for="(not, notIndex) in notFormedList" :key="notIndex">
|
|
|
+ <div class="item rx-sc" v-for="(not, notIndex) in notFormedList" :key="notIndex" v-if="clientEnvironmentId != 3 && item.singleReport != 0">
|
|
|
<div class="rx ww40">
|
|
|
<div class="lable lable100 rx-cc">不合格数量</div>
|
|
|
<div class="content content_num rx-sc">
|
|
|
@@ -128,6 +129,14 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
|
|
|
+ computed: {
|
|
|
+
|
|
|
+ clientEnvironmentId() {
|
|
|
+ return this.$store.state.user.info.clientEnvironmentId;
|
|
|
+ }
|
|
|
+ },
|
|
|
+
|
|
|
+
|
|
|
data() {
|
|
|
return {
|
|
|
notFormedList: [],
|