liveh5-nuxt/app/pages/artDetail/index.vue

27 lines
911 B
Vue
Raw Normal View History

<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>