2024-02-05 11:54:48 +00:00
|
|
|
|
<script setup>
|
2024-02-20 09:00:39 +00:00
|
|
|
|
import {useUserStore} from '@/stores/userStore.js'
|
|
|
|
|
import {storeToRefs} from "pinia";
|
|
|
|
|
const userStore = useUserStore()
|
|
|
|
|
const {submitReturnData} = storeToRefs(userStore);
|
2024-02-05 11:54:48 +00:00
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<template>
|
|
|
|
|
<div class="content1">
|
2024-02-22 06:27:26 +00:00
|
|
|
|
<div class="wrap1">恭喜<span class="wrap1_1">{{submitReturnData.artistName}}</span>{{submitReturnData.gender===1?'先生':'女士'}}完成国展报名登记,报名日期为:{{submitReturnData.createdAt}}。请在会场入口处使用身份识别(人像)进入展会,详情请查看官网已了解更多资讯。</div>
|
2024-02-05 11:54:48 +00:00
|
|
|
|
<div class="wrap2">前往:https://cnisakncsncs.com.cn</div>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<style scoped lang="scss">
|
|
|
|
|
.content1{
|
|
|
|
|
margin-bottom: 340px;
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
width: 333px;
|
|
|
|
|
height: 198px;
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
border-radius: 10px;
|
|
|
|
|
padding: 23px 34px 28px;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
line-height: 20px;
|
|
|
|
|
.wrap2{
|
|
|
|
|
font-size: 16px;
|
|
|
|
|
color: #2159C4;
|
|
|
|
|
}
|
|
|
|
|
.wrap1{
|
|
|
|
|
color: #000;
|
|
|
|
|
font-size: 16px;
|
|
|
|
|
.wrap1_1{
|
|
|
|
|
color: #2159C4;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</style>
|