2025-02-08 02:06:21 +00:00
|
|
|
<script setup>
|
|
|
|
import itemDetail from '@/components/itemDetail/index.vue'
|
2025-02-08 02:16:54 +00:00
|
|
|
import {userArtwork} from "~/api/goods/index.js";
|
|
|
|
const route = useRoute()
|
|
|
|
const detail=ref({})
|
|
|
|
const uuid = route.query.uuid
|
|
|
|
const initData=async ()=>{
|
|
|
|
const res=await userArtwork({uuid})
|
|
|
|
if (res.status===0){
|
|
|
|
detail.value=res.data
|
|
|
|
console.log('detail.value',detail.value)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
initData()
|
2025-02-08 02:06:21 +00:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<div class="relative h-screen-nav flex flex-col">
|
2025-02-08 02:16:54 +00:00
|
|
|
<itemDetail class="grow-1" :detail-info="detail.auctionArtworkInfo"/>
|
|
|
|
<div v-if="[1,3,4].includes(detail.status)" class="h-81px bg-#fff flex justify-center pt-7px">
|
2025-02-08 07:21:00 +00:00
|
|
|
<van-button class="w-213px !h-38px" type="primary">
|
2025-02-08 02:06:21 +00:00
|
|
|
<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>
|