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.
58 lines
1.3 KiB
58 lines
1.3 KiB
2 years ago
|
|
||
|
<template>
|
||
|
<view class="choose_main">
|
||
|
<view class="ljh_box">
|
||
|
<view class="tit_ljh">{{ dataContent.itemCode }}</view>
|
||
|
<view class="uni-flex uni-row space-between">
|
||
|
<view class="ljh_left">
|
||
|
<view class="font_xs text_lightblue">{{dataContent.itemName}}</view>
|
||
|
<view class="font_xs text_lightblue">{{dataContent.item.desc2}}</view>
|
||
|
</view>
|
||
|
<view class="ljh_right">
|
||
|
<text class="tnum">{{dataContent.qty.qty}}</text>
|
||
|
<text class="tunit">{{dataContent.qty.uom}}</text>
|
||
|
</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
<view class="uni-flex uni-row bot_card">
|
||
|
<view class="bot_card_item item_long">
|
||
|
<label class="icon_bg icon_bg_xm">
|
||
|
<image class="icon_normal" src="@/static/icons_ui/icon_xm.svg"></image>
|
||
|
</label>
|
||
|
<text>{{dataContent.packingCode}}</text>
|
||
|
</view>
|
||
|
<view class="bot_card_item" style="width:46%;">
|
||
|
</view>
|
||
|
<view class="bot_card_item">
|
||
|
<label class="icon_bg icon_bg_pc">
|
||
|
<image class="icon_normal" src="@/static/icons_ui/icon_pc.svg"></image>
|
||
|
</label>
|
||
|
<text>{{dataContent.lot}}</text>
|
||
|
</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
name: "comReceipt",
|
||
|
data() {
|
||
|
return {};
|
||
|
},
|
||
|
// 此处定义传入的数据
|
||
|
props: {
|
||
|
dataContent: {
|
||
|
type: Object,
|
||
|
value: null
|
||
|
},
|
||
|
},
|
||
|
methods: {
|
||
|
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style scoped lang="scss">
|
||
|
|
||
|
</style>
|