优化系统设置

This commit is contained in:
不做码农 2022-05-25 11:33:43 +08:00
parent dbfcdae591
commit c1896bb01d
2 changed files with 6 additions and 7 deletions

View File

@ -17,11 +17,11 @@ const levelList = ref([])
function getBreadcrumb() {
// only show routes with meta.title
let matched = route.matched.filter((item) => item.meta && item.meta.title)
// const first = matched[0]
const first = matched[0]
//
// if (!isDashboard(first)) {
// matched = [{ path: '/index', meta: { title: '' } }].concat(matched)
// }
if (!isDashboard(first)) {
matched = [{ path: '/index', meta: { title: '首页' } }].concat(matched)
}
levelList.value = matched.filter((item) => item.meta && item.meta.title && item.meta.breadcrumb !== false)
}

View File

@ -124,8 +124,6 @@ const topNav = computed({
if (!val) {
store.dispatch('app/toggleSideBarHide', false)
store.commit('SET_SIDEBAR_ROUTERS', store.state.permission.defaultRoutes)
// TODO topnav
setTimeout('window.location.reload()', 100)
}
},
})
@ -254,7 +252,8 @@ function saveSetting() {
showFooter: storeSettings.value.showFooter,
}
localStorage.setItem('layout-setting', JSON.stringify(layoutSetting))
setTimeout(proxy.$modal.closeLoading(), 500)
setTimeout(proxy.$modal.closeLoading(), 100)
setTimeout('window.location.reload()', 200)
}
function resetSetting() {
proxy.$modal.loading('正在清除设置缓存并刷新,请稍候...')