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.
 
 
 
 
 
 

49 lines
1.2 KiB

<!--收货任务卡片-->
<template>
<view class="detail-content">
<view class="choose_main">
<view class="ljh_box">
<view class="uni-flex uni-row space-between">
<view class="text-itemcode">零件号:{{ dataContent.itemCode }}</view>
</view>
<view class="uni-flex space-between">
<view class="ljh_left desc_ljh">
<view class="font_xs text_lightblue">名称:{{ dataContent.itemName }}</view>
</view>
<view class="ljh_right">
<text class="tnum">{{ dataContent.qty }}</text>
<text class="tunit">{{ dataContent.uom }}</text>
</view>
</view>
</view>
<view class="cen_card margin_xs_bottom">
<view class="label_box uni-flex uni-row">
<view class="label_info">
<label class="">
<image class="icon_normal" src="@/static/icons_ui/icon_xm_blue.svg">
</image>
</label>
<text>箱码:{{ dataContent.packingCode }}</text>
<!-- 库位 -->
</view>
</view>
</view>
</view>
</view>
</template>
<script>
export default {
name: "comDyItemInfo",
data() {
return {};
},
props: ['dataContent'],
filters: {
},
}
</script>
<style scoped lang="scss">
</style>