北京经济技术开发区经开区虚拟城市项目-【前端】-移动端Web
lixuliang
2024-02-27 a616aa5017406f851abfda3a3e446feed3f10e60
src/components/login.vue
@@ -9,19 +9,11 @@
    return {};
  },
  mounted() {
    this.getQueryString("focus-open-code");
    // if (
    //   window.location.href.match(/=(\S*)#/) &&
    //   window.location.href.match(/=(\S*)#/)[1] != ""
    // ) {
    //   this.passFree();
    // }
    // console.log(1);
    // // 京办免密登录(url带参"focus-open-code")
    // if (this.$route.query["focus-open-code"]) {
    //   this.passJBFree();
    // }
    // 测试版本免登录
    this.$router.push("/home");
    // // 正式版第三方登录
    // this.getQueryString("focus-open-code");
  },
  methods: {
@@ -29,14 +21,10 @@
      var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)");
      var r = window.location.search.substr(1).match(reg);
      if (r != null) {
        this.$router.push("/index");
        this.$router.push("/home");
      }
      return null;
    },
    // 京办免密登录
    // passJBFree() {
    //   // this.$router.push("/index");
    // },
  },
};
</script>