You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

38 lines
779 B

<template>
<div class="system-home-page-style">
<PageTop/>
<BannerCarousel/>
<FixedNavigation/>
<BottomInfo/>
</div>
</template>
<script>
/*
* 系统首页
* */
import PageTop from './pageTop.vue';
import BannerCarousel from './bannerCarousel.vue';
import FixedNavigation from './fixedNavigation.vue';
import BottomInfo from './bottomInfo.vue';
export default{
data(){
return {}
},
components:{
PageTop,
BannerCarousel,
FixedNavigation,
BottomInfo
}
}
</script>
<style scoped lang="scss">
.system-home-page-style{
width: 100%;
display: flex;
flex-direction: column;
}
</style>