This commit is contained in:
yixu
2025-09-15 19:30:25 +08:00
parent e9d3c17262
commit dd773f03c0
2 changed files with 22 additions and 2 deletions

View File

@@ -156,6 +156,19 @@ if (isLogin()) {
userStatus(handleLoginSuccess)
}
let mergeId = '';
const urlParams = new URLSearchParams(window.location.search);
mergeId = urlParams.get('merge_id');
watch(() => mergeId, async (newVal) => {
if (!newVal) {
return
}
if (newVal) {
isPhotoSquareVisible.value = true;
}
}, {immediate: true})
</script>