bottomMenu.vue 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. <template>
  2. <div class="bottom-btn-group">
  3. <div v-for="item in navList" :key="item.pathName" class="vent-row-center btn-item" @click="setBtn('click', item)"
  4. @mouseenter="setBtn('over', item)" @mouseleave="setBtn('leave', item)">
  5. <dv-decoration11
  6. :color="isBtnActive === item.pathName ? activeColors : item.isHover ? activeColors : noActiveColors"
  7. style="width:200px;height:60px;">
  8. {{ item.title }}
  9. </dv-decoration11>
  10. </div>
  11. </div>
  12. </template>
  13. <script setup lang="ts">
  14. import { ref } from 'vue'
  15. import { useRouter } from 'vue-router'
  16. import { Decoration5, Decoration11 as DvDecoration11} from '@kjgl77/datav-vue3'
  17. const router = useRouter()
  18. const isBtnActive = ref('nitrogen_page_lh')
  19. const activeColors = ['#009BFF', '#28DBE4']
  20. const noActiveColors = ['#aaa', '#aaa']
  21. const navList = ref([
  22. {
  23. title: '监控界面',
  24. pathName: 'nitrogen_page_lh',
  25. isHover: true
  26. },
  27. {
  28. title: '关键节点监测',
  29. pathName: 'critical_node',
  30. isHover: false
  31. },
  32. {
  33. title: '实时曲线',
  34. pathName: 'yfj_monitor_echarts',
  35. isHover: false
  36. },
  37. {
  38. title: '压风机历史记录',
  39. pathName: 'yfj_history',
  40. isHover: false
  41. },
  42. {
  43. title: '操作历史记录',
  44. pathName: 'yfj_handler_history',
  45. isHover: false
  46. },
  47. {
  48. title: '故障诊断历史记录',
  49. pathName: 'yfj_faultRecord',
  50. isHover: false
  51. }
  52. ])
  53. function setBtn(type, activeObj) {
  54. if (type === 'over') {
  55. activeObj.isHover = true
  56. } else if (type === 'leave') {
  57. activeObj.isHover = false
  58. } else if (type === 'click') {
  59. isBtnActive.value = activeObj.pathName
  60. }
  61. // router.push('')
  62. }
  63. </script>
  64. <style lang="less" scoped>
  65. .bottom-btn-group {
  66. display: flex;
  67. position: fixed;
  68. width: calc(100% - 400px);
  69. height: 100px;
  70. bottom: 20px;
  71. align-items: center;
  72. justify-content: center;
  73. .btn-item {
  74. width: 200px;
  75. height: 60px;
  76. margin: 10px;
  77. color: #fff;
  78. cursor: pointer;
  79. pointer-events: auto;
  80. }
  81. }
  82. </style>