123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116 |
- <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">
- <contextfabuxx
- v-on="$listeners"
- :recruitData="recruitData"
- :successlist="successlist"
- :shenheList="shenheList"
- :total="total"
- :tatalstatus2="tatalstatus2"
- :tatalstatus1="tatalstatus1"
- :Transactionlist="Transactionlist"
- :jiaoyilist="jiaoyilist"
- :jiaoyilist1="jiaoyilist1"
- :total4="total4"
- :total5="total5"
- :total6="total6"
- :faqilist="faqilist"
- :totalfaqi="totalfaqi"
- ></contextfabuxx>
- </el-col>
- </div>
- </el-col>
- </el-row>
- </div>
- </template>
- <script>
- import examine from '@/layout/personCenter/question.vue';
- import mainMenu from '@/layout/enterprise/mainMenu.vue';
- import contextfabuxx from '@/layout/enterprise/contextfabuxx.vue';
- export default {
- name: 'adviserList',
- props: {
- liebiaoList: null, //分类导航
- recruitData: null, //审核中
- total: null, //分页
- total4: null, //分页
- total5: null, //分页
- total6: null, //分页
- shenheList: null, //审核成功
- successlist: null, //交易失败
- tatalstatus2: null, //分页
- tatalstatus1: null, //分页
- Transactionlist: null, //交易中
- jiaoyilist: null,
- jiaoyilist1: null,
- faqilist: null,
- totalfaqi: null,
- },
- components: {
- examine, //网上调查
- mainMenu, //分类导航
- contextfabuxx, //列表
- },
- data: () => ({}),
- created() {},
- computed: {},
- methods: {},
- };
- </script>
- <style lang="less" scoped>
- .w_1200 {
- width: 80%;
- margin: 0 auto;
- }
- .menu {
- height: 70px;
- overflow: hidden;
- }
- .main {
- height: 900px;
- 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: 510px;
- overflow: hidden;
- }
- .leftTop {
- background: #fff;
- height: 360px;
- overflow: hidden;
- margin: 0 0 10px 0;
- }
- .right {
- width: 79%;
- height: 880px;
- overflow: hidden;
- background-color: #fff;
- }
- </style>
|