12345678910111213141516171819202122232425262728293031323334353637 |
- <!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, initial-scale=1.0">
- <title>登录</title>
- <script src="//res.wx.qq.com/open/js/jweixin-1.6.0.js"></script>
- </head>
- <body>
- <div id="app">
- 登录中...
- </div>
- <script>
- function getQueryString(name, url) {
- let reg = new RegExp('(^|&)' + name + '=([^&]*)(&|$)', 'i')
- let r = (url || window.location.search).substr(1).match(reg)
- if (r != null) {
- return decodeURIComponent(r[2])
- }
- return null
- }
- const redirectPath = getQueryString('redirectPath')
- if (redirectPath === '/pages/project/list') {
- wx.miniProgram.redirectTo({
- url: '/pages/project/list',
- })
- } else {
- wx.miniProgram.reLaunch({
- url: "/pages/home/index"
- });
- }
-
- </script>
- </body>
- </html>
|