2025-01-17 08:56:13 +00:00
|
|
|
<script setup>
|
2025-01-23 11:43:45 +00:00
|
|
|
import {goodStore} from "@/stores/goods/index.js";
|
2025-01-23 07:43:48 +00:00
|
|
|
import xImage from '@/components/x-image/index.vue'
|
|
|
|
const {
|
|
|
|
auctionDetail
|
|
|
|
} = goodStore()
|
2025-01-17 08:56:13 +00:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<div class="px-16px pt-14px">
|
2025-01-23 07:43:48 +00:00
|
|
|
<div class="text-#575757 text-14px" v-html="auctionDetail.info">
|
2025-01-17 08:56:13 +00:00
|
|
|
</div>
|
2025-01-23 07:43:48 +00:00
|
|
|
<xImage :src="auctionDetail.image" class="w-343px"></xImage>
|
2025-01-17 08:56:13 +00:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
|
|
|
|
</style>
|