|
@@ -0,0 +1,478 @@
|
|
|
+<template>
|
|
|
+ <div class="center">
|
|
|
+ <div class="item account">
|
|
|
+ <span
|
|
|
+ style="color: #bbb; font-size: 21px; padding-top: 7px"
|
|
|
+ class="icon iconfont icon-wode"
|
|
|
+ ></span>
|
|
|
+ <input
|
|
|
+ type="text"
|
|
|
+ v-model="memberEmail"
|
|
|
+ :placeholder="L['请输入邮箱']"
|
|
|
+ class="input"
|
|
|
+ />
|
|
|
+ <div
|
|
|
+ data-type="userName"
|
|
|
+ class="cancel"
|
|
|
+ @click="clearInputVal('memberEmail')"
|
|
|
+ >
|
|
|
+ <span style="color: #bbb" class="iconfont icon-cuowu"></span>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="error" v-if="emailErrorMsg">
|
|
|
+ <span
|
|
|
+ style="color: #e1251b; font-size: 14px"
|
|
|
+ class="iconfont icon-jubao"
|
|
|
+ ></span>
|
|
|
+ {{ emailErrorMsg }}
|
|
|
+ </div>
|
|
|
+ <!-- 邮箱验证码 -->
|
|
|
+ <div class="verify-code">
|
|
|
+ <span class="verify-code-icon">
|
|
|
+ <img src="/register/mail_success.png" alt="" />
|
|
|
+ </span>
|
|
|
+ <input
|
|
|
+ type="text"
|
|
|
+ v-model="emailCode"
|
|
|
+ :placeholder="L['请输入验证码']"
|
|
|
+ class="input"
|
|
|
+ autocomplete="off"
|
|
|
+ />
|
|
|
+ <span class="verify-code-accept">
|
|
|
+ <el-button
|
|
|
+ @click="getVerifyCode"
|
|
|
+ :disabled="countDownNumer"
|
|
|
+ :loading="getVerifyCodeLoading"
|
|
|
+ >
|
|
|
+ <span>{{ codeText }}</span>
|
|
|
+ <span v-if="countDownNumer">{{ `(${countDownNumer})` }}</span>
|
|
|
+ </el-button>
|
|
|
+ </span>
|
|
|
+ </div>
|
|
|
+ <div class="error" v-if="emailCodeErrorMsg">
|
|
|
+ <span
|
|
|
+ style="color: #e1251b; font-size: 14px"
|
|
|
+ class="iconfont icon-jubao"
|
|
|
+ ></span>
|
|
|
+ {{ emailCodeErrorMsg }}
|
|
|
+ </div>
|
|
|
+ <div class="item password">
|
|
|
+ <span
|
|
|
+ style="color: #bbb; font-size: 21px; padding-top: 7px"
|
|
|
+ class="icon iconfont icon-mima1"
|
|
|
+ ></span>
|
|
|
+ <input
|
|
|
+ :type="showPwdFlag ? 'text' : 'password'"
|
|
|
+ v-model="password"
|
|
|
+ :placeholder="L['请输入6~20位英文、数字、符号']"
|
|
|
+ class="input"
|
|
|
+ />
|
|
|
+ <div class="cancel" @click="isShowPwd">
|
|
|
+ <span
|
|
|
+ :style="{
|
|
|
+ color: '#bbb',
|
|
|
+ fontSize: showPwdFlag ? '20px' : '16px',
|
|
|
+ }"
|
|
|
+ :class="{
|
|
|
+ iconfont: true,
|
|
|
+ 'icon-bukejian11': !showPwdFlag,
|
|
|
+ 'icon-kejian': showPwdFlag,
|
|
|
+ show_pwd: showPwdFlag,
|
|
|
+ }"
|
|
|
+ ></span>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="item confirm">
|
|
|
+ <span style="color: #bbb; font-size: 21px; padding-top: 7px" class="icon"
|
|
|
+ ><img src="/register/pwd_confirm.png" alt=""
|
|
|
+ /></span>
|
|
|
+ <input
|
|
|
+ class="input"
|
|
|
+ v-model="confirmPassword"
|
|
|
+ :type="showConfirmPwdFlag ? 'text' : 'password'"
|
|
|
+ :placeholder="L['register']['请确认密码']"
|
|
|
+ @blur="checkPwdMatched"
|
|
|
+ />
|
|
|
+ <div class="cancel" @click="isShowConfirmPwd">
|
|
|
+ <span
|
|
|
+ :style="{
|
|
|
+ color: '#bbb',
|
|
|
+ fontSize: showConfirmPwdFlag ? '20px' : '16px',
|
|
|
+ }"
|
|
|
+ :class="{
|
|
|
+ iconfont: true,
|
|
|
+ 'icon-bukejian11': !showConfirmPwdFlag,
|
|
|
+ 'icon-kejian': showConfirmPwdFlag,
|
|
|
+ show_pwd: showConfirmPwdFlag,
|
|
|
+ }"
|
|
|
+ ></span>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="error" v-if="checkErrorMsg">
|
|
|
+ <span
|
|
|
+ style="color: #e1251b; font-size: 14px"
|
|
|
+ class="iconfont icon-jubao"
|
|
|
+ ></span>
|
|
|
+ {{ checkErrorMsg }}
|
|
|
+ </div>
|
|
|
+ <el-button
|
|
|
+ @click="forgetPwd"
|
|
|
+ :class="{ submit: true, disabled: forgetPwdDisabled }"
|
|
|
+ :disabled="forgetPwdDisabled"
|
|
|
+ :loading="forgetPwdLoading"
|
|
|
+ >{{ L["找回密码"] }}</el-button
|
|
|
+ >
|
|
|
+ <el-dialog
|
|
|
+ :title="L['register']['滑动验证']"
|
|
|
+ destroy-on-close
|
|
|
+ width="500px"
|
|
|
+ center
|
|
|
+ modal-class="retrieve-verify-model"
|
|
|
+ v-model="modalVisible"
|
|
|
+ >
|
|
|
+ <SliderVerify
|
|
|
+ :slideVerifyOptions="{ show: false, w: 450, h: 220 }"
|
|
|
+ @onSuccess="verifySuccess"
|
|
|
+ @onFail="verifyFail"
|
|
|
+ />
|
|
|
+ </el-dialog>
|
|
|
+ </div>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script setup>
|
|
|
+import { showMessage, startCountdown } from "@/utils/common";
|
|
|
+import { getCurLanguage } from "@/composables/common.js";
|
|
|
+
|
|
|
+const emits = defineEmits(["success"]);
|
|
|
+
|
|
|
+const L = getCurLanguage();
|
|
|
+const emailCalc = ref();
|
|
|
+const memberEmail = ref(""); //用户邮箱
|
|
|
+const emailErrorMsg = ref(); //错误提示
|
|
|
+const emailCode = ref(""); // 邮箱验证码
|
|
|
+const emailCodeErrorMsg = ref(); //验证码错误提示
|
|
|
+
|
|
|
+// 倒计时展示
|
|
|
+const countDownNumer = ref(0);
|
|
|
+const getVerifyCodeLoading = ref(false);
|
|
|
+// 人机验证弹窗显示标识
|
|
|
+const modalVisible = ref(false);
|
|
|
+
|
|
|
+// 重新获取验证码标识
|
|
|
+const isReacquireCode = ref(false);
|
|
|
+// 人机校验通过标识符
|
|
|
+const isHMVerifySuccess = ref(false);
|
|
|
+
|
|
|
+const checkErrorMsg = ref(""); // 密码一致性错误提示
|
|
|
+const password = ref(""); //密码
|
|
|
+const confirmPassword = ref(""); //二次确认密码
|
|
|
+const showPwdFlag = ref(false); //密码是否明文显示,默认密文
|
|
|
+const showConfirmPwdFlag = ref(false); // 二次密码是否明文显示,默认密文
|
|
|
+
|
|
|
+const forgetPwdLoading = ref(false);
|
|
|
+
|
|
|
+const forgetPwdDisabled = computed(
|
|
|
+ () => !memberEmail.value || !password.value || !confirmPassword.value
|
|
|
+);
|
|
|
+
|
|
|
+// 获取验证码的文案
|
|
|
+const codeText = computed(() => {
|
|
|
+ return isReacquireCode.value
|
|
|
+ ? L["register"]["重新获取"]
|
|
|
+ : L["register"]["获取验证码"];
|
|
|
+});
|
|
|
+
|
|
|
+const isPasswordMatched = computed(
|
|
|
+ () => password.value === confirmPassword.value
|
|
|
+);
|
|
|
+
|
|
|
+//密码是否显示
|
|
|
+const isShowPwd = () => {
|
|
|
+ showPwdFlag.value = !showPwdFlag.value;
|
|
|
+};
|
|
|
+
|
|
|
+// 二次确认密码是否显示
|
|
|
+const isShowConfirmPwd = () => {
|
|
|
+ showConfirmPwdFlag.value = !showConfirmPwdFlag.value;
|
|
|
+};
|
|
|
+
|
|
|
+const checkPwdMatched = () => {
|
|
|
+ checkErrorMsg.value = isPasswordMatched.value
|
|
|
+ ? ""
|
|
|
+ : L["register"]["两次输入的密码不一致"];
|
|
|
+};
|
|
|
+
|
|
|
+// 人机验证成功
|
|
|
+const verifySuccess = () => {
|
|
|
+ isHMVerifySuccess.value = true;
|
|
|
+ modalVisible.value = false;
|
|
|
+ getVerifyCode();
|
|
|
+};
|
|
|
+
|
|
|
+//清空输入框内容
|
|
|
+const clearInputVal = (type) => {
|
|
|
+ if (type == "memberEmail") {
|
|
|
+ memberEmail.value = "";
|
|
|
+ }
|
|
|
+};
|
|
|
+
|
|
|
+// 人机校验失败
|
|
|
+const verifyFail = () => {
|
|
|
+ showMessage({
|
|
|
+ message: L["register"]["校验不通过"],
|
|
|
+ type: "warning",
|
|
|
+ });
|
|
|
+};
|
|
|
+
|
|
|
+// 校验邮箱
|
|
|
+const validateEmail = () => {
|
|
|
+ //邮箱非空的验证
|
|
|
+ if (!memberEmail.value) {
|
|
|
+ emailErrorMsg.value = L["请输入邮箱"];
|
|
|
+ return false;
|
|
|
+ }
|
|
|
+
|
|
|
+ // 邮箱格式验证
|
|
|
+ emailCalc.value = checkEmail(memberEmail.value);
|
|
|
+ if (emailCalc.value !== true) {
|
|
|
+ emailErrorMsg.value = emailCalc.value;
|
|
|
+ return false;
|
|
|
+ }
|
|
|
+ emailErrorMsg.value = "";
|
|
|
+
|
|
|
+ return true;
|
|
|
+};
|
|
|
+
|
|
|
+// 邮箱验证码验证
|
|
|
+const validateEmailCode = () => {
|
|
|
+ if (!emailCode.value) {
|
|
|
+ emailCodeErrorMsg.value = L["register"]["请输入邮箱验证码"];
|
|
|
+ return false;
|
|
|
+ }
|
|
|
+ emailCodeErrorMsg.value = "";
|
|
|
+
|
|
|
+ return true;
|
|
|
+};
|
|
|
+
|
|
|
+const getVerifyCode = () => {
|
|
|
+ if (!validateEmail()) return;
|
|
|
+ if (!isHMVerifySuccess.value) {
|
|
|
+ modalVisible.value = true;
|
|
|
+ } else {
|
|
|
+ getVerifyCodeLoading.value = true;
|
|
|
+ post("v3/member/front/active/verification/code", {
|
|
|
+ email: memberEmail.value,
|
|
|
+ source: 1,
|
|
|
+ type: 2, // 忘记密码
|
|
|
+ })
|
|
|
+ .then((res) => {
|
|
|
+ if (res.state === 200) {
|
|
|
+ showMessage({
|
|
|
+ message: L["register"]["验证码已发送"],
|
|
|
+ type: "success",
|
|
|
+ });
|
|
|
+ // 设置倒计时
|
|
|
+ startCountdown(60, (time) => (countDownNumer.value = time));
|
|
|
+ isReacquireCode.value = true;
|
|
|
+ } else {
|
|
|
+ showMessage({
|
|
|
+ message: res.msg,
|
|
|
+ type: "warning",
|
|
|
+ });
|
|
|
+ }
|
|
|
+ })
|
|
|
+ .finally(() => {
|
|
|
+ getVerifyCodeLoading.value = false;
|
|
|
+ });
|
|
|
+ }
|
|
|
+};
|
|
|
+
|
|
|
+const forgetPwd = () => {
|
|
|
+ if (!validateEmail() || !validateEmailCode()) return;
|
|
|
+ if (!isPasswordMatched.value) return;
|
|
|
+ forgetPwdLoading.value = true;
|
|
|
+ post("v3/member/front/active/email/reset/pwdNew", {
|
|
|
+ confirmPassWord: confirmPassword.value,
|
|
|
+ email: memberEmail.value,
|
|
|
+ loginPwd: password.value,
|
|
|
+ verificationCode: emailCode.value,
|
|
|
+ })
|
|
|
+ .then((res) => {
|
|
|
+ if (res.state == 200) {
|
|
|
+ //成功提示,并返回到登录页面
|
|
|
+ showMessage({
|
|
|
+ message: L["register"]["重置成功"],
|
|
|
+ type: "success",
|
|
|
+ });
|
|
|
+ emits("success");
|
|
|
+ } else {
|
|
|
+ //提示错误
|
|
|
+ showMessage({
|
|
|
+ message: res.msg,
|
|
|
+ type: "error",
|
|
|
+ });
|
|
|
+ }
|
|
|
+ })
|
|
|
+ .finally(() => {
|
|
|
+ forgetPwdLoading.value = false;
|
|
|
+ });
|
|
|
+};
|
|
|
+
|
|
|
+watch(memberEmail, (val) => {
|
|
|
+ if (val) {
|
|
|
+ emailErrorMsg.value = "";
|
|
|
+ }
|
|
|
+});
|
|
|
+
|
|
|
+watch(emailCode, (val) => {
|
|
|
+ if (val) {
|
|
|
+ emailCodeErrorMsg.value = "";
|
|
|
+ }
|
|
|
+});
|
|
|
+</script>
|
|
|
+
|
|
|
+<style lang="scss" scoped>
|
|
|
+.center {
|
|
|
+ padding: 30px 30px 40px;
|
|
|
+
|
|
|
+ .item {
|
|
|
+ position: relative;
|
|
|
+ margin-top: 15px;
|
|
|
+ border-radius: 2px;
|
|
|
+
|
|
|
+ &:first-child {
|
|
|
+ margin-top: 0;
|
|
|
+ }
|
|
|
+
|
|
|
+ .icon {
|
|
|
+ position: absolute;
|
|
|
+ left: 1px;
|
|
|
+ top: 1px;
|
|
|
+ width: 50px;
|
|
|
+ text-align: center;
|
|
|
+ height: 38px;
|
|
|
+ background: #f8f8f8;
|
|
|
+
|
|
|
+ img {
|
|
|
+ width: 20px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .input {
|
|
|
+ border: 1px solid #e8e8e8;
|
|
|
+ height: 40px;
|
|
|
+ padding: 0 44px 0 60px;
|
|
|
+ width: 326px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ .input {
|
|
|
+ border: 1px solid #e8e8e8;
|
|
|
+ height: 40px;
|
|
|
+ padding: 0 44px 0 60px;
|
|
|
+ width: 326px;
|
|
|
+ }
|
|
|
+
|
|
|
+ &.code {
|
|
|
+ .input {
|
|
|
+ padding-right: 10px;
|
|
|
+ width: 150px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ .cancel {
|
|
|
+ position: absolute;
|
|
|
+ right: 0;
|
|
|
+ top: 1px;
|
|
|
+ width: 44px;
|
|
|
+ height: 38px;
|
|
|
+ cursor: pointer;
|
|
|
+
|
|
|
+ :before {
|
|
|
+ position: absolute;
|
|
|
+ top: 9px;
|
|
|
+ left: 14px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ .error {
|
|
|
+ margin-top: 10px;
|
|
|
+ position: relative;
|
|
|
+ color: $colorMain;
|
|
|
+ height: 16px;
|
|
|
+ line-height: 16px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .verify-code {
|
|
|
+ display: flex;
|
|
|
+ width: 326px;
|
|
|
+ height: 40px;
|
|
|
+ margin-top: 10px;
|
|
|
+
|
|
|
+ &-icon {
|
|
|
+ width: 50px;
|
|
|
+ display: flex;
|
|
|
+ justify-content: center;
|
|
|
+ align-items: center;
|
|
|
+ border: 1px solid #e8e8e8;
|
|
|
+ border-right: none;
|
|
|
+ background: #f8f8f8;
|
|
|
+
|
|
|
+ img {
|
|
|
+ width: 20px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ input {
|
|
|
+ border: 1px solid #e8e8e8;
|
|
|
+ border-left: none;
|
|
|
+ border-right: none;
|
|
|
+ height: 40px;
|
|
|
+ padding: 0 0 0 10px;
|
|
|
+ width: 190px;
|
|
|
+ }
|
|
|
+
|
|
|
+ &-accept {
|
|
|
+ display: flex;
|
|
|
+ justify-content: center;
|
|
|
+ align-items: center;
|
|
|
+ width: 90px;
|
|
|
+
|
|
|
+ .el-button {
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+ color: #666;
|
|
|
+ background: #f8f8f8;
|
|
|
+ border-left: none;
|
|
|
+ border-radius: 0;
|
|
|
+ font-size: 12px;
|
|
|
+
|
|
|
+ &:hover {
|
|
|
+ border-color: #e8e8e8;
|
|
|
+ color: $colorMain;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ .submit {
|
|
|
+ margin-top: 35px;
|
|
|
+ background: $colorMain;
|
|
|
+ color: #fff;
|
|
|
+ text-align: center;
|
|
|
+ border-radius: 2px;
|
|
|
+ width: 100%;
|
|
|
+ height: 45px;
|
|
|
+ font-size: 18px;
|
|
|
+ letter-spacing: 0px;
|
|
|
+
|
|
|
+ &:hover {
|
|
|
+ opacity: 0.9;
|
|
|
+ }
|
|
|
+
|
|
|
+ &.disabled {
|
|
|
+ background-color: #909399;
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+</style>
|