mirror of
https://github.com/Tencent/tdesign-vue-next-starter.git
synced 2024-11-10 11:28:24 +08:00
feat: optimize tab router
This commit is contained in:
parent
d01b7b39ca
commit
9256aecc51
|
@ -1,4 +1,4 @@
|
|||
import { defineComponent, computed, nextTick, onMounted, watch } from 'vue';
|
||||
import { defineComponent, computed, nextTick, onMounted, watch, onBeforeUnmount } from 'vue';
|
||||
import { storeToRefs } from 'pinia';
|
||||
import { useRoute, useRouter } from 'vue-router';
|
||||
import { usePermissionStore, useSettingStore, useTabsRouterStore } from '@/store';
|
||||
|
@ -37,7 +37,6 @@ export default defineComponent({
|
|||
const headerMenu = computed(() => {
|
||||
if (settingStore.layout === 'mix') {
|
||||
if (settingStore.splitMenu) {
|
||||
console.log(menuRouters);
|
||||
return menuRouters.value.map((menu) => ({
|
||||
...menu,
|
||||
children: [],
|
||||
|
@ -70,10 +69,28 @@ export default defineComponent({
|
|||
tabsRouterStore.appendTabRouterList({ path, title: title as string, name, isAlive: true });
|
||||
};
|
||||
|
||||
const getTabRouterListCache = () => {
|
||||
tabsRouterStore.initTabRouterList(JSON.parse(localStorage.getItem('tabRouterList')));
|
||||
};
|
||||
const setTabRouterListCache = () => {
|
||||
const { tabRouters } = tabsRouterStore;
|
||||
localStorage.setItem('tabRouterList', JSON.stringify(tabRouters));
|
||||
};
|
||||
|
||||
onMounted(() => {
|
||||
appendNewRoute();
|
||||
});
|
||||
|
||||
// 如果不需要持久化标签页可以注释掉以下的 onMounted 和 onBeforeUnmount 的内容
|
||||
onMounted(() => {
|
||||
if (localStorage.getItem('tabRouterList')) getTabRouterListCache();
|
||||
window.addEventListener('beforeunload', setTabRouterListCache);
|
||||
});
|
||||
|
||||
onBeforeUnmount(() => {
|
||||
window.removeEventListener('beforeunload', setTabRouterListCache);
|
||||
});
|
||||
|
||||
watch(
|
||||
() => route.path,
|
||||
() => {
|
||||
|
@ -159,7 +176,7 @@ export default defineComponent({
|
|||
class={`${prefix}-layout-tabs-nav`}
|
||||
value={route.path}
|
||||
onChange={handleChangeCurrentTab}
|
||||
style={{ maxWidth: '100%', position: 'fixed', overflow: 'visible' }}
|
||||
style={{ width: '100%', position: 'sticky', top: 0 }}
|
||||
onRemove={handleRemove}
|
||||
>
|
||||
{tabRouters.map((router: TRouterInfo, idx: number) => (
|
||||
|
|
|
@ -43,6 +43,9 @@ export const useTabsRouterStore = defineStore('tabsRouter', {
|
|||
removeTabRouterList() {
|
||||
this.tabRouterList = [];
|
||||
},
|
||||
initTabRouterList(newRoutes: TRouterInfo[]) {
|
||||
this.tabRouterList = newRoutes;
|
||||
},
|
||||
},
|
||||
});
|
||||
|
||||
|
|
|
@ -70,7 +70,7 @@
|
|||
z-index: 999;
|
||||
}
|
||||
&-tabs-nav + .@{prefix}-content-layout {
|
||||
padding-top: 48px + @spacer-3;
|
||||
padding-top: @spacer-3;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user