enterprisexx.vue 2.4 KB

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