You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

47 lines
936 B

<template>
<view class="cen_card" style="background-color: #fff;">
<view class="cell_box uni-flex uni-row">
<view class="cell_info">
<view class="text_lightblue">仓库</view>
<view>{{dataContent.warehouseCode}}</view>
</view>
<view class="cell_info">
<view class="text_lightblue">库区</view>
<view>{{dataContent.areaCode }}</view>
</view>
<view class="cell_info">
<view class="text_lightblue">库位组</view>
<view>{{ dataContent.locationGroupCode }}</view>
</view>
<view class="cell_info">
<view class="text_lightblue">ERP储位</view>
<view>{{ dataContent.erpLocationCode }}</view>
</view>
</view>
</view>
</template>
<script>
export default {
name: 'comItemLocationCenter',
components: {},
props: {
dataContent: {
type: Object,
default: {}
}
},
data() {
return {}
},
created() {
},
methods: {
}
}
</script>
<style>
</style>