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.

62 lines
1.4 KiB

<template>
<div class="siteSetting-wrap">
1 month ago
<SetLeftMenu />
<!--:menuList="menuList" :activeFloor="activeFloor" :curIndex="curIndex" -->
<!-- 主内容区域 -->
<main class="main-content" ref="scrollContainer" id="main-content">
<!-- 面包屑 位置 -->
1 month ago
<PageTitle v-if="path !='/siteSetting/siteSem'" className="min-flex-right"/>
<router-view></router-view>
<Footer></Footer>
</main>
</div>
</template>
<script>
// import SiteBaseSetting from './SiteBaseSetting.vue';
import PageTitle from '@/components/PageTitle.vue';
import Footer from '@/components/Footer.vue';
import SetLeftMenu from '@/components/SetLeftMenu.vue'
export default {
// 站点设置
name: '',
props: [''],
components: {
PageTitle,
Footer,
SetLeftMenu,
// SiteBaseSetting
},
data() {
1 month ago
return {
1 month ago
path:''
1 month ago
}
},
mounted(){
1 month ago
this.path =this.$route.path;
console.log(this.$route.path,'090-9090');
// this.$refs.scrollContainer.scrollTo(0)
},
methods: {
}
}
</script>
<style scoped lang="scss">
.siteSetting-wrap {
display: flex;
height: 100%;
}
// .sidebar {
// width: 250px;
// background: #f5f5f5;
// padding: 20px;
// }
.main-content {
flex: 1;
padding: 12px;
overflow-y: auto;
}
</style>