This commit is contained in:
WUSIJIAN
2025-11-21 15:06:32 +08:00
4 changed files with 6 additions and 6 deletions

View File

@@ -13,7 +13,7 @@
content="vue-next-admin基于 vue3 + CompositionAPI + typescript + vite + element plus适配手机、平板、pc 的后台开源免费管理系统模板vue-prev-admin基于 vue2 + element ui适配手机、平板、pc 的后台开源免费管理系统模板!"
/>
<link rel="icon" href="/favicon.ico" />
<title>gfast3.2后台管理系统</title>
<title>红动未来业务中台</title>
</head>
<body>
<div id="app"></div>

View File

@@ -4,7 +4,7 @@ import { useUserInfo } from '/@/stores/userInfo';
import { useRequestOldRoutes } from '/@/stores/requestOldRoutes';
import { Session } from '/@/utils/storage';
import { NextLoading } from '/@/utils/loading';
import { demoRoutes,dynamicRoutes, notFoundAndNoPower } from '/@/router/route';
import { dynamicRoutes, notFoundAndNoPower } from '/@/router/route';
import { formatTwoStageRoutes, formatFlatteningRoutes, router } from '/@/router/index';
import { useRoutesList } from '/@/stores/routesList';
import { useTagsViewRoutes } from '/@/stores/tagsViewRoutes';
@@ -47,7 +47,7 @@ export async function initBackEndControlRoutes() {
// 存储接口原始路由未处理component根据需求选择使用
useRequestOldRoutes().setRequestOldRoutes(JSON.parse(JSON.stringify(menuRoute)));
// 处理路由component替换 dynamicRoutes/@/router/route第一个顶级 children 的路由
dynamicRoutes[0].children?.push(...await backEndComponent(menuRoute),...demoRoutes);
dynamicRoutes[0].children?.push(...await backEndComponent(menuRoute));
// 添加动态路由
await setAddRoute();
// 设置路由到 vuex routesList 中(已处理成多级嵌套路由)及缓存多级嵌套数组处理后的一维数组

View File

@@ -129,9 +129,9 @@ export const useThemeConfig = defineStore('themeConfig', {
* 全局网站标题 / 副标题
*/
// 网站主标题(菜单导航、浏览器当前网页标题)
globalTitle: 'gfast3.2后台管理系统',
globalTitle: '红动未来业务中台',
// 网站副标题(登录页顶部文字)
globalViceTitle: 'gfast3.2后台管理系统',
globalViceTitle: '红动未来业务中台',
// 默认初始语言,可选值"<zh-cn|en|zh-tw>",默认 zh-cn
globalI18n: 'zh-cn',
// 默认全局组件大小,可选值"<large|'default'|small>",默认 'large'

View File

@@ -72,7 +72,7 @@ export default defineComponent({
router.push({
name: 'paramsDynamicDetails',
params: {
t: 'gfast3.2后台管理系统',
t: '红动未来业务中台',
id: state.value,
tagsViewName: state.tagsViewName,
},