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
| <template>
| <view class="container">
| <view class="head">
| <view class="head-top">
| <image src="/static/images/ic_renzhengzhong@2x.png" mode="widthFix"></image>
| <text>平台审核中</text>
| </view>
| <view class="head-bottom">
| 审核结果将通过短信/订阅消息通知您
| </view>
| </view>
| </view>
| </template>
|
| <script>
| export default {
| data() {
| return {
|
| };
| }
| }
| </script>
|
| <style lang="scss" scoped>
| .container {
| width: 100%;
| .head {
| width: 100%;
| height: 248rpx;
| display: flex;
| flex-direction: column;
| align-items: center;
| justify-content: center;
| background: rgba(255,114,0,0.08);
| .head-top {
| display: flex;
| align-items: center;
| justify-content: center;
| image {
| width: 60rpx;
| height: 56rpx;
| margin-right: 20rpx;
| }
| text {
| font-weight: 600;
| font-size: 40rpx;
| color: #FA8010;
| }
| }
| .head-bottom {
| font-weight: 400;
| font-size: 28rpx;
| color: #333333;
| margin-top: 34rpx;
| }
| }
| }
| </style>
|
|