From b0463a4c521ac42ec23dbd24728bb9957811a6a4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BC=A0=E6=96=8C?= <259278618@qq.com> Date: Fri, 21 Nov 2025 14:42:54 +0800 Subject: [PATCH 1/2] =?UTF-8?q?=E9=9A=90=E8=97=8F=E6=A1=88=E4=BE=8B?= =?UTF-8?q?=E8=8F=9C=E5=8D=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/router/backEnd.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/router/backEnd.ts b/src/router/backEnd.ts index c957492..6ba1424 100644 --- a/src/router/backEnd.ts +++ b/src/router/backEnd.ts @@ -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 中(已处理成多级嵌套路由)及缓存多级嵌套数组处理后的一维数组 From 515460d19d0037eea6a3f34bd26db2140ff9df0d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BC=A0=E6=96=8C?= <259278618@qq.com> Date: Fri, 21 Nov 2025 14:47:24 +0800 Subject: [PATCH 2/2] =?UTF-8?q?=E9=9A=90=E8=97=8F=E6=A1=88=E4=BE=8B?= =?UTF-8?q?=E8=8F=9C=E5=8D=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- index.html | 2 +- src/stores/themeConfig.ts | 4 ++-- src/views/params/dynamic/index.vue | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/index.html b/index.html index 60f47c4..5016df6 100644 --- a/index.html +++ b/index.html @@ -13,7 +13,7 @@ content="vue-next-admin,基于 vue3 + CompositionAPI + typescript + vite + element plus,适配手机、平板、pc 的后台开源免费管理系统模板!vue-prev-admin,基于 vue2 + element ui,适配手机、平板、pc 的后台开源免费管理系统模板!" /> - gfast3.2后台管理系统 + 红动未来业务中台
diff --git a/src/stores/themeConfig.ts b/src/stores/themeConfig.ts index 2c12fb1..814d033 100644 --- a/src/stores/themeConfig.ts +++ b/src/stores/themeConfig.ts @@ -129,9 +129,9 @@ export const useThemeConfig = defineStore('themeConfig', { * 全局网站标题 / 副标题 */ // 网站主标题(菜单导航、浏览器当前网页标题) - globalTitle: 'gfast3.2后台管理系统', + globalTitle: '红动未来业务中台', // 网站副标题(登录页顶部文字) - globalViceTitle: 'gfast3.2后台管理系统', + globalViceTitle: '红动未来业务中台', // 默认初始语言,可选值"",默认 zh-cn globalI18n: 'zh-cn', // 默认全局组件大小,可选值"",默认 'large' diff --git a/src/views/params/dynamic/index.vue b/src/views/params/dynamic/index.vue index e5246fe..a6fe0b0 100644 --- a/src/views/params/dynamic/index.vue +++ b/src/views/params/dynamic/index.vue @@ -72,7 +72,7 @@ export default defineComponent({ router.push({ name: 'paramsDynamicDetails', params: { - t: 'gfast3.2后台管理系统', + t: '红动未来业务中台', id: state.value, tagsViewName: state.tagsViewName, },