<template>
|
<view class="box">
|
<view class="box_tips">
|
<image src="@/static/ic_tip@2x.png" mode="widthFix"></image>
|
<text>如遗忘密码,请联系园区系统管理员重置</text>
|
</view>
|
<view class="list">
|
<view class="list_item">
|
<view class="list_item_label">
|
<text>旧密码</text>
|
<text>*</text>
|
</view>
|
<view class="list_item_content">
|
<input type="number" maxlength="11" placeholder="请输入旧密码" placeholder-style="color: #999999;" />
|
</view>
|
</view>
|
<view class="list_item">
|
<view class="list_item_label">
|
<text>新密码</text>
|
<text>*</text>
|
</view>
|
<view class="list_item_content">
|
<input type="number" maxlength="11" placeholder="请输入6-18位数字、字母组合新密码" placeholder-style="color: #999999;" />
|
</view>
|
</view>
|
<view class="list_item">
|
<view class="list_item_label">
|
<text>确认密码</text>
|
<text>*</text>
|
</view>
|
<view class="list_item_content">
|
<input type="number" maxlength="11" placeholder="请输入6-18位数字、字母组合新密码" placeholder-style="color: #999999;" />
|
</view>
|
</view>
|
</view>
|
<view class="footer-box">
|
<view class="submit-button">提交</view>
|
</view>
|
</view>
|
</template>
|
|
<script>
|
export default {
|
data() {
|
return {
|
|
};
|
}
|
}
|
</script>
|
<style>
|
page {
|
background-color: #f7f7f7 !important;
|
}
|
</style>
|
<style lang="scss" scoped>
|
.box {
|
width: 100%;
|
.box_tips {
|
width: 100%;
|
padding: 20rpx 30rpx;
|
box-sizing: border-box;
|
display: flex;
|
align-items: center;
|
image {
|
width: 20rpx;
|
height: 20rpx;
|
margin-right: 18rpx;
|
}
|
text {
|
font-size: 26rpx;
|
font-weight: 400;
|
color: #E0312A;
|
}
|
}
|
.list {
|
width: 100%;
|
padding: 0 30rpx;
|
box-sizing: border-box;
|
background-color: #ffffff;
|
|
.list_item {
|
width: 100%;
|
height: 98rpx;
|
display: flex;
|
align-items: center;
|
justify-content: space-between;
|
border-bottom: 1rpx solid #E5E5E5;
|
|
.list_item_label {
|
flex-shrink: 0;
|
display: flex;
|
align-items: center;
|
|
text {
|
&:nth-child(1) {
|
font-size: 30rpx;
|
font-weight: 400;
|
color: #222222;
|
}
|
|
&:nth-child(2) {
|
font-size: 30rpx;
|
font-weight: 400;
|
color: #E42D2D;
|
}
|
}
|
}
|
|
.list_item_content {
|
flex: 1;
|
height: 100%;
|
margin-left: 30rpx;
|
display: flex;
|
align-items: center;
|
justify-content: flex-end;
|
|
text {
|
font-size: 28rpx;
|
font-weight: 400;
|
color: #999999;
|
margin-right: 6rpx;
|
}
|
|
input {
|
width: 100%;
|
height: 100%;
|
text-align: right;
|
font-size: 28rpx;
|
font-weight: 400;
|
color: #222222;
|
}
|
}
|
}
|
}
|
.footer-box {
|
width: 100%;
|
position: fixed;
|
bottom: 30rpx;
|
height: 80rpx;
|
display: flex;
|
justify-content: center;
|
align-items: center;
|
.submit-button {
|
width: calc(100% - 60rpx);
|
height: 88rpx;
|
line-height: 88rpx;
|
background: #025eef;
|
border-radius: 4rpx;
|
color: #fff;
|
border-radius: 44rpx;
|
font-size: 32rpx;
|
display: flex;
|
align-items: center;
|
justify-content: center;
|
}
|
}
|
}
|
</style>
|