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
| <template>
| <view class="wrap">
|
| <!--logo-->
| <view class="logo">
| <image src="/static/custom/logoPig.png"></image>
| </view>
|
| <!--发送短信验证码-->
| <sms-code/>
|
| </view>
| </template>
| <script>
| import smsCode from "./smsCode";
|
| export default {
| components: {smsCode},
| data() {
| return {
| };
| },
| onLoad() {
| },
| methods: {
| }
| }
| </script>
|
| <style lang="scss">
| @import 'index.scss';
|
| .logo {
| width: 260rpx;
| height: 260rpx;
| //background: rgba(59, 121, 235, 1);
| //box-shadow: 0rpx 5rpx 20rpx 5rpx rgba(45, 127, 235, 0.5);
| border-radius: 50%;
| margin: 70rpx auto 10rpx auto;
| }
|
| .logo image {
| width: 260rpx;
| height: 260rpx;
| border-radius: 50%;
| }
|
| .base-url js-select {
| width: 100%;
| }
|
| .button {
| margin: 30rpx auto 0;
| }
|
| .footer {
| display: flex;
| flex-direction: row;
| justify-content: center;
| align-items: center;
| text-align: center;
| color: #46afff;
| height: 40rpx;
| line-height: 40rpx;
| font-size: 35rpx;
| margin-top: 60rpx;
| }
|
| .footer text {
| font-size: 30rpx;
| margin-left: 25rpx;
| margin-right: 25rpx;
| }
|
| .oauth2 {
| display: flex;
| flex-direction: row;
| justify-content: space-around;
| margin: 55rpx 100rpx;
|
| image {
| height: 100rpx;
| width: 100rpx;
| }
| }
| </style>
|
|