|
@@ -43,6 +43,20 @@
|
|
|
</el-row>
|
|
|
</div>
|
|
|
</el-col>
|
|
|
+ <el-col :span="24" class="mains" style="height:auto;">
|
|
|
+ <div class="w_1200">
|
|
|
+ <el-col :span="24" class="link">
|
|
|
+ <iconList :list="iconList"> </iconList>
|
|
|
+ </el-col>
|
|
|
+ </div>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="24" class="mains" style="height:auto;">
|
|
|
+ <div class="w_1200">
|
|
|
+ <el-col :span="24" class="link">
|
|
|
+ <links title="友情链接" :list="linkList"> </links>
|
|
|
+ </el-col>
|
|
|
+ </div>
|
|
|
+ </el-col>
|
|
|
<el-col :span="24" class="down">
|
|
|
<footinfo :topInfo="topInfo"></footinfo>
|
|
|
</el-col>
|
|
@@ -60,6 +74,8 @@ import chengguo from '../../layout/index/chengguo.vue';
|
|
|
import footinfo from '../../layout/index/foot.vue';
|
|
|
import infoList from '../../layout/index/infoList.vue';
|
|
|
import tabsList from '../../layout/index/tabsList.vue';
|
|
|
+import links from '../../layout/index/link.vue';
|
|
|
+import iconList from '../../layout/index/iconList.vue';
|
|
|
export default {
|
|
|
name: 'index',
|
|
|
props: {
|
|
@@ -70,6 +86,8 @@ export default {
|
|
|
chengguolist: null, //成果展示
|
|
|
partyList: null, //党建信息
|
|
|
tabsList: null, //标签页列表
|
|
|
+ linkList:null, //友情链接列表
|
|
|
+ iconList: null, //图标链接列表
|
|
|
footlist: null,
|
|
|
},
|
|
|
components: {
|
|
@@ -82,6 +100,8 @@ export default {
|
|
|
footinfo,
|
|
|
infoList,
|
|
|
tabsList,
|
|
|
+ links,
|
|
|
+ iconList,
|
|
|
},
|
|
|
data: () => ({}),
|
|
|
created() { },
|
|
@@ -147,4 +167,7 @@ export default {
|
|
|
overflow: hidden;
|
|
|
background: #fff;
|
|
|
}
|
|
|
+.link{
|
|
|
+ width:100%;
|
|
|
+}
|
|
|
</style>
|