toggle.vue 692 B

12345678910111213141516
  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=wxb3274b676737a319&redirect_uri=https://www.usoftmall.com${this.$route.query.url}&response_type=code&scope=snsapi_userinfo&state=STATE#wechat_redirect`
  11. // window.location.href = `https://open.weixin.qq.com/connect/oauth2/authorize?appid=wxd29bbca61728b189&redirect_uri=http://yq43d5.natappfree.cc${this.$route.query.url}&response_type=code&scope=snsapi_userinfo&state=STATE#wechat_redirect`
  12. })
  13. }
  14. }
  15. </script>