1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- <template>
- <div :class="['tool-list', 'tool-' + direction]">
- <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>
- </div>
- </template>
- <script setup>
- import {ref} from 'vue'
- import eventBus from "@/api/eventBus";
- import {useRouter} from "vue-router";
- const router = useRouter();
- const props = defineProps({
- direction: {
- type: String,
- defalut: "",
- },
- list: {
- type: Array,
- defalut: [],
- },
- });
- const emit = defineEmits(['handleActive'])
- eventBus.on('tool:updateAct',(e)=>{
- active.value = e
- })
- const active = ref(0)
- const handleActive = (value,index) =>{
- active.value = index
- emit('handleActive',value)
- if(index == 0){
- router.push('/warningHome')
- }
- }
- </script>
- <style lang="scss" scoped>
- .tool-list {
- width: 54px;
- height: 100%;
- background: #232323;
- border: 0.6px solid rgb(255, 255, 255, 0.4);
- box-sizing: border-box;
- border-radius: 4px;
- display: flex;
- flex-direction: column;
- justify-content: space-evenly;
- position: relative;
- &.tool-left {
- margin-right: 10px;
- border-left: none;
- }
- &.tool-right {
- margin-left: 10px;
- border-right: none;
- }
- .tool-item {
- font-size: 20px;
- writing-mode: vertical-rl; /* 从右到左的竖排 */
- text-orientation: upright; /* 保持文字直立,而不是旋转 */
- white-space: nowrap; /* 防止文本换行 */
- line-height: 54px;
- letter-spacing: 6px;
- color: #fff;
- font-family: "PangMenZhengDao";
- cursor: pointer;
- height: 100%;
- text-align: center;
- &.tool-item:first-child{
- border-radius: 4px 4px 0 0;
- }
- &.tool-item:last-child{
- border-radius: 0 0 4px 4px;
- }
- &.text{
- writing-mode:horizontal-tb;
- height: 40px;
- line-height: 40px;
- letter-spacing: 1px;
- width: 100%;
- text-align: center;
- font-size: 16px;
- }
- &.active{
- background: #101010;
- color: #FFD489;
- }
- }
- }
- </style>
|