zhanghua
2024-09-26 7c4b4367a6f24c728437134c5e977aa63d022fa1
src/layout/index.vue
@@ -44,23 +44,9 @@
    }
  },
  mounted() {
    // 获取地址栏code
    let code = this.$route.query.code;
    if (code) {
      this.getUserDate(code);
    }
    //  else {
    //     this.$router.push("/login");
    // }
  },
  methods: {
    getUserDate(code) {
      login({
        code: code,
      }).then((res) => {
        localStorage.setItem("user", JSON.stringify(res));
      });
    },
    handleClickOutside() {
      this.$store.dispatch('app/closeSideBar', { withoutAnimation: false })
    }