1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- <template>
- <div id="adviserList">
- <el-row>
- <el-col :span="24" class="main">
- <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 :span="24" class="leftDiao">
- <examine></examine>
- </el-col>
- </el-col>
- <el-col :span="19" class="right">
- <contextfabu v-on="$listeners" :demandForm="demandForm" :totaltype="totaltype" :columnList="columnList"></contextfabu>
- </el-col>
- </div>
- </el-col>
- <el-col :span="24" class="foot"> </el-col>
- </el-row>
- </div>
- </template>
- <script>
- import examine from '@/layout/personCenter/question.vue';
- import mainMenu from '@/layout/enterprise/mainMenu.vue';
- import contextfabu from '@/layout/enterprise/contextfabu.vue';
- export default {
- name: 'adviserList',
- props: {
- liebiaoList: null, //分类导航
- demandForm: null, //需求发布
- columnList: null, //类型列表
- totaltype: null, //判断
- },
- components: {
- examine, //网上调查
- mainMenu, //分类导航
- contextfabu, //列表
- },
- data: () => ({}),
- created() {},
- computed: {},
- methods: {},
- };
- </script>
- <style lang="less" scoped>
- .w_1200 {
- width: 80%;
- margin: 0 auto;
- }
- .menu {
- height: 70px;
- overflow: hidden;
- }
- .main {
- min-height: 1720px;
- overflow: hidden;
- padding: 10px 0;
- background: #e9edf6;
- background-attachment: fixed;
- background-size: cover;
- background-position: center center;
- }
- .left {
- height: 900px;
- margin: 0 10px 0 0;
- width: 20%;
- }
- .leftDiao {
- background: #fff;
- height: 1350px;
- overflow: hidden;
- }
- .leftTop {
- background: #fff;
- height: 360px;
- overflow: hidden;
- margin: 0 0 10px 0;
- }
- .right {
- width: 79%;
- min-height: 1720px;
- overflow: hidden;
- background-color: #fff;
- }
- </style>
|