setPassword.vue
1.4 KB
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
<template>
<view class="page">
<view class="box">
<view class="item">
<view class="title">密码</view>
<input type="text" placeholder="6-16个字符以内,区分大小写" class="fill">
</view>
<view class="item">
<view class="title">确认密码</view>
<input type="text" placeholder="请再次输入" class="fill">
</view>
</view>
<view class="submit">确认绑定</view>
</view>
</template>
<script>
export default {
data() {
return {
}
},
methods: {
}
}
</script>
<style>
page{
background: #FEFEFE;
padding-bottom: 128rpx;
box-sizing: border-box;
}
.box{
margin-top: 10rpx;
padding: 0 32rpx;
box-sizing: border-box;
}
.item{
height: 110rpx;
display: flex;
align-items: center;
border-bottom: 1px solid #EAEAEA;
}
.title{
width: 112rpx;
font-size:28rpx;
font-family:PingFangSC-Medium,PingFang SC;
font-weight:500;
color:rgba(61,69,76,1);
margin-right: 16rpx;
}
.fill{
width: 400rpx;
font-size:28rpx;
font-family:PingFangSC-Medium,PingFang SC;
font-weight:500;
color:rgba(189,196,206,1);
}
.submit{
width:686rpx;
height:88rpx;
background: #C29445;
border-radius: 10rpx;
font-size:32rpx;
font-family:PingFangSC-Medium,PingFang SC;
font-weight:500;
color:rgba(254,254,254,1);
line-height:88rpx;
text-align: center;
position: fixed;
left: 0;
right: 0;
bottom: 20rpx;
margin: auto;
}
</style>