sign-stream/src/views/upload-id-card/content/complete.vue
2024-07-23 19:10:26 +08:00

47 lines
1.2 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<script setup>
import {useUserStore} from '@/stores/userStore.js'
import {storeToRefs} from "pinia";
const userStore = useUserStore()
const {submitReturnData} = storeToRefs(userStore);
const linkUrl='https://cnisakncsncs.com.cn'
const goLink=()=>{
window.open(linkUrl)
}
</script>
<template>
<div class="content1">
<div class="wrap1">恭喜<span class="wrap1_1">{{submitReturnData.artistName}}</span>{{submitReturnData.gender===1?'先生':'女士'}}完成国展报名登记报名日期为{{submitReturnData.createdAt}}
<!-- 请在会场入口处使用身份识别(人像)进入展会详情请查看官网已了解更多资讯--></div>
<!-- <div class="wrap2" @click="goLink">前往{{linkUrl}}</div>-->
</div>
</template>
<style scoped lang="scss">
.content1{
margin-bottom: 340px;
box-sizing: border-box;
width: 333px;
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>