|
@@ -1,32 +1,52 @@
|
|
<script setup>
|
|
<script setup>
|
|
-import { ref, reactive, computed } from "vue";
|
|
|
|
|
|
+import { ref, reactive, computed, watch, onMounted, onUnmounted } from "vue";
|
|
import { checkPhone } from "~/utils/util";
|
|
import { checkPhone } from "~/utils/util";
|
|
import { sendCode } from "~/api/common";
|
|
import { sendCode } from "~/api/common";
|
|
import debounce from "lodash/debounce";
|
|
import debounce from "lodash/debounce";
|
|
import { useLogin } from "~/useHook/useUser";
|
|
import { useLogin } from "~/useHook/useUser";
|
|
// import { useRouter } from "vue-router";
|
|
// import { useRouter } from "vue-router";
|
|
import { COUNT_DOWN_MAX } from "~/utils/constance";
|
|
import { COUNT_DOWN_MAX } from "~/utils/constance";
|
|
-import * as commonApi from "~/api/common";
|
|
|
|
|
|
+
|
|
|
|
+import { useRoute } from "vue-router";
|
|
|
|
|
|
// const Router = useRouter()
|
|
// const Router = useRouter()
|
|
|
|
+const route = useRoute();
|
|
|
|
+
|
|
|
|
+//微信登录
|
|
|
|
+const qrCodeValue = ref();
|
|
|
|
+qrCodeValue.value = `https://open.weixin.qq.com/connect/qrconnect?appid=wx9630bf8c91e9f1d2&redirect_uri=https://www.yixiangvr.com&response_type=code&scope=snsapi_login&state=STATE#wechat_redirect`;
|
|
|
|
+// qrCodeValue.value = `https://open.weixin.qq.com/connect/qrconnect?appid=wx3f19cb67fa5348b1&redirect_uri=https://www.yixiangvr.com&response_type=code&scope=snsapi_login&state=STATE#wechat_redirect`;
|
|
|
|
+const qrCodeSize = ref();
|
|
|
|
+qrCodeSize.value = 170;
|
|
|
|
|
|
const Props = defineProps({
|
|
const Props = defineProps({
|
|
modelValue: {
|
|
modelValue: {
|
|
type: Boolean,
|
|
type: Boolean,
|
|
default: false,
|
|
default: false,
|
|
},
|
|
},
|
|
|
|
+ wx_open_id: {
|
|
|
|
+ type: String,
|
|
|
|
+ },
|
|
|
|
+ wx_union_id: {
|
|
|
|
+ type: String,
|
|
|
|
+ },
|
|
|
|
+ wx_name: {
|
|
|
|
+ type: String,
|
|
|
|
+ },
|
|
|
|
+ wx_avatar: {
|
|
|
|
+ type: String,
|
|
|
|
+ },
|
|
});
|
|
});
|
|
|
|
|
|
const Emits = defineEmits(["update"]);
|
|
const Emits = defineEmits(["update"]);
|
|
-
|
|
|
|
const isShow = computed({
|
|
const isShow = computed({
|
|
get: () => Props.modelValue,
|
|
get: () => Props.modelValue,
|
|
set: (val) => Emits("update", val),
|
|
set: (val) => Emits("update", val),
|
|
});
|
|
});
|
|
-let mode = ref("login"); // [login, register, wechat, bindmobile]
|
|
|
|
|
|
+let mode = ref("login"); // [login, register, wechat, bindmobile]
|
|
|
|
|
|
let tabValue = ref("mobilelogin"); // default: 'mobilelogin'
|
|
let tabValue = ref("mobilelogin"); // default: 'mobilelogin'
|
|
-
|
|
|
|
|
|
+
|
|
const handleTabClick = () => {
|
|
const handleTabClick = () => {
|
|
console.log(
|
|
console.log(
|
|
"%c handletabClick >>>",
|
|
"%c handletabClick >>>",
|
|
@@ -69,6 +89,8 @@ const handleSwitchChannel = (type) => {
|
|
if (type) {
|
|
if (type) {
|
|
mode.value = type;
|
|
mode.value = type;
|
|
}
|
|
}
|
|
|
|
+ if (type == "wechat") {
|
|
|
|
+ }
|
|
};
|
|
};
|
|
|
|
|
|
// 获取短信二维码
|
|
// 获取短信二维码
|
|
@@ -97,14 +119,14 @@ const setnewpassword = async (formdata) => {
|
|
password_confirmation: passw.password_confirmation,
|
|
password_confirmation: passw.password_confirmation,
|
|
});
|
|
});
|
|
ElMessage.success("修改成功");
|
|
ElMessage.success("修改成功");
|
|
- setpassword.value = false
|
|
|
|
|
|
+ setpassword.value = false;
|
|
} catch (error) {}
|
|
} catch (error) {}
|
|
};
|
|
};
|
|
|
|
|
|
// NOTE: 倒计时
|
|
// NOTE: 倒计时
|
|
const handleStartTimeCount = debounce(async function () {
|
|
const handleStartTimeCount = debounce(async function () {
|
|
if (timeId) return;
|
|
if (timeId) return;
|
|
- let mobileNumber = form.account || passw.mobile ||"";
|
|
|
|
|
|
+ let mobileNumber = form.account || passw.mobile || "";
|
|
|
|
|
|
if (!mobileNumber) {
|
|
if (!mobileNumber) {
|
|
ElMessage({ message: "手机号不能为空", type: "error" });
|
|
ElMessage({ message: "手机号不能为空", type: "error" });
|
|
@@ -119,7 +141,7 @@ const handleStartTimeCount = debounce(async function () {
|
|
await __sendcode__({
|
|
await __sendcode__({
|
|
mobile: mobileNumber,
|
|
mobile: mobileNumber,
|
|
// type: 'register' // register | login | forget
|
|
// type: 'register' // register | login | forget
|
|
- type: passw.mobile==''? mode.value :'forget', // register | login | forget
|
|
|
|
|
|
+ type: mode.value=='bindmobile'?'register' : passw.mobile == "" ? mode.value : "forget", // register | login | forget
|
|
});
|
|
});
|
|
|
|
|
|
const timeCount = (time) => {
|
|
const timeCount = (time) => {
|
|
@@ -150,7 +172,7 @@ let btnMapTxt = computed(() => {
|
|
const elformRef = ref();
|
|
const elformRef = ref();
|
|
|
|
|
|
// About login.
|
|
// About login.
|
|
-const { FormRules, __login__,passRules} = useLogin();
|
|
|
|
|
|
+const { FormRules, __login__, passRules } = useLogin();
|
|
|
|
|
|
const handleLoginForm = (formInstance) => {
|
|
const handleLoginForm = (formInstance) => {
|
|
if (!formInstance) return;
|
|
if (!formInstance) return;
|
|
@@ -172,7 +194,7 @@ const handleLoginForm = (formInstance) => {
|
|
else type = "login";
|
|
else type = "login";
|
|
break;
|
|
break;
|
|
case "bindmobile":
|
|
case "bindmobile":
|
|
- type = "mobilelogin";
|
|
|
|
|
|
+ type = "bilelogin";
|
|
}
|
|
}
|
|
|
|
|
|
let formdata = {
|
|
let formdata = {
|
|
@@ -180,8 +202,10 @@ const handleLoginForm = (formInstance) => {
|
|
code: form.msgcode,
|
|
code: form.msgcode,
|
|
password: form.password,
|
|
password: form.password,
|
|
invite_code: form.invitationCode,
|
|
invite_code: form.invitationCode,
|
|
- wx_open_id: "",
|
|
|
|
- wx_union_id: "",
|
|
|
|
|
|
+ wx_openid: Props.wx_open_id,
|
|
|
|
+ wx_unionid: Props.wx_union_id,
|
|
|
|
+ wx_name: Props.wx_name,
|
|
|
|
+ wx_avatar: Props.wx_avatar,
|
|
};
|
|
};
|
|
|
|
|
|
await __login__(formdata, type);
|
|
await __login__(formdata, type);
|
|
@@ -192,6 +216,14 @@ const handleLoginForm = (formInstance) => {
|
|
console.log("%c ----error---- >>>", "background: blue; color: #fff", error);
|
|
console.log("%c ----error---- >>>", "background: blue; color: #fff", error);
|
|
}
|
|
}
|
|
};
|
|
};
|
|
|
|
+
|
|
|
|
+onUnmounted(() => {
|
|
|
|
+ // 组件卸载时停止监听
|
|
|
|
+ window.removeEventListener("popstate", checkForCodeInUrl);
|
|
|
|
+});
|
|
|
|
+defineExpose({
|
|
|
|
+ handleSwitchChannel
|
|
|
|
+})
|
|
</script>
|
|
</script>
|
|
|
|
|
|
<template>
|
|
<template>
|
|
@@ -342,7 +374,7 @@ const handleLoginForm = (formInstance) => {
|
|
<el-form-item class="other-login" v-if="mode !== 'bindmobile'">
|
|
<el-form-item class="other-login" v-if="mode !== 'bindmobile'">
|
|
<ul class="login-channel-container">
|
|
<ul class="login-channel-container">
|
|
<li class="login-channel" @click="handleSwitchChannel('wechat')">
|
|
<li class="login-channel" @click="handleSwitchChannel('wechat')">
|
|
- <img />
|
|
|
|
|
|
+ <img src="../../assets/wechat.png" style="width: 40px;height: 40px;" alt="">
|
|
<div>微信</div>
|
|
<div>微信</div>
|
|
</li>
|
|
</li>
|
|
</ul>
|
|
</ul>
|
|
@@ -352,13 +384,21 @@ const handleLoginForm = (formInstance) => {
|
|
<template v-else-if="mode === 'wechat'">
|
|
<template v-else-if="mode === 'wechat'">
|
|
<div class="wechat-login">
|
|
<div class="wechat-login">
|
|
<div class="tips">
|
|
<div class="tips">
|
|
- <img />
|
|
|
|
- 请使用微信扫一扫
|
|
|
|
|
|
+ <!-- <img />
|
|
|
|
+ 请使用微信扫一扫 -->
|
|
</div>
|
|
</div>
|
|
- <img class="qrcode" />
|
|
|
|
- <a href="javascript:;" @click="handleSwitchChannel('bindmobile')"
|
|
|
|
|
|
+ <!-- <img class="qrcode" /> -->
|
|
|
|
+ <iframe
|
|
|
|
+ :src="qrCodeValue"
|
|
|
|
+ width="100%"
|
|
|
|
+ height="400"
|
|
|
|
+ frameborder="0"
|
|
|
|
+ allowfullscreen
|
|
|
|
+ ></iframe>
|
|
|
|
+ <!-- <vue-qrcode :value="qrCodeValue" :size="qrCodeSize"></vue-qrcode> -->
|
|
|
|
+ <!-- <a href="javascript:;" @click="handleSwitchChannel('bindmobile')"
|
|
>x2</a
|
|
>x2</a
|
|
- >
|
|
|
|
|
|
+ > -->
|
|
<a href="javascript:;" @click="handleSwitchChannel('login')"
|
|
<a href="javascript:;" @click="handleSwitchChannel('login')"
|
|
>点我返回账号登录</a
|
|
>点我返回账号登录</a
|
|
>
|
|
>
|
|
@@ -366,7 +406,7 @@ const handleLoginForm = (formInstance) => {
|
|
</template>
|
|
</template>
|
|
</el-dialog>
|
|
</el-dialog>
|
|
<!-- 忘记密码 -->
|
|
<!-- 忘记密码 -->
|
|
- <el-dialog :show-close="true" v-model="setpassword" title="" width="400px">
|
|
|
|
|
|
+ <el-dialog :show-close="true" v-model="setpassword" title="" width="400px">
|
|
<!-- <template> -->
|
|
<!-- <template> -->
|
|
<div class="register-account">忘记密码</div>
|
|
<div class="register-account">忘记密码</div>
|
|
<el-form :rules="passRules" ref="elform" :model="passw" label-width="0">
|
|
<el-form :rules="passRules" ref="elform" :model="passw" label-width="0">
|
|
@@ -487,7 +527,7 @@ const handleLoginForm = (formInstance) => {
|
|
img {
|
|
img {
|
|
width: 40px;
|
|
width: 40px;
|
|
height: 40px;
|
|
height: 40px;
|
|
- background-color: green;
|
|
|
|
|
|
+ // background-color: green;
|
|
}
|
|
}
|
|
|
|
|
|
div {
|
|
div {
|