weapps-plugin-jingtong-verify 1.10.0 → 1.10.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "weapps-plugin-jingtong-verify",
3
3
  "pluginName": "weapps-plugin-jingtong-verify",
4
4
  "pluginType": "mp",
5
- "version": "1.10.0",
5
+ "version": "1.10.1",
6
6
  "description": "",
7
7
  "main": "sdk.js",
8
8
  "author": "tongyirenzheng",
@@ -16,7 +16,7 @@
16
16
  <view class="cancel" bindtap="back">
17
17
  我再想想
18
18
  </view>
19
- <button class="confirm" bindtap="logOff">我已知晓,确认注销</button>
19
+ <view class="confirm" bindtap="logOff">我已知晓,确认注销</view>
20
20
  </view>
21
21
 
22
22
  <my-modal
@@ -1,16 +1,21 @@
1
1
  /* weapps-plugin-jingtong-verify/pages/log-off/log-off.wxss */
2
2
  page {
3
3
  background: #F7F8FA;
4
+ padding-bottom: 400rpx;
5
+ width: 100vw;
4
6
  }
7
+
5
8
  .top-box {
6
9
  margin-left: 32rpx;
7
10
  margin-top: 32rpx;
8
11
  margin-bottom: 32rpx;
9
12
  }
13
+
10
14
  .title {
11
15
  font-size: 32rpx;
12
16
  font-weight: 700;
13
17
  }
18
+
14
19
  .title::before {
15
20
  content: '';
16
21
  display: inline-block;
@@ -20,6 +25,7 @@ page {
20
25
  background: #ce0022;
21
26
  margin-right: 12rpx;
22
27
  }
28
+
23
29
  .text-content {
24
30
  margin: 0 32rpx;
25
31
  font-size: 28rpx;
@@ -27,36 +33,56 @@ page {
27
33
  color: #27282E;
28
34
  font-weight: 500;
29
35
  }
36
+
30
37
  .content {
31
38
  margin-bottom: 20rpx;
32
39
  }
40
+
33
41
  .bottom-box {
34
- position: absolute;
42
+ position: fixed;
35
43
  bottom: 0;
36
44
  width: 100%;
37
- height: 20%;
45
+ height: 300rpx;
38
46
  background: rgba(255,255,255,1);
39
- box-shadow: 0 8rpx 32rpx 0 rgba(46,48,51,0.25);
47
+ box-shadow: 0 8rpx 32rpx 0 rgba(46, 48, 51, 0.25);
40
48
  display: flex;
41
49
  flex-direction: column;
42
50
  align-items: center;
43
51
  }
52
+
44
53
  .confirm {
45
- width: 686rpx !important;
46
- height: 88rpx;
54
+ width: 686rpx;
55
+ height: 100rpx;
56
+ text-align: center;
57
+ border-radius: 49rpx;
58
+ background: #fff;
59
+ border: 1rpx solid #d12b36;
60
+ font-family: "PingFang SC Bold";
61
+ font-weight: 700;
62
+ font-size: 34rpx;
63
+ color: #d12b36;
64
+ padding: 20rpx;
65
+ box-sizing: border-box;
47
66
  display: flex;
48
67
  justify-content: center;
49
68
  align-items: center;
50
- background: rgba(206,0,34,1);
51
- box-shadow: 0 24rpx 48rpx 0 rgba(206,0,34,0.1);
52
- color: #ffffff;
53
- font-size: 34rpx;
54
- margin-bottom: 40rpx;
55
69
  }
70
+
56
71
  .cancel {
72
+ width: 686rpx;
73
+ height: 100rpx;
57
74
  margin-top: 32rpx;
58
- font-size: 30rpx;
59
- font-weight: 500;
60
- color: #62667A;
61
- margin-bottom: 20rpx;
75
+ margin-bottom: 24rpx;
76
+ border-radius: 49rpx;
77
+ background: #d12b36;
78
+ text-align: center;
79
+ font-family: "PingFang SC Bold";
80
+ font-weight: 700;
81
+ font-size: 34rpx;
82
+ color: #fff;
83
+ padding: 20rpx;
84
+ box-sizing: border-box;
85
+ display: flex;
86
+ justify-content: center;
87
+ align-items: center;
62
88
  }