feat:完成了工作台,修复了工单详情v-for不渲染的bug,增添了信息滚动条

This commit is contained in:
KindSeven
2024-09-15 04:44:45 +08:00
27 changed files with 6540 additions and 652 deletions

View File

@@ -0,0 +1,36 @@
<template>
<div class="live-call-block">
<live-call-item v-for="item in 2"/>
</div>
</template>
<script setup>
</script>
<style lang="scss" scoped>
.live-call-block {
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: space-around;
height: 470px;
overflow-y: auto;
&::-webkit-scrollbar {
width: 6px;
}
// 滚动条轨道
&::-webkit-scrollbar-track {
background: rgb(239, 239, 239);
border-radius: 2px;
}
// 小滑块
&::-webkit-scrollbar-thumb {
background: rgba(80, 81, 82, 0.29);
border-radius: 10px;
}
}
</style>