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 11:43:45 +00:00
|
|
|
import {goodStore} from "@/stores/goods/index.js";
|
2025-01-23 03:08:54 +00:00
|
|
|
const {
|
|
|
|
artWorkDetail
|
|
|
|
} = goodStore()
|
2025-01-22 08:56:44 +00:00
|
|
|
const props = defineProps({
|
|
|
|
show: {
|
|
|
|
type: Boolean,
|
|
|
|
default: false
|
2025-02-05 09:00:22 +00:00
|
|
|
},
|
|
|
|
detailInfo: {
|
|
|
|
type: Object,
|
|
|
|
default: null
|
2025-01-22 08:56:44 +00:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
const emit = defineEmits(['update:show'])
|
|
|
|
const handleClose = () => {
|
|
|
|
emit('update:show', false)
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
<template>
|
2025-02-12 06:34:05 +00:00
|
|
|
<xPopup :show="show" :title="$t('home.lot_detail')" @update:show="handleClose">
|
2025-02-05 09:00:22 +00:00
|
|
|
<ItemDetail :detailInfo="detailInfo" />
|
2025-01-22 08:56:44 +00:00
|
|
|
</xPopup>
|
|
|
|
</template>
|