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
| <template>
| <view class="box">
| <view class="tips">
| <image src="/static/ic_tips@2x.png" ></image>
| <text>该功能需要在企业微信扫码使用</text>
| </view>
| <view class="qiwei">
| <image src="/static/ic_qiyeweixin@2x.png"></image>
| <text>企业微信</text>
| </view>
| </view>
| </template>
| <style>
| .box {
| width: 100%;
| }
| .qiwei{
| width: 100%;
| text-align: center;
| margin-top: 80rpx;
| display: flex;
| flex-direction: column;
| align-items: center; /* 垂直居中 */
| justify-content: center; /* 水平居中,如果需要的话 */
| }
| .qiwei image{
| width: 120rpx;
| height: 120rpx;
| align-items: center;
| }
| .qiwei text{
| font-weight: 400;
| font-size: 26rpx;
| color: #111111;
| line-height: 36rpx;
| text-align: center;
| font-style: normal;
| }
| .tips{
| width: 100%;
| text-align: center;
| margin-top: 300rpx;
| display: flex;
| align-items: center; /* 垂直居中 */
| justify-content: center; /* 水平居中,如果需要的话 */
| }
|
| .tips image{
| width: 32rpx;
| height: 32rpx;
| margin-right: 10rpx;
| align-items: center;
| }
| .tips text{
| font-weight: 400;
| font-size: 30rpx;
| line-height: 40rpx;
| color: #111111;
| line-height: 42rpx;
| text-align: center;
| font-style: normal;
| }
| </style>
|
|