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(); } };