ソースを参照

Merge branch 'master' of http://172.14.1.63:3000/liuxf/ds-yamada-fcbi-admin

quyx@nextosd.com 6 ヶ月 前
コミット
868b4cfd2c
2 ファイル変更2 行追加2 行削除
  1. 1 1
      src/components/Breadcrumb/index.vue
  2. 1 1
      src/router/index.js

+ 1 - 1
src/components/Breadcrumb/index.vue

@@ -33,7 +33,7 @@ function getBreadcrumb() {
 
   // Check if it's the dashboard
   if (!isDashboard(matched[0])) {
-    matched = [{path: "/index", meta: {title: "トップページ"}}].concat(matched)
+    matched = [{path: "/index", meta: {title: "FC管理システム"}}].concat(matched)
   }
 
   levelList.value = matched.filter(item => item.meta && item.meta.title && item.meta.breadcrumb !== false)

+ 1 - 1
src/router/index.js

@@ -60,7 +60,7 @@ export const constantRoutes = [
                 path: '/index',
                 component: () => import('@/views/index'),
                 name: 'Index',
-                meta: {title: 'トップページ', icon: 'dashboard', affix: true}
+                meta: {title: 'FC管理システム', icon: 'dashboard', affix: true}
             }
         ]
     },