2022-10-03 16:33:12 +08:00

70 lines
1.8 KiB
Vue

<template>
<nut-navbar :left-show="false" :title="$t($route.meta.title)" />
<div class="main-page">
<!-- <keep-alive>
<router-view v-if="$route.meta.keepAlive" :key="$route.path" />
</keep-alive>
<router-view v-if="!$route.meta.keepAlive" :key="$route.path" /> -->
<RouterView v-slot="{ Component }" v-if="$route.meta.keepAlive">
<keep-alive>
<component :is="Component" :key="$route.path" />
</keep-alive>
</RouterView>
<RouterView v-if="!$route.meta.keepAlive" :key="$route.path" />
</div>
<nut-tabbar unactive-color="#364636" active-color="#1989fa" @tab-switch="tabSwitch" bottom v-model:visible="activeTab">
<nut-tabbar-item v-for="item in tabItem" :key="item.key" :tab-title="$t(`tabbar.${item.key}`)" :icon="item.icon" />
</nut-tabbar>
</template>
<script lang="ts" setup name="BasicLayoutPage">
import { useRouter } from 'vue-router';
const tabItem = [
{ key: 'home', icon: 'home' },
{ key: 'list', icon: 'horizontal' },
{ key: 'member', icon: 'my' },
{ key: 'demo', icon: 'location' },
];
const router = useRouter();
const activeTab = ref(0);
onMounted(() => {
activeTab.value = tabItem.findIndex((item) => item.key === router.currentRoute.value.path.replace('/', ''));
});
const tabSwitch = (_item, index) => {
switch (index) {
case 0:
router.push('/home');
break;
case 1:
router.push('/list');
break;
case 2:
router.push('/member');
break;
case 3:
router.push('/demo');
}
activeTab.value = index;
};
</script>
<style scoped lang="scss">
.nut-navbar {
margin-bottom: 0;
}
.main-page {
box-sizing: border-box;
padding: 40px;
height: calc(100vh - 200px);
overflow-y: scroll;
overflow-x: hidden;
}
</style>