<template>
	<view class="pack_view uni-inline-item">
		<text style="color: #606266;font-size: 13px;">供应商</text>
		<text style="color: #606266;font-size: 13px;">{{dataContent.SupplierName}}</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.PoNumber}}</text>
	</view>
</template>

<script>
	export default {
		components: {},

		data() {
			return {

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

		},
		methods: {

		}
	}
</script>

<style>
</style>