retrieve.vue 6.2 KB
Newer Older
DCloud_JSON's avatar
DCloud_JSON 已提交
1
<!-- 找回密码页 -->
DCloud_JSON's avatar
DCloud_JSON 已提交
2 3
<template>
	<view class="uni-content">
JiaRongPing's avatar
JiaRongPing 已提交
4 5 6 7 8
		<match-media :min-width="690">
		<view class="login-logo">
			<image :src="logo"></image>
		</view>
		<!-- 顶部文字 -->
JiaRongPing's avatar
JiaRongPing 已提交
9
		<text class="title title-box">通过手机验证码找回密码</text>
JiaRongPing's avatar
JiaRongPing 已提交
10
		</match-media>
DCloud_JSON's avatar
DCloud_JSON 已提交
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
		<uni-forms ref="form" :value="formData" err-show-type="toast">
			<uni-forms-item name="phone">
				<uni-easyinput :focus="focusPhone" @blur="focusPhone = false" class="input-box" :disabled="lock" type="number" :inputBorder="false"
					v-model="formData.phone" maxlength="11" placeholder="请输入手机号">
				</uni-easyinput>
			</uni-forms-item>
			<uni-forms-item name="code">
				<uni-id-pages-sms-form ref="shortCode" :phone="formData.phone" type="reset-pwd-by-sms" v-model="formData.code">
				</uni-id-pages-sms-form>
			</uni-forms-item>
			<uni-forms-item name="password">
				<uni-easyinput :focus="focusPassword" @blur="focusPassword = false" class="input-box" type="password" :inputBorder="false" v-model="formData.password"
					placeholder="请输入新密码"></uni-easyinput>
			</uni-forms-item>
			<uni-forms-item name="password2">
				<uni-easyinput :focus="focusPassword2" @blur="focusPassword2 = false" class="input-box" type="password" :inputBorder="false" v-model="formData.password2"
					placeholder="请再次输入新密码"></uni-easyinput>
			</uni-forms-item>
			<button class="uni-btn send-btn-box" type="primary" @click="submit">提交</button>
JiaRongPing's avatar
JiaRongPing 已提交
30 31 32 33
			<match-media :min-width="690">
				<view class="link-box">
					<text class="link" @click="retrieveByEmail">通过邮箱验证码找回密码</text>
					<view></view>
C
1.0.18  
chenruilong 已提交
34 35
          <text class="link" @click="backLogin">返回登录</text>
        </view>
JiaRongPing's avatar
JiaRongPing 已提交
36
			</match-media>
DCloud_JSON's avatar
DCloud_JSON 已提交
37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117
		</uni-forms>
		<uni-popup-captcha @confirm="submit" v-model="formData.captcha" scene="reset-pwd-by-sms" ref="popup"></uni-popup-captcha>
	</view>
</template>

<script>
	import mixin from '@/uni_modules/uni-id-pages/common/login-page.mixin.js';
	const uniIdCo = uniCloud.importObject("uni-id-co",{
		errorOptions:{
			type:'toast'
		}
	})
	export default {
		mixins: [mixin],
		data() {
			return {
				lock: false,
				focusPhone:true,
				focusPassword:false,
				focusPassword2:false,
				formData: {
					"phone": "",
					"code": "",
					'password': '',
					'password2': '',
					"captcha": ""
				},
				rules: {
					phone: {
						rules: [{
								required: true,
								errorMessage: '请输入手机号',
							},
							{
								pattern: /^1\d{10}$/,
								errorMessage: '手机号码格式不正确',
							}
						]
					},
					code: {
						rules: [{
								required: true,
								errorMessage: '请输入短信验证码',
							},
							{
								pattern: /^.{6}$/,
								errorMessage: '请输入6位验证码',
							}
						]
					},
					password: {
						rules: [{
								required: true,
								errorMessage: '请输入新密码',
							},
							{
								pattern: /^.{6,20}$/,
								errorMessage: '密码为6 - 20位',
							}
						]
					},
					password2: {
						rules: [{
								required: true,
								errorMessage: '请确认密码',
							},
							{
								pattern: /^.{6,20}$/,
								errorMessage: '密码为6 - 20位',
							},
							{
								validateFunction: function(rule, value, data, callback) {
									// console.log(value);
									if (value != data.password) {
										callback('两次输入密码不一致')
									};
									return true
								}
							}
						]
					}
JiaRongPing's avatar
JiaRongPing 已提交
118 119
				},
				logo: "/static/logo.png"
DCloud_JSON's avatar
DCloud_JSON 已提交
120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139
			}
		},
		computed: {
			isPhone() {
				let reg_phone = /^1\d{10}$/;
				let isPhone = reg_phone.test(this.formData.phone);
				return isPhone;
			},
			isPwd() {
				let reg_pwd = /^.{6,20}$/;
				let isPwd = reg_pwd.test(this.formData.password);
				return isPwd;
			},
			isCode() {
				let reg_code = /^\d{6}$/;
				let isCode = reg_code.test(this.formData.code);
				return isCode;
			}
		},
		onLoad(event) {
DCloud_JSON's avatar
DCloud_JSON 已提交
140
			if (event && event.phoneNumber) {
DCloud_JSON's avatar
DCloud_JSON 已提交
141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168
				this.formData.phone = event.phoneNumber;
				if(event.lock){
					this.lock = event.lock //如果是已经登录的账号,点击找回密码就锁定指定的账号绑定的手机号码
					this.focusPhone = true
				}
			}
		},
		onReady() {
			if (this.formData.phone) {
				this.$refs.shortCode.start();
			}
			this.$refs.form.setRules(this.rules)
		},
		onShow() {
			// #ifdef H5
			document.onkeydown = event => {
				var e = event || window.event;
				if (e && e.keyCode == 13) { //回车键的键值为13
					this.submit()
				}
			};
			// #endif
		},
		methods: {
			/**
			 * 完成并提交
			 */
			submit() {
study夏羽's avatar
1.0.37  
study夏羽 已提交
169 170
				// console.log("formData", this.formData);
				// console.log('rules', this.rules);
DCloud_JSON's avatar
DCloud_JSON 已提交
171 172 173 174 175 176 177 178 179 180 181 182 183 184
				this.$refs.form.validate()
					.then(res => {
						let {
							"phone": mobile,
							"password": password,
							captcha,
							code
						} = this.formData
						uniIdCo.resetPwdBySms({
								mobile,
								code,
								password,
								captcha
							}).then(e => {
study夏羽's avatar
1.0.37  
study夏羽 已提交
185
								// console.log(e);
DCloud_JSON's avatar
DCloud_JSON 已提交
186 187 188 189 190 191 192 193 194 195 196 197
								uni.navigateBack()
							})
							.catch(e => {
								if (e.errCode == 'uni-id-captcha-required') {
									this.$refs.popup.open()
								}
							}).finally(e => {
								this.formData.captcha = ""
							})
					}).catch(errors=>{
						let key = errors[0].key
						if(key == 'code'){
study夏羽's avatar
1.0.37  
study夏羽 已提交
198
							// console.log(this.$refs.shortCode);
DCloud_JSON's avatar
DCloud_JSON 已提交
199 200 201
							return this.$refs.shortCode.focusSmsCodeInput = true
						}
						key = key.replace(key[0], key[0].toUpperCase())
study夏羽's avatar
1.0.37  
study夏羽 已提交
202
						// console.log(key,'focus'+key);
DCloud_JSON's avatar
DCloud_JSON 已提交
203 204
						this['focus'+key] = true
					})
JiaRongPing's avatar
JiaRongPing 已提交
205 206 207 208 209
			},
			retrieveByEmail() {
				uni.navigateTo({
					url: '/uni_modules/uni-id-pages/pages/retrieve/retrieve-by-email'
				})
C
1.0.18  
chenruilong 已提交
210 211 212 213 214 215
			},
      backLogin () {
        uni.redirectTo({
          url: '/uni_modules/uni-id-pages/pages/login/login-withpwd'
        })
      }
DCloud_JSON's avatar
DCloud_JSON 已提交
216 217 218 219 220 221 222
		}
	}
</script>

<style lang="scss">
	@import "@/uni_modules/uni-id-pages/common/login-page.scss";

JiaRongPing's avatar
JiaRongPing 已提交
223 224 225 226 227 228 229 230
	@media screen and (max-width: 690px) {
		.uni-content{
			margin-top: 15px;
		}
	}
	@media screen and (min-width: 690px) {
		.uni-content{
			padding: 30px 40px 40px;
DCloud_JSON's avatar
1.0.20  
DCloud_JSON 已提交
231
			max-height: 650px;
JiaRongPing's avatar
JiaRongPing 已提交
232
		}
JiaRongPing's avatar
JiaRongPing 已提交
233 234 235 236 237 238 239 240
		.link-box {
			/* #ifndef APP-NVUE */
			display: flex;
			/* #endif */
			flex-direction: row;
			justify-content: space-between;
			margin-top: 10px;
		}
C
1.0.18  
chenruilong 已提交
241

JiaRongPing's avatar
JiaRongPing 已提交
242 243 244
		.link {
			font-size: 12px;
		}
DCloud_JSON's avatar
DCloud_JSON 已提交
245 246
	}
</style>