2025-01-22 08:56:44 +00:00
|
|
|
<script setup>
|
|
|
|
import xPopup from '@/components/x-popup/index.vue'
|
|
|
|
import ItemDetail from "@/components/itemDetail/index.vue";
|
2025-01-23 03:08:54 +00:00
|
|
|
import {goodStore} from "~/stores/goods/index.js";
|
|
|
|
const {
|
|
|
|
artWorkDetail
|
|
|
|
} = goodStore()
|
2025-01-22 08:56:44 +00:00
|
|
|
const props = defineProps({
|
|
|
|
show: {
|
|
|
|
type: Boolean,
|
|
|
|
default: false
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
const emit = defineEmits(['update:show'])
|
|
|
|
const handleClose = () => {
|
|
|
|
emit('update:show', false)
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
<template>
|
|
|
|
<xPopup :show="show" title="拍品详情" @update:show="handleClose">
|
2025-01-23 03:08:54 +00:00
|
|
|
<ItemDetail :detailInfo="artWorkDetail" />
|
2025-01-22 08:56:44 +00:00
|
|
|
</xPopup>
|
|
|
|
</template>
|