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.
83 lines
2.2 KiB
83 lines
2.2 KiB
<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.productionLineCode}} </text>
|
|
</view>
|
|
<view class="item">
|
|
<text class="item_title">工位代码 : </text>
|
|
<text class="text_wrap">{{dataContent.workStationCode}} </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.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.toLocationCode}} </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>
|
|
|