|
@@ -0,0 +1,114 @@
|
|
|
+<template>
|
|
|
+ <div id="more">
|
|
|
+ <el-row>
|
|
|
+ <div class="w_1200">
|
|
|
+ <el-col :span="24" class="top">
|
|
|
+ <top :foot="foot"></top>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="24" class="nav">
|
|
|
+ <native></native>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="24" class="main">
|
|
|
+ <el-col :span="4" class="mainLeft">
|
|
|
+ <biaoqian :biaoQian="biaoQian"></biaoqian>
|
|
|
+ <el-col :span="24" class="diaocha">
|
|
|
+ <diaocha></diaocha>
|
|
|
+ </el-col>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="19" class="listRight">
|
|
|
+ <listRight :title1="title1" :listRight="listRight"></listRight>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="19" class="tubiao">
|
|
|
+ <tubiao :tuBiao="tuBiao"></tubiao>
|
|
|
+ </el-col>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="24" class="foot">
|
|
|
+ <foot :foot="foot"></foot>
|
|
|
+ </el-col>
|
|
|
+ </div>
|
|
|
+ </el-row>
|
|
|
+ </div>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script>
|
|
|
+import top from '../../layout/altai/index/top.vue';
|
|
|
+import native from '../../layout/altai/index/native.vue';
|
|
|
+import biaoqian from '../../layout/altai/detail/biaoqian.vue';
|
|
|
+import diaocha from '../../layout/altai/detail/diaocha.vue';
|
|
|
+import listRight from '../../layout/altai/more/listRight.vue';
|
|
|
+import tubiao from '../../layout/altai/more/tubiao.vue';
|
|
|
+import foot from '../../layout/altai/index/foot.vue';
|
|
|
+export default {
|
|
|
+ name: 'more',
|
|
|
+ props: {
|
|
|
+ biaoQian: null,
|
|
|
+ title1:null,
|
|
|
+ listRight:null,
|
|
|
+ tuBiao:null,
|
|
|
+ foot: null,//头部信息+底部信息
|
|
|
+ },
|
|
|
+ components: {
|
|
|
+ top,//头部
|
|
|
+ native,//导航
|
|
|
+ biaoqian,//标签
|
|
|
+ diaocha,//网上调查
|
|
|
+ listRight,//右侧列表
|
|
|
+ tubiao,//图标链接
|
|
|
+ foot,
|
|
|
+ },
|
|
|
+ data: () => ({}),
|
|
|
+ created() {},
|
|
|
+ computed: {},
|
|
|
+ methods: {},
|
|
|
+};
|
|
|
+</script>
|
|
|
+
|
|
|
+<style lang="less" scoped>
|
|
|
+.w_1200 {
|
|
|
+ width: 1200px;
|
|
|
+ margin: 0 auto;
|
|
|
+}
|
|
|
+.top {
|
|
|
+ background-color: rgba(0, 0, 0, 0);
|
|
|
+ height: 100px;
|
|
|
+ overflow: hidden;
|
|
|
+ color: #f2f5fa;
|
|
|
+}
|
|
|
+.nav {
|
|
|
+ height: 50px;
|
|
|
+ overflow: hidden;
|
|
|
+ background-color: rgba(0, 0, 0, 0);
|
|
|
+}
|
|
|
+.main {
|
|
|
+ margin: 10px 0 0 0;
|
|
|
+}
|
|
|
+.mainLeft {
|
|
|
+ width: 240px;
|
|
|
+}
|
|
|
+.diaocha {
|
|
|
+ height: 433px;
|
|
|
+ background-color: #ffffff;
|
|
|
+ margin: 10px 0 0 0;
|
|
|
+ font-size: 22px;
|
|
|
+ text-align: center;
|
|
|
+}
|
|
|
+.listRight {
|
|
|
+ width: 950px;
|
|
|
+ height: 616px;
|
|
|
+ background-color: #ffffff;
|
|
|
+ margin: 0 0 0 10px;
|
|
|
+}
|
|
|
+.tubiao {
|
|
|
+ width: 950px;
|
|
|
+ height: 180px;
|
|
|
+ background-color: #ffffff;
|
|
|
+ margin: 10px 0 0 10px;
|
|
|
+}
|
|
|
+.foot {
|
|
|
+ overflow: hidden;
|
|
|
+ margin-top: 10px;
|
|
|
+ height: 120px;
|
|
|
+ color: #858f9b;
|
|
|
+ background-color: rgba(0, 0, 0, 0.4);
|
|
|
+}
|
|
|
+</style>
|