fenlei.vue 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. <template>
  2. <div id="fenlei">
  3. <el-col class="swfl"> <el-image style="width:22px;height:22px;margin:0 5px -5px 0;" :src="src"></el-image><span>商务分类</span> </el-col>
  4. <el-col>
  5. <el-menu
  6. default-active="2"
  7. class="el-menu-vertical-demo"
  8. @open="handleOpen"
  9. @close="handleClose"
  10. background-color=" #ffffff"
  11. text-color="#215299"
  12. active-text-color="#215299"
  13. >
  14. <el-menu-item-group>
  15. <el-menu-item index="1-1" class="fenlei_title">高校院所</el-menu-item>
  16. <el-menu-item index="1-2" class="fenlei_title">科研院所</el-menu-item>
  17. <el-menu-item index="1-3" class="fenlei_title">科技企业</el-menu-item>
  18. <el-menu-item index="1-4" class="fenlei_title">机构团体</el-menu-item>
  19. <el-menu-item index="1-5" class="fenlei_title">研发服务</el-menu-item>
  20. <el-menu-item index="1-6" class="fenlei_title">技术成果</el-menu-item>
  21. <el-menu-item index="1-7" class="fenlei_title">创新产品</el-menu-item>
  22. <el-menu-item index="1-8" class="fenlei_title">咨询服务</el-menu-item>
  23. <el-menu-item index="1-9" class="fenlei_titlelast">创新人才</el-menu-item>
  24. </el-menu-item-group>
  25. </el-menu>
  26. </el-col>
  27. </div>
  28. </template>
  29. <script>
  30. export default {
  31. name: 'fenlei',
  32. props: {},
  33. components: {},
  34. data: () => ({
  35. src: require('@/assets/swfl.png'),
  36. }),
  37. created() {},
  38. computed: {},
  39. methods: {
  40. handleOpen(key, keyPath) {
  41. console.log(key, keyPath);
  42. },
  43. handleClose(key, keyPath) {
  44. console.log(key, keyPath);
  45. },
  46. },
  47. };
  48. </script>
  49. <style lang="less" scoped>
  50. .swfl {
  51. height: 60px;
  52. width: 240px;
  53. line-height: 60px;
  54. background-color: #22529a;
  55. text-align: center;
  56. }
  57. .swfl span {
  58. font-size: 22px;
  59. color: #ffffff;
  60. }
  61. // .ziti {
  62. // color: #ffffff;
  63. // margin: 0 0 0 5px;
  64. // // line-height: 50px;
  65. // font-size: 18px;
  66. // }
  67. // .image {
  68. // line-height: 50px;
  69. // }
  70. .fenlei_title {
  71. height: 60px;
  72. width: 240px;
  73. // background-color: salmon;
  74. text-align: center;
  75. line-height: 50px;
  76. border-bottom: 1px dashed;
  77. font-size: 22px;
  78. }
  79. .fenlei_titlelast {
  80. height: 60px;
  81. width: 240px;
  82. // background-color: salmon;
  83. text-align: center;
  84. line-height: 50px;
  85. font-size: 22px;
  86. }
  87. /deep/.el-menu-item-group__title {
  88. padding: 0 0 0 0;
  89. line-height: normal;
  90. font-size: 12px;
  91. color: #ffffff;
  92. }
  93. </style>