|
@@ -14,7 +14,7 @@
|
|
<el-col :span="24" class="main">
|
|
<el-col :span="24" class="main">
|
|
<div class="w_1200">
|
|
<div class="w_1200">
|
|
<el-col :span="6" class="notice">
|
|
<el-col :span="6" class="notice">
|
|
- <news title="通知公告"></news>
|
|
|
|
|
|
+ <notice :noticelist="noticelist"></notice>
|
|
</el-col>
|
|
</el-col>
|
|
<el-col :span="17" class="news">
|
|
<el-col :span="17" class="news">
|
|
<news :newslist="newslist"></news>
|
|
<news :newslist="newslist"></news>
|
|
@@ -24,7 +24,7 @@
|
|
<el-col :span="24" class="mains">
|
|
<el-col :span="24" class="mains">
|
|
<div class="w_1200">
|
|
<div class="w_1200">
|
|
<el-col :span="6" class="mingshi">
|
|
<el-col :span="6" class="mingshi">
|
|
- <news title="计算明示"></news>
|
|
|
|
|
|
+ <mingshi :mingshilist="mingshilist"></mingshi>
|
|
</el-col>
|
|
</el-col>
|
|
<el-col :span="17" class="chengguo">
|
|
<el-col :span="17" class="chengguo">
|
|
<chengguo :chengguolist="chengguolist"></chengguo>
|
|
<chengguo :chengguolist="chengguolist"></chengguo>
|
|
@@ -44,20 +44,26 @@
|
|
import top from '../../layout/index/top.vue';
|
|
import top from '../../layout/index/top.vue';
|
|
import native from '../../layout/index/native.vue';
|
|
import native from '../../layout/index/native.vue';
|
|
import news from '../../layout/index/news.vue';
|
|
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 chengguo from '../../layout/index/chengguo.vue';
|
|
import footinfo from '../../layout/index/foot.vue';
|
|
import footinfo from '../../layout/index/foot.vue';
|
|
export default {
|
|
export default {
|
|
name: 'index',
|
|
name: 'index',
|
|
props: {
|
|
props: {
|
|
logolist:null,
|
|
logolist:null,
|
|
|
|
+ noticelist:null,
|
|
newslist:null,
|
|
newslist:null,
|
|
|
|
+ mingshilist:null,
|
|
chengguolist:null,
|
|
chengguolist:null,
|
|
content:null,
|
|
content:null,
|
|
},
|
|
},
|
|
components: {
|
|
components: {
|
|
top,
|
|
top,
|
|
native,
|
|
native,
|
|
|
|
+ notice,
|
|
news,
|
|
news,
|
|
|
|
+ mingshi,
|
|
chengguo,
|
|
chengguo,
|
|
footinfo,
|
|
footinfo,
|
|
},
|
|
},
|
|
@@ -74,13 +80,11 @@ export default {
|
|
margin: 0 auto;
|
|
margin: 0 auto;
|
|
}
|
|
}
|
|
.top {
|
|
.top {
|
|
- height: 100px;
|
|
|
|
- border: 1px solid #ccc;
|
|
|
|
|
|
+ height: 150px;
|
|
}
|
|
}
|
|
.menu {
|
|
.menu {
|
|
margin-bottom: 20px;
|
|
margin-bottom: 20px;
|
|
height: 40px;
|
|
height: 40px;
|
|
- border: 1px solid #ccc;
|
|
|
|
}
|
|
}
|
|
.main {
|
|
.main {
|
|
margin-bottom: 20px;
|
|
margin-bottom: 20px;
|