newmenu.vue 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. <template>
  2. <div id="newmenu">
  3. <el-menu :default-active="activeIndex" class="el-menu-demo" mode="horizontal" @select="handleSelect">
  4. <el-menu-item index="1">新闻动态</el-menu-item>
  5. <el-menu-item index="2" @click="result">成果展示</el-menu-item>
  6. <el-menu-item index="3">计算服务</el-menu-item>
  7. <el-menu-item index="4">交流活动</el-menu-item>
  8. <el-menu-item index="5" @click="toPartisan">党建学院</el-menu-item>
  9. </el-menu>
  10. </div>
  11. </template>
  12. <script>
  13. export default {
  14. name: 'newmenu',
  15. props: {},
  16. components: {},
  17. data: () => ({
  18. activeIndex: '1',
  19. activeIndex2: '1',
  20. }),
  21. created() {},
  22. computed: {},
  23. methods: {
  24. handleSelect() {},
  25. toPartisan() {
  26. this.$router.push({ path: '/partisan/index' });
  27. },
  28. result() {
  29. this.$router.push({ path: '/result/index' });
  30. },
  31. },
  32. };
  33. </script>
  34. <style lang="less" scoped>
  35. .menu {
  36. height: 70px;
  37. overflow: hidden;
  38. }
  39. /deep/.el-menu--horizontal > .el-menu-item {
  40. float: left;
  41. height: 60px;
  42. line-height: 60px;
  43. margin: 0;
  44. color: #909399;
  45. width: 240.5px;
  46. text-align: center;
  47. float: left;
  48. width: 238px;
  49. text-align: center;
  50. border-right: 2px solid #76bdfe;
  51. font-size: 22px;
  52. color: #fff;
  53. }
  54. /deep/.el-menu--horizontal > .el-menu-item:nth-child(5) {
  55. float: left;
  56. height: 60px;
  57. line-height: 60px;
  58. margin: 0;
  59. color: #fff;
  60. width: 240px;
  61. text-align: center;
  62. float: left;
  63. width: 238px;
  64. text-align: center;
  65. border: none;
  66. font-size: 22px;
  67. }
  68. /deep/.el-menu-item:hover {
  69. background: #215299 !important;
  70. color: #fff !important;
  71. border: none;
  72. font-size: 22px !important;
  73. border-right: 2px solid #76bdfe;
  74. }
  75. /deep/.el-menu--horizontal > .el-menu-item:first-child.is-active {
  76. background: #215299;
  77. border: none;
  78. border-right: 2px solid #76bdfe;
  79. color: #fff;
  80. }
  81. /deep/.el-menu--horizontal > .el-menu-item:last-child.is-active {
  82. background: #215299;
  83. border: none;
  84. color: #fff;
  85. }
  86. /deep/.el-menu--horizontal > .el-menu-item.is-active {
  87. background: #215299;
  88. border: none;
  89. color: #fff;
  90. border-right: 2px solid #76bdfe;
  91. // border-left: 2px solid #76bdfe;
  92. }
  93. /deep/.el-menu.el-menu--horizontal {
  94. border-bottom: none;
  95. background: none;
  96. }
  97. /deep/.el-menu--horizontal > .el-menu-item {
  98. border-bottom: none;
  99. }
  100. </style>