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
| <template>
| <view class="login">
| <view class="logo">微信绑定</view>
| <!--用户名密码登录-->
| <user-password :btnText="1" />
| </view>
| </template>
|
| <script>
| import userPassword from './userPassword.vue';
| export default {
| components: {
| userPassword
| },
| data() {
| return {};
| },
| methods: {}
| };
| </script>
|
| <style lang="scss">
| @import 'index.scss';
| .login {
| .logo {
| width: 80%;
| font-size: 64rpx;
| color: #497bff;
| margin: vww(100) auto 0;
| text-align: center;
| }
| .loginBtn {
| margin-top: vww(20);
| .u-button {
| width: 80%;
| }
| }
| }
| </style>
|
|