feat: 默认布局样式

This commit is contained in:
baiqi 2023-06-07 13:49:31 +08:00 committed by rubylliu
parent 7c49194e8c
commit ba520dc6cc
2 changed files with 11 additions and 2 deletions

View File

@ -159,7 +159,7 @@
background-color: var(--color-bg-3);
transition: padding 0.2s cubic-bezier(0.34, 0.69, 0.1, 1);
.arco-layout-content {
padding: 16px 0 0 16px;
padding: 16px 16px 0;
}
}
</style>

View File

@ -2,7 +2,7 @@
<router-view v-slot="{ Component, route }">
<transition name="fade" mode="out-in" appear>
<!-- transition内必须有且只有一个根元素不然会导致二级路由的组件无法渲染 -->
<div>
<div class="page-content">
<component :is="Component" v-if="route.meta.ignoreCache" :key="route.fullPath" />
<keep-alive v-else :include="cacheList">
<component :is="Component" :key="route.fullPath" />
@ -20,3 +20,12 @@
const cacheList = computed(() => tabBarStore.getCacheList);
</script>
<style lang="less" scoped>
.page-content {
overflow: hidden;
border-radius: 12px;
background: #ffffff;
box-shadow: 0 0 10px rgb(120 56 135 / 5%);
}
</style>