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
|
| <template>
| <div class='text-main'>
| <van-nav-bar title="审核结果" />
| <div style=" text-align: center;">
| <img width="70%" height="200" src="../../assets/img/successw.png" />
| </div>
| <div class="content">
| <p class="content-text"> 恭喜你通过审核!</p>
| <van-button square color="#E43A28" style="width:70%;margin-top:20px" @click="$router.push({path:'/main/signcont',query:{orderId:$route.query.orderId}})" >去签约</van-button>
| </div>
| </div>
| </template>
|
| <script>
| export default {
| components: {},
| data() {
| //这里存放数据
| return {
| };
| },
| //监听属性 类似于data概念
| computed: {},
| //监控data中的数据变化
| watch: {},
| //方法集合
| methods: {
|
| },
| //生命周期 - 创建完成(可以访问当前this实例)
| created() {
| },
| //生命周期 - 挂载完成(可以访问DOM元素)
| mounted() {
|
| },
| }
| </script>
| <style lang="less" scoped>
| img {
| margin: 10px auto;
| }
| .content {
| text-align: center;
| .content-text {
| font-size: 16px;
| font-weight: 500;
| color: #333333;
| }
| .content-main {
| font-weight: 500;
| color: #999999;
| }
| }
| </style>
|
|