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.

84 lines
2.2 KiB

10 months ago
<template>
<view class="">
<uni-popup ref="popup">
<requestDetailCommonInfo :dataContent="dataContent" @onClose="closePopup">
<view class="">
<view class="uni-flex uni-column">
<view class="item">
<text class="item_title">包装号 : </text>
<text class="text_wrap">{{dataContent.packingNumber}} </text>
</view>
<view class="item">
<text class="item_title">器具号 : </text>
<text class="text_wrap">{{dataContent.containerNumber}} </text>
</view>
<view class="item">
<text class="item_title">批次 : </text>
<text class="text_wrap">{{dataContent.batch}} </text>
</view>
<view class="item">
<text class="item_title">从库位代码 : </text>
<text class="text_wrap">{{dataContent.fromLocationCode }} </text>
</view>
<view class="item">
<text class="item_title">库存状态 : </text>
<text class="text_wrap">{{dataContent.inventoryStatus}} </text>
</view>
<view class="item">
<text class="item_title">订单号 : </text>
<text class="text_wrap">{{dataContent.poNumber}} </text>
</view>
<view class="item">
<text class="item_title">订单行 : </text>
<text class="text_wrap">{{dataContent.poLine}} </text>
</view>
<view class="item">
<text class="item_title">从货主代码 : </text>
<text class="text_wrap">{{dataContent.fromOwnerCode}} </text>
</view>
<view class="item">
<text class="item_title">到货主代码 : </text>
<text class="text_wrap">{{dataContent.toOwnerCode}} </text>
</view>
</view>
</view>
</requestDetailCommonInfo>
</uni-popup>
</view>
</template>
<script>
import requestDetailCommonInfo from '@/mycomponents/detail/requestDetailCommonInfo.vue'
export default {
components: {
requestDetailCommonInfo
},
data() {
return {
dataContent: {
type: Object,
default: {}
}
}
},
mounted() {},
props: {},
methods: {
openPopup(val) {
this.dataContent = val;
this.$refs.popup.open('bottom')
},
closePopup() {
this.$refs.popup.close()
},
}
}
</script>
<style>
</style>