enterprisefabu.vue 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  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. ></contextfabuxx>
  37. </el-col>
  38. </div>
  39. </el-col>
  40. <el-col :span="24" class="foot">
  41. <div class="w_1200">
  42. <foot :info="info"></foot>
  43. </div>
  44. </el-col>
  45. </el-row>
  46. </div>
  47. </template>
  48. <script>
  49. import top from '@/layout/index/top.vue';
  50. import logo from '@/layout/index/logo.vue';
  51. import menuInfo from '@/layout/index/menuInfo.vue';
  52. import foot from '@/layout/index/foot.vue';
  53. import examine from '@/layout/personCenter/question.vue';
  54. import mainMenu from '@/layout/enterprise/mainMenu.vue';
  55. import contextfabuxx from '@/layout/enterprise/contextfabuxx.vue';
  56. export default {
  57. name: 'adviserList',
  58. props: {
  59. info: null, //站点信息
  60. liebiaoList: null, //分类导航
  61. recruitData: null,
  62. total: null,
  63. shenheList: null,
  64. successlist: null,
  65. tatalstatus2: null,
  66. tatalstatus1: null,
  67. // gonggeiData: null,
  68. },
  69. components: {
  70. top, //头部
  71. logo, //logo
  72. menuInfo, //导航
  73. foot, //底部
  74. examine, //网上调查
  75. mainMenu, //分类导航
  76. contextfabuxx, //列表
  77. },
  78. data: () => ({}),
  79. created() {},
  80. computed: {},
  81. methods: {},
  82. };
  83. </script>
  84. <style lang="less" scoped>
  85. .w_1200 {
  86. width: 1200px;
  87. margin: 0 auto;
  88. }
  89. .top {
  90. height: 40px;
  91. overflow: hidden;
  92. background-color: rgba(11, 58, 125, 0.8);
  93. }
  94. .logo {
  95. height: 200px;
  96. overflow: hidden;
  97. }
  98. .menu {
  99. height: 70px;
  100. overflow: hidden;
  101. }
  102. .main {
  103. height: 900px;
  104. overflow: hidden;
  105. margin: 10px 0;
  106. }
  107. .left {
  108. height: 900px;
  109. margin: 0 10px 0 0;
  110. }
  111. .leftDiao {
  112. background: #fff;
  113. height: 530px;
  114. overflow: hidden;
  115. }
  116. .leftTop {
  117. background: #fff;
  118. height: 360px;
  119. overflow: hidden;
  120. margin: 0 0 10px 0;
  121. }
  122. .right {
  123. width: 940px;
  124. height: 900px;
  125. background: #fff;
  126. overflow: hidden;
  127. }
  128. .foot {
  129. float: left;
  130. width: 100%;
  131. height: 120px;
  132. overflow: hidden;
  133. }
  134. </style>