<template>
	<view class="pack_view uni-inline-item">
		<text style="color: #606266;font-size: 13px;">生产线</text>
		<text style="color: #606266;font-size: 13px;">{{dataContent.ProductionLineCode}}</text>
	</view>
	<view class="pack_view uni-inline-item">
		<text style="color: #606266;font-size: 13px;">生产日期</text>
		<text style="color: #606266;font-size: 13px;">{{dataContent.ProduceDate}}</text>
	</view>
</template>

<script>
	export default {
		components: {

		},

		data() {
			return {

			}
		},
		props: {
			dataContent: {
				type: Object,
				default: {}
			}
		},
		watch: {

		},
		methods: {

		}
	}
</script>

<style>
</style>