|
@@ -6,50 +6,33 @@
|
|
|
<view class="tit" >
|
|
|
郵箱
|
|
|
</view>
|
|
|
- <input type="text" class="shuru" placeholder="新密碼" v-model="email">
|
|
|
+ <input type="text" class="shuru" placeholder="郵箱" v-model="email">
|
|
|
<view class="tit" >
|
|
|
- 重置密碼
|
|
|
+ 新密碼
|
|
|
</view>
|
|
|
- <input type="text" class="shuru" placeholder="重置密碼" v-model="email">
|
|
|
+ <input type="text" class="shuru" placeholder="新密碼" v-model="lpwd">
|
|
|
<view class="tit">
|
|
|
郵箱驗證碼
|
|
|
</view>
|
|
|
<view class="flex" style="width: 673rpx;justify-content: space-between;margin: auto;">
|
|
|
- <input type="text" class=" yzm" placeholder="請翰入密碼" v-model="code">
|
|
|
+ <input type="text" class=" yzm" placeholder="驗證碼" v-model="ecode">
|
|
|
<view class="code yzmbtn" @click="verification">{{ countDown == 0 ? '验证码' : countDown }}</view>
|
|
|
</view>
|
|
|
- <view class="tit" >
|
|
|
- 新密碼
|
|
|
- </view>
|
|
|
- <input type="text" class="shuru" placeholder="新密碼" v-model="email">
|
|
|
- <!-- <view class="container_text">
|
|
|
- <image class="banner-img" src="/static/img/img01.png" mode=" scaleToFill"></image>
|
|
|
+ <view class="flex" style="justify-content: space-between;padding: 50rpx 30rpx;align-items: flex-start;">
|
|
|
+ <view class="">
|
|
|
+ </view>
|
|
|
+ <image src="../../static/icon/goto.png" mode="" style="width: 97rpx;height: 97rpx;" @click="resetpwd()"></image>
|
|
|
</view>
|
|
|
- <view class="loginTitle"><text>手机号登录</text></view>
|
|
|
- <view class="login_text">
|
|
|
- <view class="login_input flex">
|
|
|
- <view class="login_img"><image src="/static/icon/img03.png"></image></view>
|
|
|
- <view class="login_name"><input class="uni-input" v-model="phone" focus placeholder="请输入手机号" /></view>
|
|
|
- </view>
|
|
|
- <view class="login_input flex">
|
|
|
- <view class="login_img"><image src="/static/icon/img06.png"></image></view>
|
|
|
- <view class="login_name flex">
|
|
|
- <input class="uni-input width" v-model="code" focus placeholder="请输入验证码" />
|
|
|
- <view class="code" @click="verification">{{ countDown == 0 ? '验证码' : countDown }}</view>
|
|
|
- </view>
|
|
|
- </view>
|
|
|
- <view>
|
|
|
- <button type="green" @click="register" class="uni-button uni-button-green">登录</button>
|
|
|
- </view>
|
|
|
- </view> -->
|
|
|
</view>
|
|
|
</template>
|
|
|
<script>
|
|
|
import { mapMutations } from 'vuex';
|
|
|
-import { verify, loginMobile, getUserInfo } from '@/api/login.js';
|
|
|
+import { verify, loginMobile, getUserInfo,getForget ,resetpwd} from '@/api/login.js';
|
|
|
export default {
|
|
|
data() {
|
|
|
- return {
|
|
|
+ return {
|
|
|
+ ecode: '',
|
|
|
+ email: '',
|
|
|
phone: '', //用户
|
|
|
code: '', //验证码
|
|
|
time: '', //保存倒计时对象
|
|
@@ -66,7 +49,32 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
methods: {
|
|
|
- ...mapMutations('user', ['setUserInfo', 'login']),
|
|
|
+ ...mapMutations('user', ['setUserInfo', 'login']),
|
|
|
+ resetpwd() {
|
|
|
+ let obj = this
|
|
|
+ if(obj.email == '') {
|
|
|
+ return obj.$api.msg('請輸入郵箱!')
|
|
|
+ }
|
|
|
+ if (!obj.isEmailAvailable(obj.email)) {
|
|
|
+ return obj.$api.msg('請輸入正確的郵箱!')
|
|
|
+ }
|
|
|
+ if(obj.ecode == '') {
|
|
|
+ return obj.$api.msg('請輸入驗證碼!')
|
|
|
+ }
|
|
|
+ if(obj.lpwd == '') {
|
|
|
+ return obj.$api.msg('請輸入新密碼!')
|
|
|
+ }
|
|
|
+ resetpwd({
|
|
|
+ email: obj.email,
|
|
|
+ ecode: obj.ecode,
|
|
|
+ lpwd: obj.lpwd
|
|
|
+ }).then(res => {
|
|
|
+ console.log(res)
|
|
|
+ obj.login()
|
|
|
+ }).catch(err => {
|
|
|
+
|
|
|
+ })
|
|
|
+ },
|
|
|
// 手机登录
|
|
|
register() {
|
|
|
let obj = this;
|
|
@@ -100,17 +108,22 @@ export default {
|
|
|
}).catch((e) => {
|
|
|
console.log(e);
|
|
|
});
|
|
|
+ },
|
|
|
+ isEmailAvailable(obj) {
|
|
|
+ let email = /^([a-zA-Z0-9]+[_|\_|\.]?)*[a-zA-Z0-9]+@([a-zA-Z0-9]+[_|\_|\.]?)*[a-zA-Z0-9]+\.[a-zA-Z]{2,3}$/;
|
|
|
+ if (!email.test(obj)) {
|
|
|
+ return false;
|
|
|
+ }
|
|
|
+ return true;
|
|
|
},
|
|
|
//发送验证码
|
|
|
verification() {
|
|
|
- let obj = this;
|
|
|
- if (this.phone == '') {
|
|
|
- this.$api.msg('请输入电话号码');
|
|
|
- return;
|
|
|
+ let obj = this;
|
|
|
+ if(obj.email == '') {
|
|
|
+ return obj.$api.msg('請輸入郵箱!')
|
|
|
}
|
|
|
- if (this.phone.length < 11) {
|
|
|
- this.$api.msg('请输入正确的手机号');
|
|
|
- return;
|
|
|
+ if (!obj.isEmailAvailable(obj.email)) {
|
|
|
+ return obj.$api.msg('請輸入正確的郵箱!')
|
|
|
}
|
|
|
// 判断是否在倒计时
|
|
|
if (obj.countDown > 0) {
|
|
@@ -121,9 +134,9 @@ export default {
|
|
|
obj.countDown--;
|
|
|
}, 1000);
|
|
|
//调用验证码接口
|
|
|
- verify({
|
|
|
- phone: obj.phone,
|
|
|
- type: 'login'
|
|
|
+ getForget({
|
|
|
+ email: obj.email,
|
|
|
+ // type: 'login'
|
|
|
})
|
|
|
.then(({ data }) => {})
|
|
|
.catch(err => {
|