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.
 
 
 
 

70 lines
1.3 KiB

<template>
<view class="">
<uni-popup ref="popup">
<view class="uni-flex uni-column" style="background-color: white;width: 200px; height:60%;">
<view class="">
物品信息 {{dataContent.itemCode}}
</view>
<view class="">
描述 {{dataContent.itemDesc1}} {{dataContent.itemDesc2}}
</view>
<view class="">
箱码 {{dataContent.recommendPackingCode}}
</view>
<view class="">
批次 {{dataContent.recommendSupplierBatch}}
</view>
<view class="">
库位 {{dataContent.recommendLocationCode}}
</view>
<view class="">
数量{{dataContent.recommendQty}}
</view>
<view class="">
标包数量{{dataContent.stdPackQty}}
</view>
<view class="">
推荐单位{{dataContent.recommendUom}}
</view>
</view>
</uni-popup>
</view>
</template>
<script>
export default {
props: {
title: {
type: String,
default: ""
},
dataContent: {
type: Object,
default: {}
},
},
methods: {
openScanPopup() {
this.$refs.popup.open('center')
},
closeScanPopup() {
this.$refs.popup.close()
},
startEdit(){
this.$refs.receiptCountEdit.openScanPopup();
}
}
}
</script>
<style>
.popup_box {
width: 500rpx;
height: 500rpx;
}
</style>