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.

74 lines
2.5 KiB

1 year ago
<template>
8 months ago
<view class="">
<view class="uni-flex uni-column">
<view>
<view class="" style="font-size: 35rpx"> 详细信息 : </view>
<view class="item">
<text class="item_title">项目代码 : </text>
<text class="text_wrap">{{ dataContent.projectCode }} </text>
</view>
<view class="item">
<text class="item_title">单据号 : </text>
<text class="text_wrap">{{ dataContent.number }} </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.itemCode }} </text>
</view>
<view class="item">
<text class="item_title">物品名称 : </text>
<text class="text_wrap">{{ dataContent.itemName }} </text>
</view>
<view class="item">
<text class="item_title">物品描述1 : </text>
<text class="text_wrap">{{ dataContent.itemDesc1 }} </text>
</view>
<view class="item">
<text class="item_title">物品描述2 : </text>
<text class="text_wrap">{{ dataContent.itemDesc2 }} </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.packingNumber }} </text>
</view>
<view class="item">
<text class="item_title">批次 : </text>
<text class="text_wrap">{{ dataContent.batch }} </text>
</view>
1 year ago
8 months ago
<view class="item">
<text class="item_title">数量 : </text>
<text class="text_wrap">{{ dataContent.qty }} </text>
</view>
<view class="item">
<text class="item_title">计量单位 : </text>
<text class="text_wrap">{{ dataContent.uom }} </text>
</view>
<view class="item">
<text class="item_title">备注 : </text>
<text class="text_wrap">{{ dataContent.remark }} </text>
</view>
</view>
</view>
</view>
</template>
1 year ago
8 months ago
<script setup lang="ts">
const props = defineProps({
dataContent: {
type: Object,
default: {}
}
})
1 year ago
</script>
8 months ago
<style></style>