| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132 |
- <template>
- <view class="container">
- <view class="tui-page-title">找回密码</view>
- <view class="tui-form">
- <view class="tui-view-input">
- <tui-list-cell :hover="false" :lineLeft="false" backgroundColor="transparent">
- <view class="tui-cell-input">
- <tui-icon name="mobile" color="#6d7a87" :size="20"></tui-icon>
- <input :value="mobile" placeholder="请输入手机号" placeholder-class="tui-phcolor" type="number" maxlength="11" @input="inputMobile" />
- <view class="tui-icon-close" v-show="mobile" @tap="clearInput(1)"><tui-icon name="close-fill" :size="16" color="#bfbfbf"></tui-icon></view>
- </view>
- </tui-list-cell>
- <tui-list-cell :hover="false" :lineLeft="false" backgroundColor="transparent">
- <view class="tui-cell-input">
- <tui-icon name="shield" color="#6d7a87" :size="20"></tui-icon>
- <input placeholder="请输入验证码" placeholder-class="tui-phcolor" type="text" maxlength="6" @input="inputCode" />
- <view class="tui-btn-send" :class="{ 'tui-gray': isSend }" :hover-class="isSend ? '' : 'tui-opcity'" :hover-stay-time="150">{{ btnSendText }}</view>
- </view>
- </tui-list-cell>
- <tui-list-cell :hover="false" :lineLeft="false" backgroundColor="transparent">
- <view class="tui-cell-input">
- <tui-icon name="pwd" color="#6d7a87" :size="20"></tui-icon>
- <input :value="password" placeholder="请输入新密码" :password="true" placeholder-class="tui-phcolor" type="text" maxlength="40" @input="inputPwd" />
- <view class="tui-icon-close" v-show="password" @tap="clearInput(2)"><tui-icon name="close-fill" :size="16" color="#bfbfbf"></tui-icon></view>
- </view>
- </tui-list-cell>
- </view>
- <view class="tui-btn-box"><tui-button :disabledGray="true" :disabled="disabled" :shadow="true" shape="circle">确认修改</tui-button></view>
- </view>
- </view>
- </template>
- <script>
- export default {
- computed: {
- disabled: function() {
- let bool = true;
- if (this.mobile && this.code && this.password) {
- bool = false;
- }
- return bool;
- }
- },
- data() {
- return {
- mobile: '',
- password: '',
- code: '',
- isSend: false,
- btnSendText: '获取验证码' //倒计时格式:(60秒)
- };
- },
- methods: {
- inputCode(e) {
- this.code = e.detail.value;
- },
- inputMobile: function(e) {
- this.mobile = e.detail.value;
- },
- inputPwd: function(e) {
- this.password = e.detail.value;
- },
- clearInput(type) {
- if (type == 1) {
- this.mobile = '';
- } else {
- this.password = '';
- }
- }
- },
- /**
- * 页面相关事件处理函数--监听用户下拉动作
- */
- onPullDownRefresh: function() {
- setTimeout(() => {
- uni.stopPullDownRefresh()
- }, 200);
- },
- };
- </script>
- <style lang="scss">
- .container {
- .tui-page-title {
- width: 100%;
- font-size: 48rpx;
- font-weight: bold;
- color: $uni-text-color;
- line-height: 42rpx;
- padding: 110rpx 40rpx 40rpx 40rpx;
- box-sizing: border-box;
- }
- .tui-form {
- padding-top: 50rpx;
- .tui-view-input {
- width: 100%;
- box-sizing: border-box;
- padding: 0 40rpx;
- .tui-cell-input {
- width: 100%;
- display: flex;
- align-items: center;
- padding-top: 48rpx;
- padding-bottom: $uni-spacing-col-base;
- input {
- flex: 1;
- padding-left: $uni-spacing-row-base;
- }
- .tui-icon-close {
- margin-left: auto;
- }
- .tui-btn-send {
- width: 156rpx;
- text-align: right;
- flex-shrink: 0;
- font-size: $uni-font-size-base;
- color: $uni-color-primary;
- }
- .tui-gray {
- color: $uni-text-color-placeholder;
- }
- }
- }
- .tui-btn-box {
- width: 100%;
- padding: 0 $uni-spacing-row-lg;
- box-sizing: border-box;
- margin-top: 80rpx;
- }
- }
- }
- </style>
|