|
@@ -16,10 +16,14 @@
|
|
|
</el-col>
|
|
|
<el-col :span="24" class="main">
|
|
|
<div class="w_1200">
|
|
|
- <el-col :span="8" class="video">视频会议中心</el-col>
|
|
|
- <el-col :span="16" class="zhuanti">专题研讨</el-col>
|
|
|
+ <el-col :span="8" class="video">
|
|
|
+ <videoInfo :videoList="videoList"></videoInfo>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="16" class="zhuanti">
|
|
|
+ <zhuanti :zhuantiList="zhuantiList"></zhuanti>
|
|
|
+ </el-col>
|
|
|
<el-col :span="24" class="changyong">
|
|
|
- 常用服务
|
|
|
+ <changyong :changyongList="changyongList"></changyong>
|
|
|
</el-col>
|
|
|
</div>
|
|
|
</el-col>
|
|
@@ -36,16 +40,25 @@
|
|
|
import top from '@/layout/index/top.vue';
|
|
|
import logo from '@/layout/index/logo.vue';
|
|
|
import menuInfo from '@/layout/index/menuInfo.vue';
|
|
|
+import videoInfo from '@/layout/service/video.vue';
|
|
|
+import zhuanti from '@/layout/service/zhuanti.vue';
|
|
|
+import changyong from '@/layout/service/changyong.vue';
|
|
|
import foot from '@/layout/index/foot.vue';
|
|
|
export default {
|
|
|
name: 'service',
|
|
|
props: {
|
|
|
info: null, //站点信息
|
|
|
+ videoList: null, //视频会议中心
|
|
|
+ zhuantiList: null, //专题研讨,技术问答,行业研究,科技培训
|
|
|
+ changyongList: null, //常用服务
|
|
|
},
|
|
|
components: {
|
|
|
top, //头部
|
|
|
logo, //logo
|
|
|
menuInfo, //导航
|
|
|
+ videoInfo, //视频会议中心
|
|
|
+ zhuanti, //专题研讨,技术问答,行业研究,科技培训
|
|
|
+ changyong, //常用服务
|
|
|
foot, //底部
|
|
|
},
|
|
|
data: () => ({}),
|