success.vue
1.7 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
<template>
<div>
<nav-bar>
<div slot="left" class="back" @click="goBack">
<img src="../../assets/img/back.png" alt="">
</div>
<div slot="center" class="userinfotitle">
投诉与建议
</div>
<div slot="right" class="result"></div>
</nav-bar>
<div class="success">
<img src="../../assets/img/success.png" alt="">
<div class="submit">提交成功</div>
<div class="tip">您的反馈已提交成功,请您电话保持通畅。</div>
<div class="sure">确定</div>
</div>
</div>
</template>
<style scoped lang="scss">
.success{
width: 100%;
height: 100%;
padding: 1.6rem 0;
text-align: center;
}
.success img{
width: 1.28rem;
height: 1.28rem;
margin: 0.48rem auto;
}
.success .submit{
color: rgba(36.72,40.06,61.2,1);
font-size: 0.36rem;
font-weight: 600;
font-family: "PingFang SC";
text-align: center;
line-height: 0.52rem;
}
.success .tip{
color: rgba(150,151,153,1);
font-size: 0.24rem;
font-weight: 400;
font-family: "PingFang SC";
text-align: center;
line-height: 0.4rem;
margin: 0.16rem auto 1.12rem;
}
.success .sure{
width: 2.36rem;
height: 0.8rem;
border-radius: 0.08rem;
opacity: 1;
background: rgba(37.19,124.31,255,1);
color: rgba(255,255,255,1);
font-size: 0.3rem;
font-weight: 500;
font-family: "PingFang SC";
text-align: center;
line-height: 0.8rem;
margin:0 auto;
}
</style>