cuikaidong
2025-06-12 44e283b774bb1168d0c17dfe5070a1ca8e2274cd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
    <title>第三方登录</title>
</head>
<body>
登陆中...
<script>
    window.onload = function () {
        setTimeout(function (){
            var thirdLoginInfo = "${token}";
            console.log("thirdLoginInfo",thirdLoginInfo);
            window.opener.postMessage("${token}", "*");
            window.close();
        },1000)
    }
</script>
</body>
</html>