feat: 内容稿件列表、整理文件目录结构

This commit is contained in:
rd
2025-07-29 12:00:20 +08:00
parent 6513fcf2ed
commit 4e10e1db04
29 changed files with 730 additions and 343 deletions

View File

@ -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;

View File

@ -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>