fix(projects): 修改固定路由类型错误

This commit is contained in:
‘chen.home’ 2022-08-13 23:07:15 +08:00
parent c261b9c01f
commit 5ce9290ca5
5 changed files with 23 additions and 6 deletions

View File

@ -17,10 +17,12 @@ const userInfo = {
{
label: '主控台',
value: 'dashboard_console',
icon: 'icon-park-outline:alarm',
},
{
label: '监控页',
value: 'dashboard_monitor',
icon: 'icon-park-outline:anchor',
},
],
};

View File

@ -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) {

View 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;
},
},
});

View File

@ -1,8 +1,3 @@
import 'vue-router';
declare module 'vue-router' {
interface RouteMeta extends AppRoute.RouteMeta {}
}
declare namespace AppRoute {
/** 单个路由的类型结构(动态路由模式:后端返回此类型结构的路由) */
interface Route {

View File

@ -0,0 +1,4 @@
import 'vue-router';
declare module 'vue-router' {
interface RouteMeta extends AppRoute.RouteMeta {}
}