enterpisedg.vue 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  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. <context
  16. v-on="$listeners"
  17. :total1="total1"
  18. :total2="total2"
  19. :total3="total3"
  20. :columnName="columnName"
  21. :dinggou1="dinggou1"
  22. :dinggou2="dinggou2"
  23. :dinggou3="dinggou3"
  24. :faqilist="faqilist"
  25. :totalfaqi="totalfaqi"
  26. ></context>
  27. </el-col>
  28. </div>
  29. <el-col :span="24" class="foots">
  30. <foot></foot>
  31. </el-col>
  32. </el-col>
  33. </el-row>
  34. </div>
  35. </template>
  36. <script>
  37. import mainMenu from '@/layout/enterprise/mainMenu.vue';
  38. import context from '@/layout/enterprise/context.vue';
  39. import heads from '@/layout/enterprise/heads.vue';
  40. import foot from '@/layout/live/foot.vue';
  41. export default {
  42. name: 'adviserList',
  43. props: {
  44. liebiaoList: null, //分类导航
  45. columnName: null, //栏目名称
  46. dinggou1: null,
  47. dinggou2: null,
  48. dinggou3: null,
  49. total1: null,
  50. total2: null,
  51. total3: null,
  52. faqilist: null,
  53. totalfaqi: null,
  54. },
  55. components: {
  56. heads, //头部
  57. mainMenu, //分类导航
  58. context, //列表
  59. foot,
  60. },
  61. data: () => ({}),
  62. created() {},
  63. computed: {},
  64. methods: {},
  65. };
  66. </script>
  67. <style lang="less" scoped>
  68. .w_1200 {
  69. width: 80%;
  70. margin: 0 auto;
  71. }
  72. .menu {
  73. height: 70px;
  74. overflow: hidden;
  75. }
  76. .main {
  77. min-height: 1080px;
  78. overflow: hidden;
  79. background: #e9edf6;
  80. background-attachment: fixed;
  81. background-size: cover;
  82. background-position: center center;
  83. }
  84. .left {
  85. height: 880px;
  86. margin: 0 10px 0 0;
  87. width: 20%;
  88. }
  89. .leftTop {
  90. background: #fff;
  91. height: 455px;
  92. overflow: hidden;
  93. margin: 0 0 10px 0;
  94. }
  95. .right {
  96. width: 79%;
  97. min-height: 880px;
  98. overflow: hidden;
  99. background-color: #fff;
  100. }
  101. .foots {
  102. margin: 10px 0 0 0;
  103. }
  104. </style>