toggle.vue 447 B

123456789101112131415
  1. <template>
  2. <div></div>
  3. </template>
  4. <script>
  5. export default {
  6. layout: 'mobileNoHeader',
  7. mounted() {
  8. this.$nextTick(() => {
  9. // this.$route.query.url
  10. window.location.href = `https://open.weixin.qq.com/connect/oauth2/authorize?appid=wxd29bbca61728b189&redirect_uri=http://wwpszp.natappfree.cc${this.$route.query.url}&response_type=code&scope=snsapi_userinfo&state=STATE#wechat_redirect`
  11. })
  12. }
  13. }
  14. </script>