<template>
	<view class="card_view ">
		<text class="card_batch ">批次</text>
		<text class="card_content ">{{batch}}</text>
	</view>
</template>

<script>
	export default {
		data() {
			return {}
		},
		props: {
			batch: {
				type: String,
				default: ""
			}
		},

	}
</script>

<style>
</style>