|
@@ -12,7 +12,17 @@
|
|
</el-col>
|
|
</el-col>
|
|
<el-col :sapn="24" class="main">
|
|
<el-col :sapn="24" class="main">
|
|
<div class="w_1270">
|
|
<div class="w_1270">
|
|
- 主体
|
|
+ <el-col :span="5" class="mainLeft">
|
|
|
|
+ <el-col :span="24" class="listMenu">
|
|
|
|
+ <listMenu></listMenu>
|
|
|
|
+ </el-col>
|
|
|
|
+ <el-col :span="24" class="listLogin">
|
|
|
|
+ <kuaisu></kuaisu>
|
|
|
|
+ </el-col>
|
|
|
|
+ </el-col>
|
|
|
|
+ <el-col :span="19" class="mainRight">
|
|
|
|
+ <mainRight :rightList="rightList"></mainRight>
|
|
|
|
+ </el-col>
|
|
</div>
|
|
</div>
|
|
</el-col>
|
|
</el-col>
|
|
<el-col :sapn="24" class="down">
|
|
<el-col :sapn="24" class="down">
|
|
@@ -26,16 +36,23 @@
|
|
import top from '@/layout/index/top.vue';
|
|
import top from '@/layout/index/top.vue';
|
|
import banner from '@/layout/index/banner.vue';
|
|
import banner from '@/layout/index/banner.vue';
|
|
import menuInfo from '@/layout/index/menuInfo.vue';
|
|
import menuInfo from '@/layout/index/menuInfo.vue';
|
|
|
|
+import listMenu from '@/layout/list/listMenu.vue';
|
|
|
|
+import kuaisu from '@/layout/index/kuaisu.vue';
|
|
|
|
+import mainRight from '@/layout/list/mainRight.vue';
|
|
import down from '@/layout/index/down.vue';
|
|
import down from '@/layout/index/down.vue';
|
|
export default {
|
|
export default {
|
|
name: 'list',
|
|
name: 'list',
|
|
props: {
|
|
props: {
|
|
info: null, //站点信息
|
|
info: null, //站点信息
|
|
|
|
+ rightList: null, //右侧列表
|
|
},
|
|
},
|
|
components: {
|
|
components: {
|
|
top, //头部
|
|
top, //头部
|
|
banner, //banner
|
|
banner, //banner
|
|
menuInfo, //菜单
|
|
menuInfo, //菜单
|
|
|
|
+ listMenu, //列表左侧导航
|
|
|
|
+ kuaisu, //快速通道
|
|
|
|
+ mainRight, //列表页右侧列表
|
|
down, //底部
|
|
down, //底部
|
|
},
|
|
},
|
|
data: () => ({}),
|
|
data: () => ({}),
|
|
@@ -64,9 +81,28 @@ export default {
|
|
border-bottom: 1px solid #ccc;
|
|
border-bottom: 1px solid #ccc;
|
|
}
|
|
}
|
|
.main {
|
|
.main {
|
|
- min-height: 1000px;
|
|
+ min-height: 680px;
|
|
background: #f6f6f6;
|
|
background: #f6f6f6;
|
|
}
|
|
}
|
|
|
|
+.mainLeft {
|
|
|
|
+ width: 246px;
|
|
|
|
+ min-height: 600px;
|
|
|
|
+ margin: 40px 18px 0 0;
|
|
|
|
+ border: 1px solid #e6e6e6;
|
|
|
|
+}
|
|
|
|
+.listMenu {
|
|
|
|
+ min-height: 56px;
|
|
|
|
+ background-color: #f9f9f9;
|
|
|
|
+ border-bottom: 1px solid #ccc;
|
|
|
|
+ margin: 0 0 10px 0;
|
|
|
|
+}
|
|
|
|
+.listLogin {
|
|
|
|
+ min-height: 300px;
|
|
|
|
+}
|
|
|
|
+.mainRight {
|
|
|
|
+ min-height: 600px;
|
|
|
|
+ margin: 40px 0 0 0;
|
|
|
|
+}
|
|
.down {
|
|
.down {
|
|
height: 135px;
|
|
height: 135px;
|
|
overflow: hidden;
|
|
overflow: hidden;
|