123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165 |
- <template>
- <div id="government">
- <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">
-
- </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';
- import photoNews from '@/layout/government/photoNews.vue';
- import news from '@/layout/government/news.vue';
- import notice from '@/layout/government/notice.vue';
- import zhengwu from '@/layout/government/zhengwu.vue';
- import gongzhong from '@/layout/government/gongzhong.vue';
- import linkInfo from '@/layout/index/linkInfo.vue';
- export default {
- name: 'government',
- props: {
- info: null,
- photoNews: null,
- chuangxinList: null,
- guoneiList: null,
- zhengwuList: null,
- meitiList: null,
- tongzhiList: null,
- zhengwu: null,
- gongzhongList: null,
- linkList: null,
- },
- components: {
- top,
- 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: 1080px;
- overflow: hidden;
- margin: 10px 0;
- }
- .main .phontoNews {
- float: left;
- width: 590px;
- height: 400px;
- overflow: hidden;
- margin: 0 10px 10px 0;
- background-color: #fff;
- }
- .main .news {
- float: left;
- width: 600px;
- height: 400px;
- margin: 0 0 10px 0;
- overflow: hidden;
- background-color: #fff;
- }
- .main .notice {
- float: left;
- width: 390px;
- height: 320px;
- margin: 0 10px 10px 0;
- overflow: hidden;
- background-color: #fff;
- }
- .main .zhengwu {
- float: left;
- width: 800px;
- height: 320px;
- margin: 0 0 10px 0;
- overflow: hidden;
- background-color: #fff;
- }
- .main .gongzhong {
- height: 240px;
- margin: 0 0 10px 0;
- background-color: #fff;
- }
- .main .link {
- float: left;
- width: 100%;
- height: 100px;
- overflow: hidden;
- background-color: #fff;
- }
- .foot {
- float: left;
- width: 100%;
- height: 120px;
- overflow: hidden;
- }
- </style>
|