4
0
mirror of https://github.com/iczer/vue-antd-admin.git synced 2025-04-06 03:57:44 +08:00

修复:修改页签头标题不生效的bug;

fix: the problem that modify page title not effective;
This commit is contained in:
chenghongxing 2020-12-11 16:16:07 +08:00
parent 37f66c8786
commit b0fc3a943e

View File

@ -95,7 +95,8 @@
this.$emit('contextmenu', pageKey, e) this.$emit('contextmenu', pageKey, e)
}, },
pageName(page) { pageName(page) {
const custom = this.customTitles.find(item => item.path === page.fullPath) const pagePath = page.fullPath.split('?')[0]
const custom = this.customTitles.find(item => item.path === pagePath)
return (custom && custom.title) || page.title || this.$t(getI18nKey(page.keyPath)) return (custom && custom.title) || page.title || this.$t(getI18nKey(page.keyPath))
} }
} }