home主页和AiTools页

This commit is contained in:
2025-10-10 10:41:39 +08:00
parent c37c97e97e
commit 672a2f4c90
219 changed files with 20979 additions and 0 deletions

46
layouts/default.vue Normal file
View File

@ -0,0 +1,46 @@
<template>
<!-- 上下布局 -->
<div id="default-layout">
<Header></Header>
<div id="home-container">
<Nuxt />
</div>
<Footer></Footer>
<el-backtop target="#default-layout" :visibility-height="500" class="custom-backtop">
<div class="backtop-content">
<img src="/logo/back-top.png" />
</div>
</el-backtop>
</div>
</template>
<script>
export default {
}
</script>
<style lang="scss" scoped>
#default-layout {
position: relative;
@include flex-column;
overflow: auto;
}
.custom-backtop {
position: fixed;
right: 15% !important;
bottom: 30% !important;
z-index: 999;
transition: transform 0.3s;
}
#home-container {
width: 100%;
// min-height: 100vh;
background-color: $background-color;
}
</style>