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.

32 lines
688 B

2 years ago
<!--收货任务卡片-->
<template>
<view class="device-detail">
<view class="list-style">
<view class="text-color">物料号:{{dataContent.itemCode}}</view>
<view>物料名称:{{dataContent.itemName }}</view>
<view class="uni-flex">
<view style="-webkit-flex: 1;flex: 1;">箱码: {{dataContent.packingCode}}</view>
<view style="-webkit-flex: 1;flex: 1;">数量: {{dataContent.qty}}{{dataContent.uom}}</view>
</view>
</view>
</view>
</template>
<script>
export default {
name: "comDyItemInfo",
data() {
return {};
},
// 此处定义传入的数据
props: ['dataContent'],
filters: {
},
2 years ago
}
</script>
<style scoped lang="scss">
</style>