Merge remote-tracking branch 'origin/main' into feature/v1.2灵机空间-内容上传审核_rxd

# Conflicts:
#	pnpm-lock.yaml
#	src/components/_base/navbar/index.vue
#	src/components/text-over-tips/index.vue
#	src/layouts/Basic.vue
#	src/layouts/Page.vue
#	src/main.ts
#	src/router/constants.ts
#	src/router/index.ts
#	src/router/typeings.d.ts
#	src/utils/tools.ts
This commit is contained in:
rd
2025-08-14 15:06:46 +08:00
51 changed files with 5928 additions and 152 deletions

View File

@ -98,7 +98,7 @@ provide('toggleDrawerMenu', () => {
<a-layout class="layout-content" :style="paddingStyle">
<base-tab-bar v-if="appStore.tabBar" />
<a-layout-content class="px-5 py-5">
<base-breadcrumb />
<!-- <base-breadcrumb /> -->
<layout-page />
</a-layout-content>
</a-layout>
@ -110,15 +110,11 @@ provide('toggleDrawerMenu', () => {
<style scoped lang="scss">
$layout-max-width: 1100px;
.layout {
// width: 100%;
// height: 100%;
}
.layout-navbar {
position: fixed;
top: 0;
left: 0;
z-index: 100;
z-index: 1000;
width: 100%;
height: $navbar-height;
}
@ -169,7 +165,7 @@ $layout-max-width: 1100px;
min-width: 1366px;
height: 100%;
overflow-y: hidden;
background-color: var(--color-fill-2);
background-color: $color-background;
transition: padding 0.2s cubic-bezier(0.34, 0.69, 0.1, 1);
}
</style>

View File

@ -8,9 +8,7 @@ const route = useRoute();
const routerKey = computed(() => {
return route.path + Math.random();
});
const showFooter = computed(() => {
return !(route.meta && route.meta.hideFooter);
});
const hideFooter = computed(() => route.meta?.hideFooter);
/*** - end */
</script>
@ -22,7 +20,7 @@ const showFooter = computed(() => {
<component :is="Component" :key="route.fullPath" />
</keep-alive>
</transition>
<view class="footer" v-if="showFooter">
<view class="footer" v-if="!hideFooter">
<view>闽公网安备 352018502850842 闽ICP备20250520582号 © 2025小题科技All Rights Reserved.</view>
<view>* 数据通过公开渠道获取灵机进行统计分析</view>
</view>