2025-05-23 00:50:08 +00:00
|
|
|
<script setup>
|
|
|
|
import customHeader from '@/components/customHeader/index.vue'
|
|
|
|
import customFooter from '@/components/customFooter/index.vue'
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
2025-05-23 02:39:23 +00:00
|
|
|
<div class="flex flex-col h-screen">
|
|
|
|
<customHeader></customHeader>
|
2025-05-23 06:46:38 +00:00
|
|
|
<div
|
|
|
|
class="bg-[url('@/assets/image/bg-pc.png')] bg-cover bg-center flex-1 overflow-auto"
|
|
|
|
>
|
|
|
|
<router-view />
|
|
|
|
</div>
|
|
|
|
<customFooter></customFooter>
|
2025-05-23 02:39:23 +00:00
|
|
|
</div>
|
2025-05-23 00:50:08 +00:00
|
|
|
</template>
|
|
|
|
|
2025-05-23 06:46:38 +00:00
|
|
|
<style scoped lang="scss"></style>
|