diff --git a/pages/login/login.vue b/pages/login/login.vue index 909f99b..d228c7e 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 idf = params.get('identifier'); + const device_id = params.get('device_id'); if (deviceId) { - identifier.value = idf; + identifier.value = device_id; handleLogin(); } };