toolList.vue 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. <template>
  2. <div :class="['tool-list', 'tool-' + direction]">
  3. <div :class="['tool-item',{'text':item.name==='home'},{active:index===active}]" v-for="(item,index) in list" :key="index" @click="handleActive(item,index)">{{item.title}}</div>
  4. </div>
  5. </template>
  6. <script setup>
  7. import {ref} from 'vue'
  8. import eventBus from "@/api/eventBus";
  9. import {useRouter} from "vue-router";
  10. const router = useRouter();
  11. const props = defineProps({
  12. direction: {
  13. type: String,
  14. defalut: "",
  15. },
  16. list: {
  17. type: Array,
  18. defalut: [],
  19. },
  20. });
  21. const emit = defineEmits(['handleActive'])
  22. eventBus.on('tool:updateAct',(e)=>{
  23. active.value = e
  24. })
  25. const active = ref(0)
  26. const handleActive = (value,index) =>{
  27. active.value = index
  28. emit('handleActive',value)
  29. if(index == 0){
  30. router.push('/warningHome')
  31. }
  32. }
  33. </script>
  34. <style lang="scss" scoped>
  35. .tool-list {
  36. width: 54px;
  37. height: 100%;
  38. background: #232323;
  39. border: 0.6px solid rgb(255, 255, 255, 0.4);
  40. box-sizing: border-box;
  41. border-radius: 4px;
  42. display: flex;
  43. flex-direction: column;
  44. justify-content: space-evenly;
  45. position: relative;
  46. &.tool-left {
  47. margin-right: 10px;
  48. border-left: none;
  49. }
  50. &.tool-right {
  51. margin-left: 10px;
  52. border-right: none;
  53. }
  54. .tool-item {
  55. font-size: 20px;
  56. writing-mode: vertical-rl; /* 从右到左的竖排 */
  57. text-orientation: upright; /* 保持文字直立,而不是旋转 */
  58. white-space: nowrap; /* 防止文本换行 */
  59. line-height: 54px;
  60. letter-spacing: 6px;
  61. color: #fff;
  62. font-family: "PangMenZhengDao";
  63. cursor: pointer;
  64. height: 100%;
  65. text-align: center;
  66. &.tool-item:first-child{
  67. border-radius: 4px 4px 0 0;
  68. }
  69. &.tool-item:last-child{
  70. border-radius: 0 0 4px 4px;
  71. }
  72. &.text{
  73. writing-mode:horizontal-tb;
  74. height: 40px;
  75. line-height: 40px;
  76. letter-spacing: 1px;
  77. width: 100%;
  78. text-align: center;
  79. font-size: 16px;
  80. }
  81. &.active{
  82. background: #101010;
  83. color: #FFD489;
  84. }
  85. }
  86. }
  87. </style>