| | |
| | | }, |
| | | mounted() { |
| | | // 测试版本免登录 |
| | | this.$router.push("/home"); |
| | | // this.$router.push({ |
| | | // path: "/home", |
| | | // query: { showlayer: this.$route.query.showlayer } |
| | | // }); |
| | | |
| | | // // 正式版第三方登录 |
| | | // this.getQueryString("focus-open-code"); |
| | | // 正式版第三方登录 |
| | | this.getQueryString("focus-open-code"); |
| | | }, |
| | | |
| | | methods: { |
| | |
| | | var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)"); |
| | | var r = window.location.search.substr(1).match(reg); |
| | | if (r != null) { |
| | | this.$router.push("/home"); |
| | | this.$router.push({ |
| | | path: "/index", |
| | | query: { showlayer: this.$route.query.showlayer } |
| | | }); |
| | | } |
| | | return null; |
| | | }, |
| | | }, |
| | | } |
| | | } |
| | | }; |
| | | </script> |
| | | |