|
@@ -0,0 +1,106 @@
|
|
|
+<template>
|
|
|
+ <div id="service">
|
|
|
+ <el-row>
|
|
|
+ <el-col :span="24" class="top">
|
|
|
+ <top></top>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="24" class="logo">
|
|
|
+ <div class="w_1200">
|
|
|
+ <logo :info="info"></logo>
|
|
|
+ </div>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="24" class="menu">
|
|
|
+ <div class="w_1200">
|
|
|
+ <menuInfo></menuInfo>
|
|
|
+ </div>
|
|
|
+ </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="24" class="changyong">
|
|
|
+ 常用服务
|
|
|
+ </el-col>
|
|
|
+ </div>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="24" class="foot">
|
|
|
+ <div class="w_1200">
|
|
|
+ <foot :info="info"></foot>
|
|
|
+ </div>
|
|
|
+ </el-col>
|
|
|
+ </el-row>
|
|
|
+ </div>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script>
|
|
|
+import top from '@/layout/index/top.vue';
|
|
|
+import logo from '@/layout/index/logo.vue';
|
|
|
+import menuInfo from '@/layout/index/menuInfo.vue';
|
|
|
+import foot from '@/layout/index/foot.vue';
|
|
|
+export default {
|
|
|
+ name: 'service',
|
|
|
+ props: {
|
|
|
+ info: null, //站点信息
|
|
|
+ },
|
|
|
+ components: {
|
|
|
+ top, //头部
|
|
|
+ logo, //logo
|
|
|
+ menuInfo, //导航
|
|
|
+ foot, //底部
|
|
|
+ },
|
|
|
+ data: () => ({}),
|
|
|
+ created() {},
|
|
|
+ computed: {},
|
|
|
+ methods: {},
|
|
|
+};
|
|
|
+</script>
|
|
|
+
|
|
|
+<style lang="less" scoped>
|
|
|
+.w_1200 {
|
|
|
+ width: 1200px;
|
|
|
+ margin: 0 auto;
|
|
|
+}
|
|
|
+.top {
|
|
|
+ height: 40px;
|
|
|
+ overflow: hidden;
|
|
|
+ background-color: rgba(11, 58, 125, 0.8);
|
|
|
+}
|
|
|
+.logo {
|
|
|
+ height: 200px;
|
|
|
+ overflow: hidden;
|
|
|
+}
|
|
|
+.menu {
|
|
|
+ height: 70px;
|
|
|
+ overflow: hidden;
|
|
|
+}
|
|
|
+.main {
|
|
|
+ height: 720px;
|
|
|
+ overflow: hidden;
|
|
|
+ margin: 10px 0;
|
|
|
+}
|
|
|
+.main .video {
|
|
|
+ width: 400px;
|
|
|
+ height: 300px;
|
|
|
+ overflow: hidden;
|
|
|
+ background-color: #fff;
|
|
|
+ margin: 0 10px 10px 0;
|
|
|
+}
|
|
|
+.main .zhuanti {
|
|
|
+ width: 790px;
|
|
|
+ height: 300px;
|
|
|
+ overflow: hidden;
|
|
|
+ background-color: #fff;
|
|
|
+ margin: 0 0 10px 0;
|
|
|
+}
|
|
|
+.main .changyong {
|
|
|
+ height: 410px;
|
|
|
+ overflow: hidden;
|
|
|
+ background-color: #fff;
|
|
|
+}
|
|
|
+.foot {
|
|
|
+ float: left;
|
|
|
+ width: 100%;
|
|
|
+ height: 120px;
|
|
|
+ overflow: hidden;
|
|
|
+}
|
|
|
+</style>
|