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
| <template>
| <!-- 登录 -->
| <view>
| <view class="login-box">
| <input placeholder="输入账号" class="login-input"/>
| <input placeholder="输入密码" class="login-input mt-20"/>
| <button class="blue-btn mt-20">登录</button>
| </view>
| </view>
| </template>
|
| <script>
|
| </script>
|
| <style>
| .login-box{
| padding: 30px;
| box-sizing: border-box;
| width: 100%;
| position: absolute;
| bottom: 40px;
| }
| .login-input{
| border: 1px solid #ABB1CC;
| border-radius: 20px;
| text-align: center;
| padding: 10px 0;
| font-size: 14px;
| }
| .blue-btn{
| background: #2483ff;
| border-radius: 20px;
| color: #FFFFFF;
| font-size: 16px;
| }
| </style>
|
|