Parcourir la source

管理后台-路由

panyong il y a 3 ans
Parent
commit
331911da20

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

@@ -34,7 +34,7 @@ export default {
       const first = matched[0]
 
       if (!this.isDashboard(first)) {
-        matched = [{ path: '/dashboard', meta: { title: '工作台' } }].concat(matched)
+        matched = [{ path: '/dashboard', meta: { title: '首页' } }].concat(matched)
       }
 
       this.levelList = matched.filter(item => item.meta && item.meta.title && item.meta.breadcrumb !== false)

+ 2 - 1
htmldev/manage/src/router/index.js

@@ -53,13 +53,14 @@ export const asyncRoutes = [
       path: 'dashboard',
       name: 'Dashboard',
       component: _import('views/dashboard/index'),
-      meta: { title: '工作台', icon: 'dashboard' }
+      meta: { title: '首页', icon: 'dashboard' }
     }]
   },
   {
     path: '/project',
     component: Layout,
     redirect: '/project/list',
+    hidden: true,
     meta: { title: '项目管理', icon: 'table', roleValue: 'project_list_show' },
     children: [{
       path: 'list',

+ 1 - 5
htmldev/manage/src/views/404.vue

@@ -8,15 +8,11 @@
         <img class="pic-404__child right" src="@/assets/404_images/404_cloud.png" alt="404">
       </div>
       <div class="bullshit">
-        <div class="bullshit__oops">OOPS!</div>
-        <div class="bullshit__info">All rights reserved
-          <a style="color:#20a0ff" href="https://wallstreetcn.com" target="_blank">wallstreetcn</a>
-        </div>
         <div class="bullshit__headline">{{ message }}</div>
         <div class="bullshit__info">Please check that the URL you entered is correct, or click the button below to
           return to the homepage.
         </div>
-        <a href="" class="bullshit__return-home">Back to home</a>
+        <router-link class="bullshit__return-home" :to="{path: '/'}" replace>Back to home</router-link>
       </div>
     </div>
   </div>