From 52c36dfc9b844831319744bdee6cba9795147f98 Mon Sep 17 00:00:00 2001 From: sexygoat <1538832180@qq.com> Date: Thu, 30 Apr 2026 17:43:52 +0800 Subject: [PATCH] fix: singer --- pages/login/login.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pages/login/login.vue b/pages/login/login.vue index 4c7b2d9..b10661d 100644 --- a/pages/login/login.vue +++ b/pages/login/login.vue @@ -196,9 +196,9 @@ const handleScanLogin = async () => { const getPathDeviceId = () => { const params = new URLSearchParams(window.location.search); - const identifier = params.get('identifier'); - if (identifier) { - identifier.value = identifier; + const idf = params.get('identifier'); + if (idf) { + identifier.value = idf; handleLogin(); } };