|
@@ -19,14 +19,16 @@
|
|
|
<el-col :span="16" class="leftcont">
|
|
|
<el-col :span="5" class="fenlei"> <fenlei></fenlei></el-col>
|
|
|
<el-col :span="19" class="between"><zhanshi :imageList="imageList"></zhanshi></el-col>
|
|
|
- <el-col :span="24" class="gonggao">通知公告</el-col>
|
|
|
+ <el-col :span="24" class="gonggao">
|
|
|
+ <gonggao :gonggaoList="gonggaoList"></gonggao>
|
|
|
+ </el-col>
|
|
|
</el-col>
|
|
|
<el-col class="rightCont">
|
|
|
<el-col :span="24" class="tongzhi">
|
|
|
- 通知公告
|
|
|
+ <tongzhi :tongzhiList="tongzhiList"></tongzhi>
|
|
|
</el-col>
|
|
|
<el-col :span="24" class="shangbao">
|
|
|
- 上报通知
|
|
|
+ <shangbao :shangbaoList="shangbaoList"></shangbao>
|
|
|
</el-col>
|
|
|
</el-col>
|
|
|
</div>
|
|
@@ -47,11 +49,18 @@ import menuInfo from '@/layout/index/menuInfo.vue';
|
|
|
import foot from '@/layout/index/foot.vue';
|
|
|
import fenlei from '@/layout/shuju/fenlei.vue';
|
|
|
import zhanshi from '@/layout/shuju/zhanshi.vue';
|
|
|
+import gonggao from '@/layout/shuju/gonggao.vue';
|
|
|
+import shangbao from '@/layout/shuju/shangbao.vue';
|
|
|
+import tongzhi from '@/layout/shuju/tongzhi.vue';
|
|
|
+
|
|
|
export default {
|
|
|
name: 'shuju',
|
|
|
props: {
|
|
|
info: null, //站点信息
|
|
|
- imageList: null,
|
|
|
+ imageList: null, //数据展示
|
|
|
+ gonggaoList: null, //底部通知公告
|
|
|
+ shangbaoList: null, //上报通知
|
|
|
+ tongzhiList: null, //右侧通知公告
|
|
|
},
|
|
|
components: {
|
|
|
top, //头部
|
|
@@ -60,6 +69,9 @@ export default {
|
|
|
foot, //底部
|
|
|
fenlei, //左侧分类
|
|
|
zhanshi, //数据展示
|
|
|
+ gonggao, //底部通知公告
|
|
|
+ shangbao, //上报通知
|
|
|
+ tongzhi, //右侧通知公告
|
|
|
},
|
|
|
data: () => ({}),
|
|
|
created() {},
|