143 lines
2.7 KiB
Vue
143 lines
2.7 KiB
Vue
<template>
|
||
<view class="page">
|
||
<u-navbar title="设置密码" :border-bottom="false" :background="bgc" title-color='#fff' back-icon-color="#fff" title-size='36'
|
||
height='50'></u-navbar>
|
||
<view class="tit">
|
||
设置新密码
|
||
</view>
|
||
<view class="val" style="margin-top: 80rpx;">
|
||
<view class="lt">
|
||
新密码
|
||
</view>
|
||
<input type="text" placeholder="请输入新密码" />
|
||
</view>
|
||
<view class="val">
|
||
<view class="lt">
|
||
确认密码
|
||
</view>
|
||
<input type="text" placeholder="请确认新密码" />
|
||
</view>
|
||
<view class="btn" @click="btnqd">
|
||
确定
|
||
</view>
|
||
<view class="ts">
|
||
安全提示:新密码请勿于旧密码过于相似
|
||
</view>
|
||
|
||
</view>
|
||
</template>
|
||
|
||
<script>
|
||
export default {
|
||
data() {
|
||
return {
|
||
bgc: {
|
||
backgroundColor: " #48893B",
|
||
},
|
||
}
|
||
},
|
||
onLoad() {
|
||
|
||
},
|
||
// 分享到好友(会话)
|
||
onShareAppMessage: function () {
|
||
return {
|
||
title: '创想物联',
|
||
path: '/pages/shouye/index'
|
||
}
|
||
},
|
||
|
||
// 分享到朋友圈
|
||
onShareTimeline: function () {
|
||
return {
|
||
title: '创想物联',
|
||
query: '',
|
||
path: '/pages/shouye/index'
|
||
}
|
||
},
|
||
onShow() {
|
||
|
||
},
|
||
methods: {
|
||
btnqd(){
|
||
uni.navigateBack({delta:3})
|
||
}
|
||
|
||
}
|
||
}
|
||
</script>
|
||
|
||
<style lang="scss">
|
||
.btn{
|
||
width: 652rpx;
|
||
height: 94rpx;
|
||
background: #4C97E7;
|
||
border-radius: 14rpx 14rpx 14rpx 14rpx;
|
||
opacity: 0.5;
|
||
text-align: center;
|
||
line-height: 94rpx;
|
||
font-size: 36rpx;
|
||
color: #FFFFFF;
|
||
font-weight: 600;
|
||
margin: auto;
|
||
margin-top: 64rpx;
|
||
}
|
||
.ts{
|
||
font-size: 24rpx;
|
||
color: #808080;
|
||
font-weight: 600;
|
||
padding-left: 50rpx;
|
||
margin-top: 30rpx;
|
||
}
|
||
.tit{
|
||
font-size: 60rpx;
|
||
color: #3D3D3D;
|
||
font-weight: 600;
|
||
padding-left: 50rpx;
|
||
box-sizing: border-box;
|
||
margin-top: 78rpx;
|
||
}
|
||
.val{
|
||
width: 652rpx;
|
||
height: 94rpx;
|
||
border-radius: 14rpx 14rpx 14rpx 14rpx;
|
||
border: 2rpx solid #808080;
|
||
margin: auto;
|
||
margin-top: 24rpx;
|
||
display: flex;
|
||
align-items: center;
|
||
.lt{
|
||
font-size: 32rpx;
|
||
color: #3D3D3D;
|
||
font-weight: 600;
|
||
border-right: 1rpx solid #D8D8D8;
|
||
height: 66rpx;
|
||
line-height: 66rpx;
|
||
padding-right: 22rpx;
|
||
padding-left: 26rpx;
|
||
box-sizing: border-box;
|
||
}
|
||
input{
|
||
margin-left: 22rpx;
|
||
}
|
||
}
|
||
|
||
/deep/ .u-title{
|
||
padding-bottom: 22rpx;
|
||
}
|
||
/deep/ .uicon-nav-back{
|
||
padding-bottom: 22rpx;
|
||
}
|
||
|
||
page {
|
||
// background: linear-gradient(180deg, #8883F0 0%, rgba(255, 255, 255, 0) 100%);
|
||
background: #F4F5F7;
|
||
}
|
||
|
||
.page {
|
||
width: 750rpx;
|
||
}
|
||
|
||
|
||
|
||
</style> |