优化系统设置
This commit is contained in:
parent
dbfcdae591
commit
c1896bb01d
@ -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)
|
||||
}
|
||||
|
||||
@ -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('正在清除设置缓存并刷新,请稍候...')
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user