You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
56 lines
956 B
56 lines
956 B
4 years ago
|
<template>
|
||
|
<view>
|
||
|
<view class="card">
|
||
|
<input type="password" v-model="form.old_password" placeholder="请输入旧密码" />
|
||
|
</view>
|
||
|
<view class="card">
|
||
|
<input type="password" v-model="form.new_password" placeholder="请输入新密码" />
|
||
|
</view>
|
||
|
<view class="card">
|
||
|
<input type="password" v-model="form.algin_pasd" placeholder="请再次输入新密码" />
|
||
|
</view>
|
||
|
<view class="btn-div">
|
||
|
<button type="primary">确认修改</button>
|
||
|
</view>
|
||
|
|
||
|
</view>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
data() {
|
||
|
return {
|
||
|
form: {
|
||
|
old_password: '',
|
||
|
new_password: '',
|
||
|
algin_pasd: ''
|
||
|
}
|
||
|
};
|
||
|
},
|
||
|
methods: {
|
||
|
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style lang="scss">
|
||
|
.card {
|
||
|
@include wh(750upx, auto);
|
||
|
padding-top: 30upx;
|
||
|
padding-bottom: 30upx;
|
||
|
background: white;
|
||
|
border-bottom: 2upx solid #f5f5f5;
|
||
|
|
||
|
input {
|
||
|
margin-left: 30upx;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.btn-div {
|
||
|
width: 690upx;
|
||
|
margin: auto;
|
||
|
margin-top: 30upx;
|
||
|
|
||
|
}
|
||
|
</style>
|