123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- <template>
- <div id="quietDetail">
- <el-row>
- <el-col :sapn="24" class="top">
- <div class="w_1200">
- <top :info="info"></top>
- </div>
- </el-col>
- <el-col :sapn="24" class="banner">
- <banner :info="info"></banner>
- </el-col>
- <el-col :span="24" class="menu">
- <menuInfo :menuList="menuList" :backColor="backColor"></menuInfo>
- </el-col>
- <el-col :span="24" class="main">
- <div class="w_1200">
- <jiuyeInfo></jiuyeInfo>
- </div>
- </el-col>
- <el-col :span="24" class="foot">
- <down :info="info" :backColor="backColor"></down>
- </el-col>
- </el-row>
- </div>
- </template>
- <script>
- import top from '@/layout/index/top.vue';
- import banner from '@/layout/index/banner.vue';
- import menuInfo from '@/layout/index/menuInfo.vue';
- import jiuyeInfo from '@/layout/quiet/jiuyeInfo.vue';
- import down from '@/layout/index/down.vue';
- export default {
- name: 'quietDetail',
- props: {
- info: null, //头部信息
- backColor: null, //导航菜单背景颜色
- menuList: null, //菜单列表
- },
- components: {
- top, //头部
- banner, //logo
- menuInfo, //导航
- jiuyeInfo, //
- down, //底部信息
- },
- data: () => ({}),
- created() {},
- computed: {
- title() {
- return this.$route.query.title;
- },
- },
- methods: {},
- };
- </script>
- <style lang="less" scoped>
- .w_1200 {
- width: 1000px;
- height: 450px;
- margin: 0 auto;
- }
- .top {
- height: 40px;
- overflow: hidden;
- background-color: #f5f5f54f;
- }
- .banner {
- height: 300px;
- overflow: hidden;
- }
- .menu {
- height: 50px;
- overflow: hidden;
- }
- .main {
- min-height: 600px;
- padding: 50px 0;
- overflow: hidden;
- background: #f5f5f5;
- }
- .foot {
- min-height: 133px;
- background-color: #0457c7;
- }
- </style>
|