wxIndex.php 947 B

12345678910111213141516171819202122232425262728293031
  1. <!DOCTYPE html>
  2. <!--HTML5 doctype-->
  3. <html>
  4. <head>
  5. <title>壹管家</title>
  6. <meta http-equiv="Content-type" content="text/html; charset=utf-8">
  7. <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no">
  8. <meta name="apple-mobile-web-app-capable" content="yes">
  9. <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
  10. <meta http-equiv="Pragma" content="no-cache">
  11. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  12. </head>
  13. <body>
  14. <script type="text/javascript">
  15. (function(){
  16. var codeURI = '<?php echo $codeURI; ?>';
  17. var appURI = '<?php echo $appURI; ?>';
  18. var wxUserID = localStorage.getItem('wxUserID');
  19. if (wxUserID) {
  20. location.href = appURI+'&userId='+wxUserID;
  21. } else {
  22. location.href = codeURI;
  23. }
  24. })();
  25. </script>
  26. </body>
  27. </html>