用户活动信息

This commit is contained in:
tcubic
2022-08-01 16:58:05 +08:00
parent af65697599
commit ff43592c74

View File

@@ -36,6 +36,7 @@ const authCode = ref('')
// 页面未挂载 // 页面未挂载
onBeforeMount(() => { onBeforeMount(() => {
console.log("用户活动信息:", store.state.userAccount); console.log("用户活动信息:", store.state.userAccount);
console.log("授权链接:",window.location.href);
// 微信环境授权 // 微信环境授权
// if (h5plugin.isWX()) { // if (h5plugin.isWX()) {
@@ -59,7 +60,6 @@ onBeforeMount(() => {
// 页面挂载 // 页面挂载
onMounted(() => { onMounted(() => {
console.log("授权链接:",window.location.href);
}); });