commitDone.vue
2.68 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<template>
<div>
<div class="box ph-30">
<el-card>
<single-sign-step v-if="user.utype=='1'" activeStep="3" :language="language"/>
<team-sign-step v-if="user.utype=='2'" activeStep="4" :language="language"/>
</el-card>
<el-card class="mt20">
<div class="flexCenter pd20">
<img src="@/assets/img/e.png"/>
<div>
<div>{{ language==0? '账号':'Account' }}:{{ user.userName }}</div>
<h3>{{ language==0?'报名信息提交成功':'Registration information submitted successfully' }}</h3>
</div>
</div>
<div class="text-center flexCenter">
<div class="border-info mt20" v-if="language==0">
审核结果,后续将以邮件形式正式通知您。
<br/>
邮件发送账号:<span class="text-primary">wdsfwuxicenter@wdsfwuxicenter.com</span>
,请关注相关邮件通知。
<br/>
如果您的报名信息审核通过,邮件正文会附上相关费用的支付链接,请通过链接完成支付,完成报名。
</div>
<div class="border-info mt20" v-else>
The audit results will be formally notified to you via email in the future.
<br/>
Email sender: <span class="text-primary">{{ user.email }}</span>
Please follow the relevant email notifications.
<br/>
If your registration information is approved, the payment link for the relevant fees will be attached to the email body. Please complete the payment and registration through the link.
</div>
</div>
<div class="text-center mt30 mb20">
<el-button class="primary-kx w200px" round @click="goHome">{{ language == 0 ? '返回首页' : 'Return to Homepage' }}</el-button>
<el-button type="primary" class="btn-lineG w200px" round @click="goSign">
{{ language == 0 ? '返回赛事报名模块' : 'Return to Event Registration Module' }}</el-button>
</div>
</el-card>
</div>
</div>
</template>
<script setup>
import TeamSignStep from './components/teamSignStep'
import SingleSignStep from './components/singleSignStep'
const router = useRouter()
import useUserStore from "@/store/modules/user"
import {ref} from "vue"
import cache from "@/plugins/cache"
import {useRouter} from "vue-router";
const language = ref(cache.local.get('language') || 0)
const user = useUserStore().user
const goHome = () => {
router.push({
name: `home`
})
}
const goSign = () => {
router.push({
name: `matchDetail`,
params:{id:0}
})
}
</script>
<style scoped lang="scss">
.border-info{padding: 30px;line-height: 2;}
</style>