mStatus.vue
1.46 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
<template>
<div class="mStatus">
<div class="statusCent">
<div class="status">
<!-- <img src="../../assets/images/shenhezhong.png" alt="">-->
<img src="../../assets/images/tijiaochengong.png" alt="">
<h3>提交成功</h3>
<p>我们已收到您的入驻申请,将会在10个工作日内审核完毕, 审核结果将以短信形式发送至您的手机号</p>
</div>
<div class="btnBack" @click="goToHome">返回首页</div>
</div>
</div>
</template>
<script>
export default {
name: 'mStatus',
methods: {
goToHome () {
this.$router.push({name: 'home'})
}
}
}
</script>
<style lang="scss" scoped>
.mStatus {
display: flex;
height: 100%;
align-items: center;
justify-content: center;
.statusCent {
.status {
text-align: center;
img {
width: 140px;
height: 140px;
}
h3 {
font-size: 18px;
color: #333333;
margin: 20px 0;
}
p {
width: 80%;
margin: 0 auto;
color: #999999;
font-size: 12px;
line-height: 25px;
}
}
.btnBack {
width: 80px;
height: 35px;
line-height: 35px;
background: #FFEBC4;
color: #FFFFFF;
font-size: 14px;
text-align: center;
cursor: pointer;
margin: 30px auto 0 auto;
border-radius: 4px;
}
}
}
</style>