diff --git a/src/config/route.ts b/src/config/route.ts index 3475024e..e1e63129 100644 --- a/src/config/route.ts +++ b/src/config/route.ts @@ -7,7 +7,7 @@ interface RouteSettings { */ async: boolean /** 当动态路由功能关闭时: - * 1. 应该将所有路由都写到常驻路由里面(表明所有登陆的用户能访问的页面都是一样的) + * 1. 应该将所有路由都写到常驻路由里面(表明所有登录的用户能访问的页面都是一样的) * 2. 系统自动给当前登录用户赋值一个没有任何作用的默认角色 */ defaultRoles: Array diff --git a/src/store/modules/user.ts b/src/store/modules/user.ts index 90cfe12d..634cfd97 100644 --- a/src/store/modules/user.ts +++ b/src/store/modules/user.ts @@ -35,7 +35,7 @@ export const useUserStore = defineStore("user", () => { const newToken = "token-" + role token.value = newToken setToken(newToken) - // 用刷新页面代替重新登陆 + // 用刷新页面代替重新登录 window.location.reload() } /** 登出 */ diff --git a/src/views/permission/components/SwitchRoles.vue b/src/views/permission/components/SwitchRoles.vue index 7f25d001..dc488324 100644 --- a/src/views/permission/components/SwitchRoles.vue +++ b/src/views/permission/components/SwitchRoles.vue @@ -13,7 +13,7 @@ watch(switchRoles, (value) => {
你的权限:{{ userStore.roles }}
- 切换权限(模拟权限变化后重新登陆): + 切换权限(模拟权限变化后重新登录):