H5端齐采药项目,uniapp框架
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.
 
 
 
 
 

67 lines
1.4 KiB

<template>
<page-meta :page-style="themeColor"></page-meta>
<div class="view">
<div class="content">
<u-input placeholder="请输入旧密码" type="password"></u-input>
<u-input placeholder="请输入新密码,6-30位数字和字母" type="password"></u-input>
<u-input placeholder="请确认新密码,6-30位数字和字母" type="password"></u-input>
<div class="btn">
确认修改
</div>
</div>
</div>
</template>
<script>
</script>
<style lang="scss" scoped>
.view {
min-height: 100vh;
background-color: white;
.content {
padding: 40rpx;
::v-deep {
.u-input--radius {
height: 92rpx;
background: #F6F6F6;
border-radius: 16rpx;
border: 0;
margin-bottom: 30rpx;
padding: 12rpx 32rpx !important;
}
.uni-input-placeholder {
// margin-left: 38rpx;
}
}
.suffix {
width: 140rpx;
height: 40rpx;
font-size: 28rpx;
font-family: PingFangSC-Regular, PingFang SC;
font-weight: 400;
color: #EF6154;
line-height: 40rpx;
margin-right: 24rpx;
}
.btn {
margin-top: 80rpx;
height: 80rpx;
background: $base-color;
border-radius: 50rpx;
font-size: 28rpx;
font-family: PingFangSC-Medium, PingFang SC;
font-weight: 600;
color: #FFFFFF;
display: flex;
justify-content: center;
align-items: center;
}
}
}
</style>