k94314517
2025-07-16 6ba647113beab5a66ce5be2da1f814846b4f39ac
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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
<template>
    <view class="box">
        <view class="box-head" :style="{ backgroundImage: 'url(' + bgImg + ')' }">
            <view class="box-head-info">
                <text>货运认证</text>
                <text>请按要求填写认证信息</text>
            </view>
            <view class="box-head-content">
                <view class="item">
                    <view class="item-label">
                        <text>认证类型</text>
                        <text>*</text>
                    </view>
                    <view class="item-cate">
                        <view class="item-cate-row active">个人</view>
                        <view class="item-cate-row">企业</view>
                    </view>
                </view>
                <view class="item">
                    <view class="item-label">
                        <text>联系人</text>
                        <text>*</text>
                    </view>
                    <view class="item-val">
                        <input type="text" placeholder="请输入真实姓名" />
                    </view>
                </view>
                <view class="item">
                    <view class="item-label">
                        <text>单位名称</text>
                        <text>*</text>
                    </view>
                    <view class="item-val">
                        <input type="text" placeholder="请输入单位名称" />
                    </view>
                </view>
                <view class="item">
                    <view class="item-label">
                        <text>手机号</text>
                        <text>*</text>
                    </view>
                    <view class="item-val">
                        <text>点击获取</text>
                        <button open-type="getPhoneNumber">获取手机号</button>
                    </view>
                </view>
                <view class="item">
                    <view class="item-label">
                        <text>接单位置</text>
                        <text>*</text>
                    </view>
                    <view class="item-val">
                        <text>请选择</text>
                        <u-icon name="arrow-right" color="#111111" size="18"></u-icon>
                    </view>
                </view>
                <view class="item">
                    <view class="item-label">
                        <text>认证资料</text>
                        <text>*</text>
                    </view>
                    <view class="item-upload">
                        <view class="item-upload-item">
                            <view class="image">
                                <image src="/static/icon/ic_camera@2x.png" mode="widthFix"></image>
                                <text>点击上传</text>
                            </view>
                            <view class="info">
                                <text>营业执照</text>
                                <text>*</text>
                            </view>
                        </view>
                        <view class="item-upload-item">
                            <view class="image">
                                <image src="/static/icon/ic_camera@2x.png" mode="widthFix"></image>
                                <text>点击上传</text>
                            </view>
                            <view class="info">
                                <text>道路运输经营许可证</text>
                                <text>*</text>
                            </view>
                        </view>
                        <view class="item-upload-item">
                            <view class="image">
                                <image src="/static/icon/ic_camera@2x.png" mode="widthFix"></image>
                                <text>点击上传</text>
                            </view>
                            <view class="info">
                                <text>其它认证资料</text>
                            </view>
                        </view>
                    </view>
                </view>
            </view>
            <view class="box-head-botton">提交认证</view>
            <view style="width: 100%; height: calc(30rpx + env(safe-area-inset-bottom));"></view>
        </view>
    </view>
</template>
 
<script>
    export default {
        data() {
            return {
                bgImg: require('@/static/image/bg_renzheng_huoyun@2x.png')
            };
        }
    }
</script>
 
<style>
    page {
        background-color: #F7F7F7;
    }
</style>
 
<style lang="scss" scoped>
    .box {
        width: 100%;
        .box-head {
            width: 100%;
            height: 300rpx;
            padding: 34rpx 40rpx 0 40rpx;
            box-sizing: border-box;
            background-repeat: no-repeat;
            background-size: 100% 100%;
            .box-head-botton {
                width: 100%;
                height: 88rpx;
                line-height: 88rpx;
                text-align: center;
                font-weight: 500;
                font-size: 32rpx;
                color: #FFFFFF;
                background: #00BC12;
                border-radius: 44rpx;
                margin-top: 30rpx;
            }
            .box-head-info {
                width: 100%;
                display: flex;
                flex-direction: column;
                text {
                    &:nth-child(1) {
                        font-weight: bold;
                        font-size: 48rpx;
                        color: #FFFFFF;
                    }
                    &:nth-child(2) {
                        font-weight: 400;
                        font-size: 26rpx;
                        color: rgba(255,255,255,0.8);
                        margin-top: 14rpx;
                    }
                }
            }
            .box-head-content {
                width: 100%;
                padding: 40rpx 30rpx;
                box-sizing: border-box;
                background-color: #FFFFFF;
                border-radius: 20rpx;
                margin-top: 30rpx;
                .item {
                    width: 100%;
                    display: flex;
                    flex-direction: column;
                    margin-bottom: 30rpx;
                    &:last-child {
                        margin: 0 !important;
                    }
                    .item-cate {
                        width: 100%;
                        display: flex;
                        align-items: center;
                        padding: 30rpx 0;
                        box-sizing: border-box;
                        border-bottom: 1rpx solid #E5E5E5;
                        .active {
                            background: #00BC12 !important;
                            color: #FFFFFF !important;
                        }
                        .item-cate-row {
                            width: 208rpx;
                            height: 72rpx;
                            line-height: 72rpx;
                            text-align: center;
                            background: #EEEEEE;
                            border-radius: 36rpx;
                            margin-right: 20rpx;
                            &:last-child {
                                margin: 0 !important;
                            }
                        }
                    }
                    .item-label {
                        display: flex;
                        align-items: center;
                        text {
                            &:nth-child(1) {
                                font-weight: 500;
                                font-size: 32rpx;
                                color: #222222;
                            }
                            &:nth-child(2) {
                                font-weight: 500;
                                font-size: 32rpx;
                                color: #FF0000;
                            }
                        }
                    }
                    .item-upload {
                        width: 100%;
                        padding: 30rpx 0;
                        box-sizing: border-box;
                        display: flex;
                        align-items: center;
                        justify-content: space-between;
                        flex-wrap: wrap;
                        .item-upload-item {
                            width: 300rpx;
                            margin-bottom: 40rpx;
                            &:nth-child(3) {
                                margin: 0 !important;
                            }
                            .image {
                                width: 100%;
                                height: 196rpx;
                                background: #F7F7F7;
                                border-radius: 16rpx;
                                display: flex;
                                align-items: center;
                                justify-content: center;
                                flex-direction: column;
                                image {
                                    width: 48rpx;
                                    height: 48rpx;
                                }
                                text {
                                    font-weight: 400;
                                    font-size: 28rpx;
                                    color: #666666;
                                    margin-top: 12rpx;
                                }
                            }
                            .info {
                                width: 100%;
                                display: flex;
                                align-items: center;
                                justify-content: center;
                                margin-top: 16rpx;
                                text {
                                    &:nth-child(1) {
                                        font-weight: 400;
                                        font-size: 26rpx;
                                        color: #333333;
                                    }
                                    &:nth-child(2) {
                                        font-weight: 400;
                                        font-size: 26rpx;
                                        color: #FF0000;
                                    }
                                }
                            }
                        }
                    }
                    .item-val {
                        width: 100%;
                        padding: 30rpx 0;
                        box-sizing: border-box;
                        position: relative;
                        display: flex;
                        align-items: center;
                        justify-content: space-between;
                        border-bottom: 1rpx solid #E5E5E5;
                        input {
                            width: 100%;
                            font-weight: 400;
                            font-size: 30rpx;
                            color: #222222;
                        }
                        text {
                            font-weight: 400;
                            font-size: 30rpx;
                            color: #666666;
                        }
                        button {
                            width: 100%;
                            height: 100%;
                            position: absolute;
                            top: 0;
                            left: 0;
                            opacity: 0;
                        }
                    }
                }
            }
        }
    }
</style>