Files
Aida_Purchaser_Front/src/views/home/index.vue

45 lines
925 B
Vue
Raw Normal View History

2026-04-20 14:06:02 +08:00
<template>
2026-04-20 14:28:13 +08:00
<div class="home-index">
2026-04-20 17:04:57 +08:00
<section-index />
2026-05-11 13:56:10 +08:00
<section-designer />
2026-05-27 09:29:47 +08:00
<section-aida />
2026-04-20 17:04:57 +08:00
<section-digital-items1 />
<section-digital-items2 />
<section-footer />
2026-04-20 14:28:13 +08:00
</div>
2026-04-20 14:06:02 +08:00
</template>
2026-04-20 14:14:31 +08:00
<script setup lang="ts">
import { computed } from 'vue'
2026-04-20 17:04:57 +08:00
import SectionIndex from './section-index.vue'
2026-05-11 13:56:10 +08:00
import SectionDesigner from './section-designer.vue'
2026-05-27 09:29:47 +08:00
import SectionAida from './section-aida.vue'
2026-04-20 17:04:57 +08:00
import SectionDigitalItems1 from './section-digital-items1.vue'
import SectionDigitalItems2 from './section-digital-items2.vue'
import SectionFooter from './section-footer.vue'
2026-04-20 14:14:31 +08:00
</script>
<style lang="less">
.home-index {
2026-04-20 14:28:13 +08:00
width: 100%;
height: 100%;
overflow: hidden;
overflow-y: auto;
> section {
width: 100%;
height: auto;
}
2026-04-20 17:04:57 +08:00
> section.bgw {
position: relative;
2026-04-20 14:28:13 +08:00
> .bg {
width: 100%;
height: auto;
2026-04-20 17:04:57 +08:00
display: block;
}
> .content {
position: absolute;
2026-04-20 14:28:13 +08:00
}
}
2026-04-20 14:02:55 +08:00
}
2026-04-20 14:14:31 +08:00
</style>