enterprisexuqiu.vue 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  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. <contextfabu v-on="$listeners" :demandForm="demandForm" :totaltype="totaltype" :columnList="columnList"></contextfabu>
  16. </el-col>
  17. </div>
  18. </el-col>
  19. <el-col :span="24" class="foot"> </el-col>
  20. </el-row>
  21. </div>
  22. </template>
  23. <script>
  24. import examine from '@/layout/personCenter/question.vue';
  25. import mainMenu from '@/layout/enterprise/mainMenu.vue';
  26. import contextfabu from '@/layout/enterprise/contextfabu.vue';
  27. export default {
  28. name: 'adviserList',
  29. props: {
  30. liebiaoList: null, //分类导航
  31. demandForm: null, //需求发布
  32. columnList: null, //类型列表
  33. totaltype: null, //判断
  34. },
  35. components: {
  36. examine, //网上调查
  37. mainMenu, //分类导航
  38. contextfabu, //列表
  39. },
  40. data: () => ({}),
  41. created() {},
  42. computed: {},
  43. methods: {},
  44. };
  45. </script>
  46. <style lang="less" scoped>
  47. .w_1200 {
  48. width: 80%;
  49. margin: 0 auto;
  50. }
  51. .menu {
  52. height: 70px;
  53. overflow: hidden;
  54. }
  55. .main {
  56. min-height: 1720px;
  57. overflow: hidden;
  58. padding: 10px 0;
  59. background: #e9edf6;
  60. background-attachment: fixed;
  61. background-size: cover;
  62. background-position: center center;
  63. }
  64. .left {
  65. height: 900px;
  66. margin: 0 10px 0 0;
  67. width: 20%;
  68. }
  69. .leftDiao {
  70. background: #fff;
  71. height: 1350px;
  72. overflow: hidden;
  73. }
  74. .leftTop {
  75. background: #fff;
  76. height: 360px;
  77. overflow: hidden;
  78. margin: 0 0 10px 0;
  79. }
  80. .right {
  81. width: 79%;
  82. min-height: 1720px;
  83. overflow: hidden;
  84. background-color: #fff;
  85. }
  86. </style>