123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140 |
- <template>
- <div id="shuju">
- <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="16" class="leftcont">
- <el-col :span="5" class="fenlei">分类</el-col>
- <el-col :span="19" class="between">数据展示</el-col>
- <el-col :span="24" class="gonggao">通知公告</el-col>
- </el-col>
- <el-col class="rightCont">
- <el-col :span="24" class="tongzhi">
- 通知公告
- </el-col>
- <el-col :span="24" class="shangbao">
- 上报通知
- </el-col>
- </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: 'shuju',
- 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: 700px;
- overflow: hidden;
- margin: 10px 0;
- }
- .leftcont {
- height: 700px;
- overflow: hidden;
- margin: 0 10px 0 0;
- }
- .leftcont .rightcont {
- width: 390px;
- height: 350px;
- overflow: hidden;
- background: #fff;
- }
- .leftcont .fenlei {
- width: 240px;
- height: 420px;
- margin: 0 10px 10px 0;
- background-color: #fff;
- }
- .leftcont .between {
- width: 550px;
- background-color: #fff;
- height: 420px;
- }
- .leftcont .gonggao {
- width: 800px;
- height: 270px;
- background-color: #fff;
- }
- .rightCont {
- width: 390px;
- height: 700px;
- overflow: hidden;
- }
- .rightCont .tongzhi {
- height: 350px;
- overflow: hidden;
- background-color: #fff;
- margin: 0 0 10px 0;
- }
- .rightCont .shangbao {
- height: 350px;
- overflow: hidden;
- background-color: #fff;
- }
- .foot {
- float: left;
- width: 100%;
- height: 120px;
- overflow: hidden;
- }
- </style>
|