mirror of
https://github.com/chansee97/nova-admin.git
synced 2025-04-06 03:57:54 +08:00
fix(projects): 修改固定路由类型错误
This commit is contained in:
parent
c261b9c01f
commit
5ce9290ca5
@ -17,10 +17,12 @@ const userInfo = {
|
||||
{
|
||||
label: '主控台',
|
||||
value: 'dashboard_console',
|
||||
icon: 'icon-park-outline:alarm',
|
||||
},
|
||||
{
|
||||
label: '监控页',
|
||||
value: 'dashboard_monitor',
|
||||
icon: 'icon-park-outline:anchor',
|
||||
},
|
||||
],
|
||||
};
|
||||
|
@ -39,7 +39,7 @@ export const useAuthStore = defineStore('auth-store', {
|
||||
const { data } = await fetchLogin({ userName, password });
|
||||
|
||||
// 处理登录信息
|
||||
await this.handleAfterLogin(data as any);
|
||||
await this.handleAfterLogin(data as any); // TODO 避免any
|
||||
|
||||
this.loginLoading = false;
|
||||
},
|
||||
@ -48,6 +48,7 @@ export const useAuthStore = defineStore('auth-store', {
|
||||
async handleAfterLogin(data: Auth.UserInfo) {
|
||||
// 等待数据写入完成
|
||||
const catchSuccess = await this.catchUserInfo(data);
|
||||
// 初始化侧边菜单
|
||||
|
||||
// 登录写入信息成功
|
||||
if (catchSuccess) {
|
||||
|
15
src/store/modules/route.ts
Normal file
15
src/store/modules/route.ts
Normal file
@ -0,0 +1,15 @@
|
||||
import { defineStore } from 'pinia';
|
||||
|
||||
export const useRouteStore = defineStore('route-store', {
|
||||
state: () => {
|
||||
return {
|
||||
menus: [],
|
||||
};
|
||||
},
|
||||
actions: {
|
||||
setMenus(data: any) {
|
||||
// TODO不应为any
|
||||
this.menus = data;
|
||||
},
|
||||
},
|
||||
});
|
5
src/types/route.d.ts
vendored
5
src/types/route.d.ts
vendored
@ -1,8 +1,3 @@
|
||||
import 'vue-router';
|
||||
declare module 'vue-router' {
|
||||
interface RouteMeta extends AppRoute.RouteMeta {}
|
||||
}
|
||||
|
||||
declare namespace AppRoute {
|
||||
/** 单个路由的类型结构(动态路由模式:后端返回此类型结构的路由) */
|
||||
interface Route {
|
||||
|
4
src/types/router.d.ts
vendored
4
src/types/router.d.ts
vendored
@ -0,0 +1,4 @@
|
||||
import 'vue-router';
|
||||
declare module 'vue-router' {
|
||||
interface RouteMeta extends AppRoute.RouteMeta {}
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user