<template> <uni-popup ref="popupItems"> <com-popup @onClose="closePopup"> <view v-for="(item, index) in receiptList" :key="index"> <comRecordCard :dataContent="item" @click='selectItem(item)'></comRecordCard> <u-line></u-line> </view> </com-popup> </uni-popup> </template> <script> import comRecordCard from '@/pages/supplierDeliver/coms/comRecordCard.vue' import comPopup from '@/mycomponents/common/comPopup.vue' export default { emits: ["selectedItem"], components: { comPopup, comRecordCard }, 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>