获取当前url参数并跳转指定链接拼接参数

12 篇文章 0 订阅
3 篇文章 0 订阅
<template>
  <div class="app-container">
    当前浏览器url的参数 {{ params }}

    <el-button @click="goSubSystem"> 登陆</el-button>
  </div>
</template>

<script>
export default {
  name: "subSystem",
  data() {
    return {
      params: {},
    };
  },
  created() {},
  beforeMount() {
    var queryName = window.location.href;
    function GetRequest() {
      //两种方式,输入链接获取或当前链接获取
      if (typeof urlStr == "undefined") {
        var url = decodeURI(location.search); //获取url中"?"符后的字符串
      } else {
        var url = "?" + urlStr.split("?")[1];
      }
      var theRequest = new Object();
      if (url.indexOf("?") != -1) {
        var str = url.substr(1); //去掉问号,问号为第一个字符
        var strs = str.split("&");
        for (var i = 0; i < strs.length; i++) {
          theRequest[strs[i].split("=")[0]] = decodeURI(strs[i].split("=")[1]);
        }
      }
      return theRequest;
    }
    this.params = GetRequest(queryName);
    console.log(this.params);
    var ua = navigator.userAgent.toLowerCase();
    // if (
    //   ua.match(/MicroMessenger/i) == "micromessenger" ||
    //   ua.match(/iphone os/i) == "iphone os" ||
    //   ua.match(/ipad/i) == "ipad" ||
    //   ua.match(/android/i) == "android" ||
    //   ua.match(/midp/i) == "midp" ||
    //   ua.match(/rv:1.2.3.4/i) == "rv:1.2.3.4" ||
    //   ua.match(/ucweb/i) == "ucweb" ||
    //   ua.match(/windows ce/i) == "windows ce" ||
    //   ua.match(/windows mobile/i) == "windows mobile"
    // ) {
    //   alert("移动端");
      
    // }
  },
  methods: {
    goSubSystem() {
      window.location.href = `http://3689052b9f.zicp.vip/auth/wechatlogin?code=${this.params.code}&state=${this.params.state}`;
    },
  },
};
</script>

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值