Browse Source

传递zlb_token参数

杨威 3 months ago
parent
commit
f2634389d7
1 changed files with 6 additions and 1 deletions
  1. 6 1
      transfer.html

+ 6 - 1
transfer.html

@@ -20,7 +20,12 @@
 
 </div>
 <script>
-    location.href='https://txwx.txhlwxx.com/mobile';
+    const urlParams = new URLSearchParams(window.location.search);
+    const params = {};
+    for (const [key, value] of urlParams.entries()) {
+      params[key] = value;
+    }
+    location.href='https://txwx.txhlwxx.com/mobile/#/login?zlb_token='+params['zlb_token'];
 </script>
 </body>
 </html>