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.
94 lines
2.5 KiB
94 lines
2.5 KiB
12 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.altBatch}} </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.inventoryStatus}} </text>
|
||
|
</view>
|
||
|
<view class="item">
|
||
|
<text class="item_title">到货日期 : </text>
|
||
|
<text class="text_wrap">{{dataContent.arriveDate}} </text>
|
||
|
</view>
|
||
|
<view class="item">
|
||
|
<text class="item_title">生产日期 : </text>
|
||
|
<text class="text_wrap">{{dataContent.produceDate}} </text>
|
||
|
</view>
|
||
|
<view class="item">
|
||
|
<text class="item_title">过期日期 : </text>
|
||
|
<text class="text_wrap">{{dataContent.expireDate}} </text>
|
||
|
</view>
|
||
|
<view class="item">
|
||
|
<text class="item_title">到货主代码 : </text>
|
||
|
<text class="text_wrap">{{dataContent.toOwnerCode}} </text>
|
||
|
</view>
|
||
|
<view class="item">
|
||
|
<text class="item_title">原因 : </text>
|
||
|
<text class="text_wrap">{{dataContent.reason}} </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>
|