<template>
	<uni-popup ref="popupItems">
		<com-popup @onClose="closePopup">
			<view v-for="(item, index) in receiptList" :key="index">
				<com-product-job-card :dataContent="item" @click='selectItem(item)'></com-product-job-card>
				<u-line></u-line>
			</view>
		</com-popup>
	</uni-popup>
</template>

<script>
	import comPopup from '@/mycomponents/common/comPopup.vue'
	import comProductJobCard from '@/pages/productReceipt/coms/comProductJobCard.vue'
	export default {
		emits: ["selectedItem"],
		components: {
			comPopup,
			comProductJobCard
		},
		props: {

		},
		data() {
			return {
				receiptList: []
			}
		},
		methods: {
			openPopup(items) {
				this.receiptList = items;
				this.$refs['popupItems'].open("center");
			},
			closePopup() {
				this.$refs.popupItems.close()
			},
			selectItem(item) {
				this.$emit("selectedItem", item);
				this.$refs['popupItems'].close();
			},
		}
	}
</script>

<style>
</style>