doum
昨天 5d3b86a4d0032836c782e5e1319179eced5e5647
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<template>
    <view>
        <view class="container_h" >
            <view class="container_head" :style="{height: navHeight + 'px', marginTop: statusbarHeight + 'px'}">
                <view class="container_head_address" @click="go">
                    <image src="@/static/icon/ar_back_dark@2x.png" mode="widthFix"></image>
                </view>
                <view class="page-title">提交审核</view>
            </view>
        </view>
        <view :style="{marginTop: (navHeight + statusbarHeight) + 'px'}"></view>
        <stepLine :active="2" :steps="steps"/>
        <view class="main-container">
            <view class="tips">正在审核</view>
            <view class="tips-detail">信息已提交,审核将在3个工作日以内完成,请注意查看</view>
        </view>
    </view>
</template>
 
<script>
    import stepLine from '@/components/common/stepLine.vue'
    import { mapState } from 'vuex'
    export default {
        components: {
            stepLine
        },
        data() {
            return {
                steps: [
                    { title: '基本信息' },
                    { title: '资质认证' },
                    { title: '提交审核' }
                ],
            }
        },
        computed: {
            ...mapState(['statusbarHeight', 'navHeight'])
        },
        methods: {
            go() {
                uni.navigateBack({
                    delta: 3
                });
            }
        }
    }
</script>
 
<style lang="scss" scoped>
    .container_h {
        width: 100%;
        background-color: #f5f5f5;
        height: auto;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 9;
        display: flex;
        .container_head {
            width: 100%;
            padding: 0 32rpx;
            box-sizing: border-box;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            .container_head_address {
                display: flex;
                align-items: center;
                justify-content: flex-start;
                image {
                    width: 16rpx;
                    height: 30rpx;
                }
            }
        }
        .page-title {
            flex: 1;
            text-align: center;
        }
    }
.main-container {
    text-align: center;
    margin-top: 158rpx;
    font-family: PingFang SC-Medium, PingFang SC;
    .tips {
        height: 40rpx;
        font-size: 40rpx;
        font-weight: 400;
        color: #333333;
        line-height: 40rpx;
    }
    .tips-detail {
        height: 24rpx;
        font-size: 24rpx;
        font-weight: 400;
        color: #999999;
        line-height: 24rpx;
        margin-top: 28rpx;
    }
}
</style>