v3.9.0【优化】typescript版本;【优化】App端消息;【优化】弹出层z-index;

This commit is contained in:
zhuoda
2024-11-04 20:15:49 +08:00
parent 17a3e1fd86
commit 69fa9088f5
1376 changed files with 10373 additions and 9712 deletions

View File

@@ -0,0 +1,48 @@
/*
* 首页路由
*
* @Author: 1024创新实验室-主任:卓大
* @Date: 2022-09-06 20:51:41
* @Wechat: zhuda1024
* @Email: lab1024@163.com
* @Copyright 1024创新实验室 https://1024lab.net Since 2012
*/
import { HOME_PAGE_NAME } from '/@/constants/system/home-const';
import { MENU_TYPE_ENUM } from '/@/constants/system/menu-const';
import SmartLayout from '/@/layout/index.vue';
export const homeRouters = [
{
path: '/',
name: '_home',
redirect: { name: HOME_PAGE_NAME },
component: SmartLayout,
meta: {
title: '首页',
menuType: MENU_TYPE_ENUM.CATALOG.value,
icon: 'HomeOutlined',
},
children: [
{
path: '/home',
name: HOME_PAGE_NAME,
meta: {
title: '首页',
menuType: MENU_TYPE_ENUM.MENU.value,
icon: 'HomeOutlined',
parentMenuList: [{ name: '_home', title: '首页' }],
},
component: () => import('/@/views/system/home/index.vue'),
},
{
path: '/account',
name: 'Account',
component: () => import('/@/views/system/account/index.vue'),
meta: {
title: '个人中心',
hideInMenu: false,
},
},
],
},
];

View File

@@ -0,0 +1,21 @@
/*
* 登录页面
*
* @Author: 1024创新实验室-主任:卓大
* @Date: 2022-09-06 20:51:50
* @Wechat: zhuda1024
* @Email: lab1024@163.com
* @Copyright 1024创新实验室 https://1024lab.net Since 2012
*/
export const loginRouters = [
{
path: '/login',
name: 'Login',
component: () => import('/@/views/system/login3/login.vue'),
meta: {
title: '登录',
hideInMenu: true,
},
},
];