doum
2 天以前 116a83c60384f716cb8c988a4e8f2b30bf5d6718
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
<template>
    <view class="temp-page">
        <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 class="steps-container" :style="{marginTop: (navHeight + statusbarHeight) + 'px'}">
            <view v-for="(item, index) in steps" :key="index" class="step-item">
                <view class="step-line">
                    <view class="line" :class="index!=0?`line-v ${index<=active?'value-select':''}`:''"></view>
                    <view class="value" :class="index<=active?'value-select':''">{{ index + 1 }}</view>
                    <view class="line" :class="index!=2?`line-v ${index<active?'value-select':''}`:''"></view>
                </view>
                <view class="title" :class="index<=active?'select':''">{{ item.title }}</view>
            </view>
        </view>
        <view class="main-container">
            <view class="tips">正在审核</view>
            <view class="tips-detail">信息已提交,审核将在3个工作日以内完成,请注意查看</view>
        </view>
    </view>
</template>
 
<script>
    import { mapState } from 'vuex'
    export default {
        data() {
            return {
                active: 2,
                steps: [
                    { title: '基本信息' },
                    { title: '实名认证' },
                    { title: '提交审核' }
                ],
            }
        },
        computed: {
            ...mapState(['statusbarHeight', 'navHeight'])
        },
        methods: {
            go() {
                uni.navigateBack({
                    delta: 3
                });
            }
        }
    }
</script>
 
<style lang="scss" scoped>
.temp-page {
    background-color: #fff;
    height: 100%;
}
    .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;
        }
    }
    .steps-container {
        display: flex;
        background-color: #FFFFFF;
        padding: 66rpx 0 26rpx;
        .step-item {
            width: 33.33%;
            text-align: center;
            .step-line {
                display: flex;
                .line {
                    flex: 1;
                }
                .line-v {
                    height: 4px;
                    background: #D9D9D9;
                    margin: auto 0;
                }
                .value {
                    width: 48rpx;
                    height: 48rpx;
                    background: #D9D9D9;
                    border-radius: 50%;
                    font-weight: 500;
                    color: #FFFFFF;
                    line-height: 48rpx;
                    font-size: 32rpx;
                }
                .value-select {
                    background: #D20A0A;
                }
            }
            .title {
                height: 28rpx;
                font-size: 28rpx;
                font-weight: 500;
                color: #CCCCCC;
                line-height: 28rpx;
                margin-top: 16rpx;
            }
            .select {
                color: #D20A0A;
            }
        }
    }
.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>