updatePass.vue
1010 字节
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
<template>
<view class="content">
<view style="padding-top: 16px;">
<view class="inputC">
<input type="text" value="" placeholder="当前密码" />
</view>
<view class="inputC">
<input type="text" value="" placeholder="新密码" />
</view>
<view class="inputC">
<input type="text" value="" placeholder="确认密码" />
</view>
</view>
<view style="margin: 90px 16px;">
<view class="saveBox"><text class="save">保存</text></view>
</view>
</view>
</template>
<script>
export default {
data() {
return {
}
},
methods: {
}
}
</script>
<style>
.inputC {
background: #ffffff;
height: 46px;
display: flex;
align-items: center;
margin-bottom: 16px;
padding: 0 16px;
}
.saveBox {
background: #4674c9;
border-radius: 8rpx;
height: 96rpx;
display: flex;
align-items: center;
justify-content: center;
}
.save {
color: #FFFFFF;
font-size: 32rpx;
}
.content {
background-color: #F2F3F5;
height: 100vh;
}
</style>