mirror of
https://github.com/iczer/vue-antd-admin
synced 2025-04-05 19:41:37 +08:00
bug: fix the problem that custom page title not effect;
修复:自定义页面标题不起作用的问题;
This commit is contained in:
parent
533890a376
commit
a4b0785f0f
@ -95,6 +95,10 @@ export default {
|
|||||||
const path = route.path.length === 0 ? '/home' : route.path
|
const path = route.path.length === 0 ? '/home' : route.path
|
||||||
breadcrumb.push(this.$t(getI18nKey(path)))
|
breadcrumb.push(this.$t(getI18nKey(path)))
|
||||||
})
|
})
|
||||||
|
let pageTitle = this.page && this.page.title
|
||||||
|
if (pageTitle) {
|
||||||
|
breadcrumb[breadcrumb.length - 1] = pageTitle
|
||||||
|
}
|
||||||
return breadcrumb
|
return breadcrumb
|
||||||
},
|
},
|
||||||
/**
|
/**
|
||||||
|
@ -95,7 +95,7 @@
|
|||||||
this.$emit('contextmenu', pageKey, e)
|
this.$emit('contextmenu', pageKey, e)
|
||||||
},
|
},
|
||||||
pageName(page) {
|
pageName(page) {
|
||||||
return this.$t(getI18nKey(page.keyPath))
|
return page.title || this.$t(getI18nKey(page.keyPath))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -249,6 +249,7 @@ export default {
|
|||||||
return {
|
return {
|
||||||
keyPath: route.matched[route.matched.length - 1].path,
|
keyPath: route.matched[route.matched.length - 1].path,
|
||||||
fullPath: route.fullPath, loading: false,
|
fullPath: route.fullPath, loading: false,
|
||||||
|
title: route.meta && route.meta.page && route.meta.page.title,
|
||||||
unclose: route.meta && route.meta.page && (route.meta.page.closable === false),
|
unclose: route.meta && route.meta.page && (route.meta.page.closable === false),
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
Loading…
x
Reference in New Issue
Block a user