diff --git a/.gitignore b/.gitignore index 6b608ed..fc33266 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,7 @@ .DS_Store node_modules /dist +dist_electron # local env files diff --git a/src/router/index.js b/src/router/index.js index 38f2fa5..6355f3e 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -1,6 +1,5 @@ import Vue from "vue"; import VueRouter from "vue-router"; -import store from "@/store"; import NProgress from "nprogress"; import "@/assets/css/nprogress.css"; import { isLooseLoggedIn } from "@/utils/auth"; @@ -118,9 +117,6 @@ const router = new VueRouter({ router.beforeEach((to, from, next) => { // 需要登录的逻辑 if (to.meta.requireLogin) { - if (store.state.data.user.nickname === undefined) { - next({ path: "/login" }); - } if (isLooseLoggedIn()) { next(); } else { diff --git a/src/store/actions.js b/src/store/actions.js index 6a28df9..7d61fb5 100644 --- a/src/store/actions.js +++ b/src/store/actions.js @@ -85,6 +85,7 @@ export default { if (state.player.repeat !== "off") { nextTrack = state.player.list.find((t) => t.sort === 0); } else { + document.title = "YesPlayMusic"; return; } }