123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145 |
- <template>
- <div id="index">
- <el-row>
- <div class="w_1200">
- <el-col :span="24" class="top">
- <top></top>
- </el-col>
- <el-col :span="24" class="nav">
- <native></native>
- </el-col>
- <el-col :span="24" class="main">
- <el-col :span="12" class="ditu">
- <ditu :mapUrl="mapUrl"></ditu>
- </el-col>
- <el-col :span="12" class="zixun">
- <zixun :ziXunList="ziXunList"></zixun>
- </el-col>
- <el-col :span="8" class="notice">
- <notice :noticeList="noticeList"></notice>
- </el-col>
- <el-col :span="8" class="law">
- <law :lawList="lawList"></law>
- </el-col>
- <el-col :span="8" class="keji">
- <keji :keJiList="keJiList"></keji>
- </el-col>
- <el-col :span="24" class="lianjie">
- <lianjie :linkList="linkList"></lianjie>
- </el-col>
- </el-col>
- <el-col :span="24" class="foot">
- <foot :foot="foot"></foot>
- </el-col>
- </div>
- </el-row>
- </div>
- </template>
- <script>
- import top from '../../layout/altai/index/top.vue';
- import ditu from '../../layout/altai/index/ditu.vue';
- import zixun from '../../layout/altai/index/zixun.vue';
- import notice from '../../layout/altai/index/notice.vue';
- import law from '../../layout/altai/index/law.vue';
- import keji from '../../layout/altai/index/keji.vue';
- import lianjie from '../../layout/altai/index/lianjie.vue';
- import foot from '../../layout/altai/index/foot.vue';
- import native from '../../layout/altai/index/native.vue';
- export default {
- name: 'index',
- props: {
- mapUrl: null,
- ziXunList:null,
- noticeList:null,
- lawList:null,
- keJiList:null,
- linkList: null,
- foot:null,
- },
- components: {
- top,//头部
- ditu,
- zixun,
- notice,
- law,
- keji,
- lianjie,
- foot,
- native,//导航
- },
- data: () => ({}),
- created() {},
- computed: {},
- methods: {},
- };
- </script>
- <style lang="less" scoped>
- .w_1200 {
- width: 1200px;
- margin: 0 auto;
- }
- .top {
- background-color: rgba(0, 0, 0, 0);
- height: 100px;
- overflow: hidden;
- color: #f2f5fa;
- }
- .nav {
- height: 50px;
- overflow: hidden;
- background-color: rgba(0, 0, 0, 0);
- }
- .ditu {
- margin-top: 10px;
- background-color: #ffffff;
- overflow: hidden;
- height: 400px;
- width: 587px;
- margin-right: 10px;
- }
- .zixun {
- margin-top: 10px;
- overflow: hidden;
- height: 400px;
- width: 603px;
- background-color: #ffffff;
- }
- .notice {
- overflow: hidden;
- margin-top: 10px;
- margin-right: 10px;
- width: 394px;
- height: 331px;
- background-color: #ffffff;
- }
- .law {
- overflow: hidden;
- margin-top: 10px;
- margin-right: 10px;
- width: 394px;
- height: 331px;
- background-color: #ffffff;
- }
- .keji {
- overflow: hidden;
- margin-top: 10px;
- width: 392px;
- height: 331px;
- background-color: #ffffff;
- }
- .lianjie {
- overflow: hidden;
- margin-top: 10px;
- height: 100px;
- background-color: #ffffff;
- }
- .foot {
- overflow: hidden;
- margin-top: 10px;
- height: 120px;
- color: #858f9b;
- background-color: rgba(0, 0, 0, 0.4);
- }
- </style>
|