mirror of
https://github.com/iczer/vue-antd-admin
synced 2025-04-05 07:27:06 +08:00
chore: optimize the code of caching tabs;
This commit is contained in:
parent
bad44562e7
commit
435b2ff585
@ -228,16 +228,17 @@ export default {
|
||||
* 加载缓存的 tabs
|
||||
*/
|
||||
loadCachedTabs() {
|
||||
const cachedTabs = sessionStorage.getItem(process.env.VUE_APP_TBAS_KEY)
|
||||
if (cachedTabs) {
|
||||
const cachedTabsStr = sessionStorage.getItem(process.env.VUE_APP_TBAS_KEY)
|
||||
if (cachedTabsStr) {
|
||||
try {
|
||||
const tabs = JSON.parse(cachedTabs)
|
||||
if (tabs.length > 0) {
|
||||
this.pageList = tabs
|
||||
const cachedTabs = JSON.parse(cachedTabsStr)
|
||||
if (cachedTabs.length > 0) {
|
||||
this.pageList = cachedTabs
|
||||
}
|
||||
sessionStorage.removeItem(process.env.VUE_APP_TBAS_KEY)
|
||||
} catch (e) {
|
||||
console.warn('failed to load cached tabs, got exception:', e)
|
||||
} finally {
|
||||
sessionStorage.removeItem(process.env.VUE_APP_TBAS_KEY)
|
||||
}
|
||||
}
|
||||
},
|
||||
|
Loading…
x
Reference in New Issue
Block a user