feat: 内容稿件列表、整理文件目录结构
This commit is contained in:
@ -108,7 +108,6 @@ provide('toggleDrawerMenu', () => {
|
||||
</template>
|
||||
|
||||
<style scoped lang="scss">
|
||||
$nav-size-height: 72px;
|
||||
$layout-max-width: 1100px;
|
||||
|
||||
.layout {
|
||||
@ -121,7 +120,7 @@ $layout-max-width: 1100px;
|
||||
left: 0;
|
||||
z-index: 100;
|
||||
width: 100%;
|
||||
height: $nav-size-height;
|
||||
height: $navbar-height;
|
||||
}
|
||||
.layout-sider {
|
||||
position: fixed;
|
||||
|
||||
@ -8,6 +8,9 @@ const route = useRoute();
|
||||
const routerKey = computed(() => {
|
||||
return route.path + Math.random();
|
||||
});
|
||||
const showFooter = computed(() => {
|
||||
return !(route.meta && route.meta.hideFooter);
|
||||
});
|
||||
/*** - end */
|
||||
</script>
|
||||
|
||||
@ -19,7 +22,7 @@ const routerKey = computed(() => {
|
||||
<component :is="Component" :key="route.fullPath" />
|
||||
</keep-alive>
|
||||
</transition>
|
||||
<view class="footer">
|
||||
<view class="footer" v-if="showFooter">
|
||||
<view>闽公网安备 352018502850842号 闽ICP备20250520582号 © 2025小题科技,All Rights Reserved.</view>
|
||||
<view>* 数据通过公开渠道获取,灵机进行统计分析</view>
|
||||
</view>
|
||||
|
||||
Reference in New Issue
Block a user