ysy 1 년 전
부모
커밋
963688210a
1개의 변경된 파일4개의 추가작업 그리고 2개의 파일을 삭제
  1. 4 2
      pages/pda/jobBooking/components/jobBom.vue

+ 4 - 2
pages/pda/jobBooking/components/jobBom.vue

@@ -11,7 +11,7 @@
 			<view class="content_table">
 
 
-				<view class="item rx-sc" v-if="Object.prototype.hasOwnProperty.call(item, 'product')">
+				<view class="item rx-sc" v-if="Object.prototype.hasOwnProperty.call(item, 'product') && clientEnvironmentId != 3">
 					<view class="rx ">
 						<view class="lable lable220 rx-cc ">投料数量</view>
 						<view class="content">
@@ -141,7 +141,9 @@
 
 		data() {
 			return {
-				notFormedList: []
+				notFormedList: [],
+				clientEnvironmentId: uni.getStorageSync("userInfo") && uni.getStorageSync("userInfo")
+					.clientEnvironmentId, // *1 主环境-601环境   2 soll-索尔环境    3 tg-碳谷环境
 
 			}
 		},