You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
169 lines
5.2 KiB
169 lines
5.2 KiB
<template>
|
|
<v-page>
|
|
<v-header :title="$t('safe.b0')"></v-header>
|
|
<main class="layout-main m-t-md">
|
|
<view class="m-md bg-panel-3 rounded-sm overflow-hidden">
|
|
<view class="form-item border-b p-md">
|
|
<view class="label m-b-xs">{{$t('safe.b1')}}</view>
|
|
<view class="input color-light">
|
|
<v-input v-model="form.account" :placeholder="`${$t('safe.b2')}`" @blur="checkAccount"></v-input>
|
|
</view>
|
|
</view>
|
|
<view class="form-item border-b p-md">
|
|
<view class="label m-b-xs">{{$t('safe.b3')}}</view>
|
|
<view class="input color-light">
|
|
<v-input type="password" v-model="form.password" :placeholder="$t('safe.b4')"></v-input>
|
|
</view>
|
|
</view>
|
|
<view class="form-item border-b p-md">
|
|
<view class="label m-b-xs">{{$t('safe.b5')}}</view>
|
|
<view class="input color-light">
|
|
<v-input type="password" v-model="form.password_confirmation" :placeholder="$t('safe.b6')"></v-input>
|
|
</view>
|
|
</view>
|
|
<!--图形验证码-->
|
|
<view class="form-item border-b p-md">
|
|
<view class="label m-b-xs">{{$t('homeNewText.ee6')}}</view>
|
|
<v-input class="" v-model="form.gc_code" :placeholder="$t('homeNewText.ee7')">
|
|
<template #right>
|
|
<img :src="Graph_che" @click="gett_gc_code" v-if="!hideImg" style="margin-left: 20rpx;">
|
|
</template>
|
|
</v-input>
|
|
</view>
|
|
<view class="form-item border-b p-md" v-if="checkData.phone_status==1&&show">
|
|
<view class="label m-b-xs">SMS{{$t('safe.a7')}}</view>
|
|
<view class="input color-light">
|
|
<v-input v-model="form.sms_code" :placeholder="$t('safe.a6')">
|
|
<template #right>
|
|
<v-code
|
|
url="/user/sendSmsCodeForgetPassword"
|
|
:data="{country_code:checkData.country_code,phone:form.account}"
|
|
></v-code>
|
|
</template>
|
|
</v-input>
|
|
</view>
|
|
</view>
|
|
<!-- <view class="form-item border-b p-md" v-if="checkData.email_status==1"> -->
|
|
<view class="form-item border-b p-md">
|
|
<view class="label m-b-xs">{{$t('safe.a5')}}</view>
|
|
<view class="input color-light">
|
|
<v-input v-model="form.email_code" :placeholder="$t('safe.a6')">
|
|
<template #right>
|
|
<!-- <v-code url="/user/sendEmailCodeForgetPassword" :data="{email:form.account}"></v-code> -->
|
|
<v-code url="/user/sendEmailCodeForgetPassword" :data="{email:form.account,gc_code: form.gc_code, gc_key: form.gc_key}"
|
|
@reGetGraphChe="reGetGraphChe"></v-code>
|
|
</template>
|
|
</v-input>
|
|
</view>
|
|
</view>
|
|
<view class="form-item border-b p-md" v-if="checkData.google_status==1">
|
|
<view class="label m-b-xs">google{{$t('safe.a7')}}</view>
|
|
<view class="input color-light">
|
|
<v-input v-model="form.google_code" :placeholder="$t('safe.a6')"></v-input>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</main>
|
|
<view class="p-md">
|
|
<v-button class="w-max rounded-lg" block ref="btn" type="green" @click="submit">{{$t('safe.b7')}}</v-button>
|
|
</view>
|
|
<van-toast id="van-toast" />
|
|
</v-page>
|
|
</template>
|
|
<script>
|
|
import Setting from "@/api/setting";
|
|
import Member from "@/api/member";
|
|
export default {
|
|
data() {
|
|
return {
|
|
country_id: 1,
|
|
form: {
|
|
account: "",
|
|
sms_code: "",
|
|
email_code: "",
|
|
google_code: "",
|
|
password: "",
|
|
password_confirmation: "",
|
|
show:false,
|
|
gc_code: '',
|
|
gc_key: ''
|
|
},
|
|
checkData: {},
|
|
Graph_che:'',
|
|
hideImg: false
|
|
};
|
|
},
|
|
computed: {
|
|
},
|
|
watch:{
|
|
'form.account':{
|
|
handler(newVal){
|
|
if(newVal.indexOf('@')!=-1){
|
|
this.show=false
|
|
}else{
|
|
this.show=true
|
|
}
|
|
},
|
|
}
|
|
},
|
|
methods: {
|
|
checkAccount() {
|
|
Setting.forgetPasswordAttempt({ account: this.form.account })
|
|
.then((res) => {
|
|
this.checkData = res.data;
|
|
})
|
|
.catch(() => {
|
|
this.checkData = {};
|
|
if (this.form.account) {
|
|
this.$toast(this.$t('safe.b8'));
|
|
}
|
|
});
|
|
},
|
|
submit() {
|
|
if(this.form.account==''){
|
|
this.$toast(this.$t('safe.b2')+'/'+this.$t('safe.a3'))
|
|
return
|
|
}
|
|
if(this.form.password==''){
|
|
this.$toast(this.$t('safe.b4'))
|
|
return
|
|
}
|
|
if(this.form.password_confirmation==''){
|
|
this.$toast(this.$t('safe.b6'))
|
|
return
|
|
}
|
|
Setting.forgetPassword(this.form, { btn: this.$refs.btn })
|
|
.then((res) => {
|
|
if (res.code==200) {
|
|
this.$back();
|
|
}else{
|
|
this.reGetGraphChe();
|
|
}
|
|
})
|
|
.catch(() => {
|
|
this.reGetGraphChe();
|
|
});
|
|
},
|
|
// 重新请求图形验证码
|
|
reGetGraphChe(){
|
|
this.hideImg = true;
|
|
this.gett_gc_code();
|
|
},
|
|
gett_gc_code(){
|
|
Member.Graph_che().then((res)=>{
|
|
if(res.code==200){
|
|
this.hideImg = false;
|
|
}
|
|
// console.log("gc",res.data.img)
|
|
this.Graph_che = res.data.img;
|
|
this.form.gc_key= res.data.key;
|
|
});
|
|
},
|
|
},
|
|
mounted() {
|
|
this.gett_gc_code();
|
|
},
|
|
};
|
|
</script>
|
|
<style lang="scss" scoped>
|
|
</style>
|