2025-02-19 07:14:01 +00:00
|
|
|
<script setup>
|
2025-02-19 07:36:45 +00:00
|
|
|
import {sessionUserNoCreate} from "~/api-collect-code/goods/index.js";
|
|
|
|
import {codeAuthStore} from "~/stores-collect-code/auth/index.js";
|
|
|
|
const {formData,number}=codeAuthStore()
|
|
|
|
const auctionUserNo=ref('')
|
2025-02-19 07:38:58 +00:00
|
|
|
definePageMeta({
|
|
|
|
title:'领取号牌'
|
|
|
|
})
|
2025-02-19 07:36:45 +00:00
|
|
|
const res=await sessionUserNoCreate({
|
|
|
|
phone:formData.value.phone
|
|
|
|
})
|
|
|
|
if (res.status===0){
|
|
|
|
auctionUserNo.value=res.data.auctionUserNo
|
|
|
|
}
|
2025-02-19 07:14:01 +00:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<div class="w-[100vw] h-screen-nav bg-[url('@/static/images/3532@2x.png')] bg-cover flex-grow-1 flex flex-col items-center pt-183px px-30px">
|
|
|
|
<div class="flex flex-col items-center pt-18px px-31px">
|
|
|
|
<div class="text-#000 text-16px mb-4px">签署成功</div>
|
|
|
|
<div class="text-#939393 text-12px mb-31px">●   领取您的专属号牌   ●</div>
|
|
|
|
<div class="relative">
|
|
|
|
<img class="w-258px h-144px" src="@/static/images/zu6020@2x.png" alt="">
|
2025-02-19 07:36:45 +00:00
|
|
|
<div class="absolute text-#FDD68D text-68px bottom-1px left-1/2 transform translate-x--1/2">{{auctionUserNo}}</div>
|
2025-02-19 07:14:01 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
|
|
|
|
</style>
|