|
@@ -26,27 +26,11 @@
|
|
|
<el-col :span="6" class="mingshi">
|
|
|
<mingshi></mingshi>
|
|
|
</el-col>
|
|
|
- <el-col :span="17" class="chengguo">
|
|
|
+ <el-col :span="11" class="chengguo">
|
|
|
<chengguo :chengguolist="chengguolist"></chengguo>
|
|
|
</el-col>
|
|
|
- </div>
|
|
|
- </el-col>
|
|
|
- <el-col :span="24" class="mains">
|
|
|
- <div class="w_1200">
|
|
|
- <el-row>
|
|
|
- <el-col :span="12" class="jishu">
|
|
|
- <tabsList :title="`技术问答`" :list="tabsList"></tabsList>
|
|
|
- </el-col>
|
|
|
- <el-col :span="11" :push="1" class="jishu">
|
|
|
- <infoList :title="`党建信息`" :list="partyList"></infoList>
|
|
|
- </el-col>
|
|
|
- </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 :span="6" class="fabu">
|
|
|
+ <fabu :fabuList="fabuList"></fabu>
|
|
|
</el-col>
|
|
|
</div>
|
|
|
</el-col>
|
|
@@ -71,6 +55,7 @@ import news from '../../layout/index/news.vue';
|
|
|
import notice from '../../layout/index/notice.vue';
|
|
|
import mingshi from '../../layout/index/mingshi.vue';
|
|
|
import chengguo from '../../layout/index/chengguo.vue';
|
|
|
+import fabu from '../../layout/index/fabu.vue';
|
|
|
import footinfo from '../../layout/index/foot.vue';
|
|
|
import infoList from '../../layout/index/infoList.vue';
|
|
|
import tabsList from '../../layout/index/tabsList.vue';
|
|
@@ -84,9 +69,10 @@ export default {
|
|
|
noticelist: null, //公告列表
|
|
|
newslist: null, //新闻列表
|
|
|
chengguolist: null, //成果展示
|
|
|
+ fabuList: null,//技术发布
|
|
|
partyList: null, //党建信息
|
|
|
tabsList: null, //标签页列表
|
|
|
- linkList:null, //友情链接列表
|
|
|
+ linkList: null, //友情链接列表
|
|
|
iconList: null, //图标链接列表
|
|
|
footlist: null,
|
|
|
},
|
|
@@ -97,11 +83,9 @@ export default {
|
|
|
news,
|
|
|
mingshi,
|
|
|
chengguo,
|
|
|
+ fabu,
|
|
|
footinfo,
|
|
|
- infoList,
|
|
|
- tabsList,
|
|
|
links,
|
|
|
- iconList,
|
|
|
},
|
|
|
data: () => ({}),
|
|
|
created() { },
|
|
@@ -149,25 +133,27 @@ export default {
|
|
|
overflow: hidden;
|
|
|
background-color: rgba(255, 255, 255, 0.8);
|
|
|
box-shadow: 0 0 2px #ccc;
|
|
|
+ margin: 0 20px 0 0;
|
|
|
}
|
|
|
.mains .chengguo {
|
|
|
- float: right;
|
|
|
- width: 880px;
|
|
|
+ float: left;
|
|
|
height: 400px;
|
|
|
background-color: rgba(255, 255, 255, 0.8);
|
|
|
box-shadow: 0 0 2px #ccc;
|
|
|
overflow: hidden;
|
|
|
}
|
|
|
-.down {
|
|
|
- min-height: 100px;
|
|
|
-}
|
|
|
-.jishu {
|
|
|
+.mains .fabu {
|
|
|
+ width: 310px;
|
|
|
height: 400px;
|
|
|
background-color: rgba(255, 255, 255, 0.8);
|
|
|
box-shadow: 0 0 2px #ccc;
|
|
|
overflow: hidden;
|
|
|
+ margin: 0 0 0 20px;
|
|
|
+}
|
|
|
+.down {
|
|
|
+ min-height: 100px;
|
|
|
}
|
|
|
-.link{
|
|
|
- width:100%;
|
|
|
+.link {
|
|
|
+ width: 100%;
|
|
|
}
|
|
|
</style>
|