pwd-retrieve.vue 4.0 KB
Newer Older
芊里 已提交
1 2 3 4 5
<template>
	<view class="wrap">
		<view class="wrap-content">
			<view class="content">
				<!-- 顶部文字 -->
芊里 已提交
6
				<text class="content-top-title">重置密码</text>
L
123  
linju 已提交
7
				<login-ikonw v-show="formData.phone" class="login-iknow" :text="tipText"></login-ikonw>
芊里 已提交
8 9 10
				<!-- 登录框 (选择手机号所属国家和地区需要另行实现) -->
				<uni-forms ref="form" :value="formData" :rules="rules">
					<uni-forms-item name="phone">
芊里 已提交
11 12
						<uni-easyinput type="number" class="phone-input-box" :inputBorder="false"
							v-model="formData.phone" placeholder="请输入手机号"></uni-easyinput>
芊里 已提交
13 14 15
						<uni-easyinput type="number" class="phone-input-box" :inputBorder="false"
							v-model="formData.code" maxlength="6" placeholder="请输入验证码">
							<template slot="right">
芊里 已提交
16
								<login-short-code ref="shortCode" :phone="formData.phone"></login-short-code>
芊里 已提交
17 18
							</template>
						</uni-easyinput>
芊里 已提交
19
						<uni-easyinput type="password" class="phone-input-box" :inputBorder="false"
芊里 已提交
20
							v-model="formData.pwd" placeholder="请输入新密码"></uni-easyinput>
芊里 已提交
21 22
					</uni-forms-item>
					<button class="send-btn-box" :disabled="!canSubmit" :type="canSubmit?'primary':'default'"
L
123  
linju 已提交
23
						@click="checkCode(submit)">完成</button>
芊里 已提交
24
				</uni-forms>
芊里 已提交
25 26 27 28 29
			</view>
		</view>
	</view>
</template>

芊里 已提交
30 31 32 33
<script>
import mixin from '../../common/loginPage.mixin.js';
	export default {
		mixins:[mixin],
芊里 已提交
34 35
		data() {
			return {
芊里 已提交
36
				currenPhoneArea: '',
芊里 已提交
37 38 39 40
			}
		},
		computed: {
			tipText() {
芊里 已提交
41
				return `验证码已通过短信发送至${this.currenPhoneArea} ${this.formData.phone}。密码为6 - 20位`
芊里 已提交
42 43
			},
			canSubmit() {
44
				return this.isPhone && this.isPwd && this.isCode;
芊里 已提交
45 46 47
			}
		},
		onLoad(event) {
芊里 已提交
48
			if (event && event.phoneNumber) {
芊里 已提交
49
				this.formData.phone = event.phoneNumber;
芊里 已提交
50 51
				this.currenPhoneArea = '+' + Number(event.phoneArea);
			}
芊里 已提交
52 53
		},
		onReady() {
芊里 已提交
54 55 56
			if(this.formData.phone){
				this.$refs.shortCode.start();
			}
芊里 已提交
57
		},
芊里 已提交
58
		methods: {
L
123  
linju 已提交
59 60 61 62 63
			checkCode(callback){
				uniCloud.callFunction({//联网验证登陆
					"name": "user-center",
					"data": {
						"action": "loginBySms",
L
123  
linju 已提交
64
						"params":{
芊里 已提交
65
							"mobile":this.formData.phone,
L
123  
linju 已提交
66
							"code":this.formData.code
L
123  
linju 已提交
67 68 69 70 71 72 73 74 75
						}
					},
					success:async (e) => {
						uni.hideLoading()
						console.log(e.result);
						if(e.result.code === 0){
							uni.setStorageSync('uni_id_uid', e.result.uid)
							uni.setStorageSync('uni_id_token', e.result.token)
							uni.setStorageSync('uni_id_token_expired', e.result.tokenExpired)
L
123  
linju 已提交
76 77 78 79 80
							// uni.showToast({
							// 	title: '登陆成功',
							// 	icon: 'none'
							// });
							callback()
L
123  
linju 已提交
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
						}else{
							uni.showModal({
								title: '错误',
								content: e.result.msg,
								showCancel: false,
								confirmText: '知道了',
							});
						}
					},
					fail: (err) => {
						console.log(err);
						uni.showModal({
							title: '错误',
							content: JSON.stringify(err),
							showCancel: false,
							confirmText: '知道了',
						});
						if(err.errCode===30002){
							
						}
					},
					complete: () => {
						uni.hideLoading()
					}
				})
L
123  
linju 已提交
106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145
			},
			/**
			 * 完成并提交
			 */
			submit(){
				uniCloud.callFunction({
					name:"user-center",
					"data":{
						"action":"resetPwd",
						"params":{
							"password":this.formData.pwd
						}
					},
					success:async (e) => {
						uni.hideLoading()
						console.log(e.result);
						uni.showToast({
							title: e.result.msg,
							icon: 'none'
						});
						if(e.result.code === 0){
							uni.navigateBack()
						}
					},
					fail: (err) => {
						console.log(err);
						uni.showModal({
							title: '错误',
							content: JSON.stringify(err),
							showCancel: false,
							confirmText: '知道了',
						});
						if(err.errCode===30002){
							
						}
					},
					complete: () => {
						uni.hideLoading()
					}
				})
芊里 已提交
146 147 148 149 150 151 152 153 154 155 156
			}
		}
	}
</script>

<style>
	@import url("../../common/loginPage.css");
	.phone-input-box{
		margin-top: 20rpx;
	}
</style>