index.vue
1.32 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
<template>
<div class="warp12">
<div class="statusBox">
<cent-logo></cent-logo>
<div class="statusCent">
<div class="status">
<!-- <img src="../../assets/images/shenhezhong.png" alt="">-->
<img src="../../assets/images/tijiaochengong.svg" alt="">
<h3>提交成功</h3>
<p>我们已收到您的入驻申请,将会在10个工作日内审核完毕, 审核结果将以短信形式发送至您的手机号</p>
</div>
</div>
</div>
</div>
</template>
<script>
import CentLogo from '@/components/centLogo'
export default {
name: 'index',
components: {CentLogo},
methods: {
goToHome () {
this.$router.push({name: 'home'})
}
}
}
</script>
<style lang="scss" scoped>
.statusBox {
.statusCent {
width: 100%;
background: #ffffff;
border-radius: 10px;
height: 620px;
display: flex;
align-items: center;
justify-content: center;
.status {
text-align: center;
width: 460px;
margin: 0 auto;
img {
width: 110px;
margin-bottom: 28px;
}
h3 {
color: #333333;
font-size: 26px;
font-weight: 400;
margin-bottom: 28px;
}
p {
color: #999999;
font-size: 18px;
line-height: 30px;
}
}
}
}
</style>