1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- <template>
- <div id="adviserList">
- <el-row>
- <el-col :span="24" class="main">
- <el-col :span="24" class="top">
- <heads></heads>
- </el-col>
- <div class="w_1200">
- <el-col :span="5" class="left">
- <el-col :span="24" class="leftTop">
- <mainMenu :liebiaoList="liebiaoList" v-on="$listeners"></mainMenu>
- </el-col>
- </el-col>
- <el-col :span="19" class="right">
- <xiugai v-on="$listeners" :form="form"></xiugai>
- </el-col>
- </div>
- <el-col :span="24" class="foots">
- <foot></foot>
- </el-col>
- </el-col>
- </el-row>
- </div>
- </template>
- <script>
- import heads from '@/layout/enterprise/heads.vue';
- import mainMenu from '@/layout/enterprise/mainMenu.vue';
- import xiugai from '@/layout/enterprise/xiugai.vue';
- import foot from '@/layout/live/foot.vue';
- export default {
- name: 'adviserList',
- props: {
- info: null, //站点信息
- liebiaoList: null, //分类导航
- form: null,
- },
- components: {
- heads,
- mainMenu, //分类导航
- xiugai, //消息管理
- foot,
- },
- data: () => ({}),
- created() {},
- computed: {},
- methods: {},
- };
- </script>
- <style lang="less" scoped>
- .w_1200 {
- width: 80%;
- margin: 0 auto;
- }
- .menu {
- height: 70px;
- overflow: hidden;
- }
- .main {
- min-height: 500px;
- overflow: hidden;
- padding: 10px 0;
- background: #e9edf6;
- background-attachment: fixed;
- background-size: cover;
- background-position: center center;
- }
- .left {
- min-height: 480px;
- margin: 0 10px 0 0;
- width: 20%;
- }
- .leftTop {
- background: #fff;
- height: 480px;
- overflow: hidden;
- margin: 0 0 10px 0;
- }
- .right {
- width: 79%;
- min-height: 480px;
- overflow: hidden;
- background-color: #fff;
- }
- .foots {
- margin: 10px 0 0 0;
- }
- </style>
|