enterprisefabu.vue 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. <template>
  2. <div id="adviserList">
  3. <el-row>
  4. <el-col :span="24" class="main">
  5. <el-col :span="24" class="top">
  6. <heads></heads>
  7. </el-col>
  8. <div class="w_1200">
  9. <el-col :span="5" class="left">
  10. <el-col :span="24" class="leftTop">
  11. <mainMenu :liebiaoList="liebiaoList" v-on="$listeners"></mainMenu>
  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. :tatalcaogao="tatalcaogao"
  32. :caogao="caogao"
  33. ></contextfabuxx>
  34. </el-col>
  35. </div>
  36. <el-col :span="24" class="foots">
  37. <foot></foot>
  38. </el-col>
  39. </el-col>
  40. </el-row>
  41. </div>
  42. </template>
  43. <script>
  44. import heads from '@/layout/enterprise/heads.vue';
  45. import mainMenu from '@/layout/enterprise/mainMenu.vue';
  46. import contextfabuxx from '@/layout/enterprise/contextfabuxx.vue';
  47. import foot from '@/layout/live/foot.vue';
  48. export default {
  49. name: 'adviserList',
  50. props: {
  51. liebiaoList: null, //分类导航
  52. recruitData: null, //审核中
  53. total: null, //分页
  54. total4: null, //分页
  55. total5: null, //分页
  56. total6: null, //分页
  57. shenheList: null, //审核成功
  58. successlist: null, //交易失败
  59. tatalstatus2: null, //分页
  60. tatalstatus1: null, //分页
  61. Transactionlist: null, //交易中
  62. jiaoyilist: null,
  63. jiaoyilist1: null,
  64. faqilist: null,
  65. totalfaqi: null,
  66. caogao: null,
  67. tatalcaogao: null,
  68. },
  69. components: {
  70. heads,
  71. mainMenu, //分类导航
  72. contextfabuxx, //列表
  73. foot,
  74. },
  75. data: () => ({}),
  76. created() {},
  77. computed: {},
  78. methods: {},
  79. };
  80. </script>
  81. <style lang="less" scoped>
  82. .w_1200 {
  83. width: 80%;
  84. margin: 0 auto;
  85. }
  86. .menu {
  87. height: 70px;
  88. overflow: hidden;
  89. }
  90. .main {
  91. min-height: 1300px;
  92. overflow: hidden;
  93. background: #e9edf6;
  94. background-attachment: fixed;
  95. background-size: cover;
  96. background-position: center center;
  97. }
  98. .left {
  99. height: 900px;
  100. margin: 0 10px 0 0;
  101. width: 20%;
  102. }
  103. .leftTop {
  104. background: #fff;
  105. height: 455px;
  106. overflow: hidden;
  107. margin: 0 0 10px 0;
  108. }
  109. .right {
  110. width: 79%;
  111. height: 1100px;
  112. overflow: hidden;
  113. background-color: #fff;
  114. }
  115. .foots {
  116. margin: 10px 0 0 0;
  117. }
  118. </style>