Browse Source

[Feat 0000] 添加项目首页配置

houzekong 3 months ago
parent
commit
9bfa87b916

+ 3 - 1
src/hooks/setting/index.ts

@@ -25,8 +25,10 @@ const getUrl = () => {
             title = data.result['systemTitle'] ? data.result['systemTitle'] : '';
             logoUrl = data.result['logoIcon'] ? data.result['logoIcon'] : '';
             sysOrgCode = data.result['sysOrgCode'] ? data.result['sysOrgCode'] : '';
+            // getHomePath是以前的代码,留下做兼容,获取到一个默认的首页路径
+            // 然后正常按配置走,默认使用上面的首页路径
             const homePathKey = data.result['defaultTheme'] ? data.result['defaultTheme'] : '';
-            homePath = getHomePath(homePathKey);
+            homePath = data.result['systemHome'] ? data.result['systemHome'] : getHomePath(homePathKey);
             const faviconIcon = document.getElementById('faviconIcon');
             if (faviconIcon) {
               faviconIcon.setAttribute('href', `${VUE_APP_URL.baseUrl}/sys/common/static/${logoUrl}`);

+ 4 - 6
src/layouts/default/sider/bottomSideder.vue

@@ -117,12 +117,8 @@
       function geHome() {
         if (userStore.getUserInfo.homePath) {
           go(userStore.getUserInfo.homePath);
-        } else {
-          if (currentRoute.value.path.startsWith('/micro-need-air')) {
-            window.history.pushState({}, '', glob.homePath || PageEnum.BASE_HOME);
-          } else {
-            go(glob.homePath || PageEnum.BASE_HOME);
-          }
+        } else if (currentRoute.value.path.startsWith('/micro-need-air')) {
+          window.history.pushState({}, '', glob.homePath || PageEnum.BASE_HOME);
           // if (currentRoute.value.path.startsWith('/micro-vent-3dModal/dashboard/analysis')) {
           //   if (glob.homePath == '/micro-vent-3dModal/dashboard/analysis' || PageEnum.BASE_HOME == '/micro-vent-3dModal/dashboard/analysis') {
           //     actions.setGlobalState({ pageObj: { pageType: 'home' } });
@@ -136,6 +132,8 @@
 
           //   go(glob.homePath || PageEnum.BASE_HOME);
           // }
+        } else {
+          go(glob.homePath || PageEnum.BASE_HOME);
         }
       }
       function closeMenu(e?: Event) {

+ 11 - 0
src/views/vent/sys/setting/setting.data.ts

@@ -8,6 +8,12 @@ export const columns: BasicColumn[] = [
     dataIndex: 'systemTitle',
   },
   {
+    title: '系统首页',
+    width: 150,
+    dataIndex: 'systemHome',
+    helpMessage: ['系统首页对应的url', '不填此项则首页为默认首页'],
+  },
+  {
     title: 'logo',
     dataIndex: 'logoIcon',
     helpMessage: ['这是简单模式的图片列表', '只会显示一张在表格中', '但点击可预览多张图片'],
@@ -45,6 +51,11 @@ export const formSchema: FormSchema[] = [
     component: 'Input',
   },
   {
+    field: 'systemHome',
+    label: '系统首页',
+    component: 'Input',
+  },
+  {
     field: 'logoIcon',
     label: 'logo',
     component: 'JImageUpload',