Skip to content
  • This project
    • Loading...
  • Sign in

ethan / appframe

Go to a project
Toggle navigation
Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Network
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • appframe
  • assets
  • login.html
  • tanghuan's avatar
    dev · 128403df
    tanghuan committed 2025-10-15 10:02:26 +0800
    128403df Browse Directory
login.html 393 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
<!DOCTYPE html>
<html>
<head>
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>WebView Communication</title>
</head>
<body>

<h2>登录跳转</h2>

</body>
<script>

    window.onload = function () {
        let message = '{ "timestamp": 1, "unique": "1", "cmd": "goLogin", "params": {} }';
        xeJsBridge.postMessage(message);
    }

</script>
</html>