enterprisefabu.vue 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. <template>
  2. <div id="adviserList">
  3. <el-row>
  4. <el-col :span="24" class="top">
  5. <top></top>
  6. </el-col>
  7. <el-col :span="24" class="logo">
  8. <div class="w_1200">
  9. <logo :info="info"></logo>
  10. </div>
  11. </el-col>
  12. <el-col :span="24" class="menu">
  13. <div class="w_1200">
  14. <menuInfo></menuInfo>
  15. </div>
  16. </el-col>
  17. <el-col :span="24" class="main">
  18. <div class="w_1200">
  19. <el-col :span="5" class="left">
  20. <el-col :span="24" class="leftTop">
  21. <mainMenu :liebiaoList="liebiaoList" v-on="$listeners"></mainMenu>
  22. </el-col>
  23. <el-col :span="24" class="leftDiao">
  24. <examine></examine>
  25. </el-col>
  26. </el-col>
  27. <el-col :span="19" class="right">
  28. <contextfabuxx
  29. v-on="$listeners"
  30. :recruitData="recruitData"
  31. :successlist="successlist"
  32. :shenheList="shenheList"
  33. :total="total"
  34. :tatalstatus2="tatalstatus2"
  35. :tatalstatus1="tatalstatus1"
  36. :Transactionlist="Transactionlist"
  37. ></contextfabuxx>
  38. </el-col>
  39. </div>
  40. </el-col>
  41. <el-col :span="24" class="foot">
  42. <div class="w_1200">
  43. <foot :info="info"></foot>
  44. </div>
  45. </el-col>
  46. </el-row>
  47. </div>
  48. </template>
  49. <script>
  50. import top from '@/layout/index/top.vue';
  51. import logo from '@/layout/index/logo.vue';
  52. import menuInfo from '@/layout/index/menuInfo.vue';
  53. import foot from '@/layout/index/foot.vue';
  54. import examine from '@/layout/personCenter/question.vue';
  55. import mainMenu from '@/layout/enterprise/mainMenu.vue';
  56. import contextfabuxx from '@/layout/enterprise/contextfabuxx.vue';
  57. export default {
  58. name: 'adviserList',
  59. props: {
  60. info: null, //站点信息
  61. liebiaoList: null, //分类导航
  62. recruitData: null, //审核中
  63. total: null, //分页
  64. shenheList: null, //审核成功
  65. successlist: null, //交易失败
  66. tatalstatus2: null, //分页
  67. tatalstatus1: null, //分页
  68. Transactionlist: null, //交易中
  69. // gonggeiData: null,
  70. },
  71. components: {
  72. top, //头部
  73. logo, //logo
  74. menuInfo, //导航
  75. foot, //底部
  76. examine, //网上调查
  77. mainMenu, //分类导航
  78. contextfabuxx, //列表
  79. },
  80. data: () => ({}),
  81. created() {},
  82. computed: {},
  83. methods: {},
  84. };
  85. </script>
  86. <style lang="less" scoped>
  87. .w_1200 {
  88. width: 1200px;
  89. margin: 0 auto;
  90. }
  91. .top {
  92. height: 40px;
  93. overflow: hidden;
  94. background-color: rgba(11, 58, 125, 0.8);
  95. }
  96. .logo {
  97. height: 200px;
  98. overflow: hidden;
  99. }
  100. .menu {
  101. height: 70px;
  102. overflow: hidden;
  103. }
  104. .main {
  105. height: 900px;
  106. overflow: hidden;
  107. margin: 10px 0;
  108. }
  109. .left {
  110. height: 900px;
  111. margin: 0 10px 0 0;
  112. }
  113. .leftDiao {
  114. background: #fff;
  115. height: 530px;
  116. overflow: hidden;
  117. }
  118. .leftTop {
  119. background: #fff;
  120. height: 360px;
  121. overflow: hidden;
  122. margin: 0 0 10px 0;
  123. }
  124. .right {
  125. width: 940px;
  126. height: 900px;
  127. background: #fff;
  128. overflow: hidden;
  129. }
  130. .foot {
  131. float: left;
  132. width: 100%;
  133. height: 120px;
  134. overflow: hidden;
  135. }
  136. </style>