From a5c7e46dd777388135bb653336f7add0ded6221f Mon Sep 17 00:00:00 2001 From: sexygoat <1538832180@qq.com> Date: Thu, 30 Apr 2026 17:41:05 +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 d228c7e..4c7b2d9 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 device_id = params.get('device_id'); - if (deviceId) { - identifier.value = device_id; + const identifier = params.get('identifier'); + if (identifier) { + identifier.value = identifier; handleLogin(); } };