Commit f876b9b6 authored by Pan's avatar Pan

perf:refine breadcrumb

parent 061fa1f2
......@@ -22,13 +22,9 @@ export default {
methods: {
getBreadcrumb() {
let matched = this.$route.matched.filter(item => item.name)
if (matched.length === 0) {
this.levelList = [{ path: '/', meta: { title: '首页' }}]
return
}
const first = matched[0]
if (first && first.name !== 'dashboard') {
matched = [{ path: '/', meta: { title: 'dashboard' }}].concat(matched)
matched = [{ path: '/dashboard', meta: { title: 'dashboard' }}].concat(matched)
}
this.levelList = matched
},
......
......@@ -87,6 +87,7 @@ export const asyncRouterMap = [
{
path: '/components',
component: Layout,
redirect: 'noredirect',
name: 'component-demo',
meta: {
title: 'components',
......@@ -110,7 +111,7 @@ export const asyncRouterMap = [
{
path: '/charts',
component: Layout,
redirect: '/charts/index',
redirect: 'noredirect',
name: 'charts',
meta: {
title: 'charts',
......@@ -126,7 +127,7 @@ export const asyncRouterMap = [
{
path: '/example',
component: Layout,
redirect: 'noredirect',
redirect: '/example/table/complex-table',
name: 'example',
meta: {
title: 'example',
......@@ -136,7 +137,7 @@ export const asyncRouterMap = [
{
path: '/example/table',
component: _import('example/table/index'),
redirect: '/example/table/table',
redirect: '/example/table/complex-table',
name: 'Table',
meta: {
title: 'Table',
......@@ -193,7 +194,7 @@ export const asyncRouterMap = [
{
path: '/excel',
component: Layout,
redirect: '/excel/download',
redirect: '/excel/export-excel',
name: 'excel',
meta: {
title: 'excel',
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment