xiugai.vue 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  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. <xiugai v-on="$listeners" :form="form"></xiugai>
  16. </el-col>
  17. </div>
  18. <el-col :span="24" class="foots">
  19. <foot></foot>
  20. </el-col>
  21. </el-col>
  22. </el-row>
  23. </div>
  24. </template>
  25. <script>
  26. import heads from '@/layout/enterprise/heads.vue';
  27. import mainMenu from '@/layout/enterprise/mainMenu.vue';
  28. import xiugai from '@/layout/enterprise/xiugai.vue';
  29. import foot from '@/layout/live/foot.vue';
  30. export default {
  31. name: 'adviserList',
  32. props: {
  33. info: null, //站点信息
  34. liebiaoList: null, //分类导航
  35. form: null,
  36. },
  37. components: {
  38. heads,
  39. mainMenu, //分类导航
  40. xiugai, //消息管理
  41. foot,
  42. },
  43. data: () => ({}),
  44. created() {},
  45. computed: {},
  46. methods: {},
  47. };
  48. </script>
  49. <style lang="less" scoped>
  50. .w_1200 {
  51. width: 80%;
  52. margin: 0 auto;
  53. }
  54. .menu {
  55. height: 70px;
  56. overflow: hidden;
  57. }
  58. .main {
  59. min-height: 500px;
  60. overflow: hidden;
  61. padding: 10px 0;
  62. background: #e9edf6;
  63. background-attachment: fixed;
  64. background-size: cover;
  65. background-position: center center;
  66. }
  67. .left {
  68. min-height: 480px;
  69. margin: 0 10px 0 0;
  70. width: 20%;
  71. }
  72. .leftTop {
  73. background: #fff;
  74. height: 480px;
  75. overflow: hidden;
  76. margin: 0 0 10px 0;
  77. }
  78. .right {
  79. width: 79%;
  80. min-height: 480px;
  81. overflow: hidden;
  82. background-color: #fff;
  83. }
  84. .foots {
  85. margin: 10px 0 0 0;
  86. }
  87. </style>