Ver Fonte

系统及各模块标题修改

wangrulan há 2 anos atrás
pai
commit
b18e4ead31
2 ficheiros alterados com 3 adições e 3 exclusões
  1. 1 1
      src/components/permissions/index.vue
  2. 2 2
      src/router/index.js

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

@@ -2,7 +2,7 @@
   <div class="contartant">
     <div class="banner">
       <span>
-        投 诉 管 理 系 统
+        权 限 和 日 志 管 理
       </span>
       <div class="content">
             <div class="userImg">

+ 2 - 2
src/router/index.js

@@ -14,7 +14,7 @@ const router = new Router({
       name: 'Home',
       component: () => import('@/components/home/index'),
       meta: {
-        title: '首页'
+        title: '投诉管理系统'
       },
     },
     {
@@ -57,7 +57,7 @@ const router = new Router({
   ]
 })
 
-const defaultTitle = '投诉管理系统'
+const defaultTitle = '权限和日志管理'
 router.beforeEach((to, from, next) => {
   document.title = to.meta.title ? to.meta.title : defaultTitle
   next()