enterprisefabu.vue 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. <template>
  2. <div id="adviserList">
  3. <el-row>
  4. <el-col :span="24" class="main">
  5. <div class="w_1200">
  6. <el-col :span="5" class="left">
  7. <el-col :span="24" class="leftTop">
  8. <mainMenu :liebiaoList="liebiaoList" v-on="$listeners"></mainMenu>
  9. </el-col>
  10. <el-col :span="24" class="leftDiao">
  11. <examine></examine>
  12. </el-col>
  13. </el-col>
  14. <el-col :span="19" class="right">
  15. <contextfabuxx
  16. v-on="$listeners"
  17. :recruitData="recruitData"
  18. :successlist="successlist"
  19. :shenheList="shenheList"
  20. :total="total"
  21. :tatalstatus2="tatalstatus2"
  22. :tatalstatus1="tatalstatus1"
  23. :Transactionlist="Transactionlist"
  24. :jiaoyilist="jiaoyilist"
  25. :jiaoyilist1="jiaoyilist1"
  26. :total4="total4"
  27. :total5="total5"
  28. :total6="total6"
  29. :faqilist="faqilist"
  30. :totalfaqi="totalfaqi"
  31. ></contextfabuxx>
  32. </el-col>
  33. </div>
  34. </el-col>
  35. </el-row>
  36. </div>
  37. </template>
  38. <script>
  39. import examine from '@/layout/personCenter/question.vue';
  40. import mainMenu from '@/layout/enterprise/mainMenu.vue';
  41. import contextfabuxx from '@/layout/enterprise/contextfabuxx.vue';
  42. export default {
  43. name: 'adviserList',
  44. props: {
  45. liebiaoList: null, //分类导航
  46. recruitData: null, //审核中
  47. total: null, //分页
  48. total4: null, //分页
  49. total5: null, //分页
  50. total6: null, //分页
  51. shenheList: null, //审核成功
  52. successlist: null, //交易失败
  53. tatalstatus2: null, //分页
  54. tatalstatus1: null, //分页
  55. Transactionlist: null, //交易中
  56. jiaoyilist: null,
  57. jiaoyilist1: null,
  58. faqilist: null,
  59. totalfaqi: null,
  60. },
  61. components: {
  62. examine, //网上调查
  63. mainMenu, //分类导航
  64. contextfabuxx, //列表
  65. },
  66. data: () => ({}),
  67. created() {},
  68. computed: {},
  69. methods: {},
  70. };
  71. </script>
  72. <style lang="less" scoped>
  73. .w_1200 {
  74. width: 80%;
  75. margin: 0 auto;
  76. }
  77. .menu {
  78. height: 70px;
  79. overflow: hidden;
  80. }
  81. .main {
  82. height: 900px;
  83. overflow: hidden;
  84. padding: 10px 0;
  85. background: #e9edf6;
  86. background-attachment: fixed;
  87. background-size: cover;
  88. background-position: center center;
  89. }
  90. .left {
  91. height: 900px;
  92. margin: 0 10px 0 0;
  93. width: 20%;
  94. }
  95. .leftDiao {
  96. background: #fff;
  97. height: 510px;
  98. overflow: hidden;
  99. }
  100. .leftTop {
  101. background: #fff;
  102. height: 360px;
  103. overflow: hidden;
  104. margin: 0 0 10px 0;
  105. }
  106. .right {
  107. width: 79%;
  108. height: 880px;
  109. overflow: hidden;
  110. background-color: #fff;
  111. }
  112. </style>