- 在 home 页面中调用 getAuctionDetail 方法获取拍卖详情 - 更新 Cescribe组件以显示拍卖详情信息和图片 - 在 ItemList 组件中添加 v-memo 指令以优化性能 - 调整 liveRoom 组件中的视频播放器样式
19 lines
403 B
Vue
19 lines
403 B
Vue
<script setup>
|
|
import {goodStore} from "~/stores/goods/index.js";
|
|
import xImage from '@/components/x-image/index.vue'
|
|
const {
|
|
auctionDetail
|
|
} = goodStore()
|
|
</script>
|
|
|
|
<template>
|
|
<div class="px-16px pt-14px">
|
|
<div class="text-#575757 text-14px" v-html="auctionDetail.info">
|
|
</div>
|
|
<xImage :src="auctionDetail.image" class="w-343px"></xImage>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped>
|
|
|
|
</style> |