liveh5-nuxt/app/pages/artDetail/index.vue
xingyy aec3825a3b feat(component): 优化消息组件并添加新功能
- 重构 x-message 组件,支持更多自定义选项
- 添加 artDetail 页面用于展示艺术品详情
- 修改 liveRoom 页面,接入新的消息提示功能- 优化 profile 页面布局,增加去支付按钮
- 调整 home 页面,集成新的消息系统
- 修改 websocket 插件,支持携带 token 认证
2025-02-08 10:06:21 +08:00

27 lines
911 B
Vue

<script setup>
import itemDetail from '@/components/itemDetail/index.vue'
import {goodStore} from "~/stores/goods/index.js";
const {artWorkDetail} = goodStore()
</script>
<template>
<div class="relative h-screen-nav flex flex-col">
<itemDetail class="grow-1" :detail-info="artWorkDetail"/>
<div class="h-81px bg-#fff flex justify-center pt-7px">
<van-button class="w-213px van-btn-h-38px" type="primary">
<span class="text-#fff text-14px">去支付 RMB10,000</span>
</van-button>
</div>
<div class="w-108px h-137px absolute bottom-240px right-6px">
<img src="@/static/images/zd5530@2x.png" class="w-full h-full" alt="">
<div class="flex flex-col items-center absolute bottom-25px text-14px text-#B58047 left-1/2 transform translate-x--1/2 whitespace-nowrap">
<div>恭喜您</div>
<div>竞拍成功</div>
</div>
</div>
</div>
</template>
<style scoped>
</style>