36 lines
756 B
Vue
Raw Normal View History

2024-03-31 15:51:00 +08:00
<template>
2024-04-03 13:51:54 +08:00
<a-layout-content class="content">
<Tabs />
2024-04-03 13:51:54 +08:00
<a-scrollbar style="height: 100%; overflow: auto" outer-class="scrollbar">
<div class="main">
<div class="main_box"></div>
</div>
2024-04-03 13:51:54 +08:00
</a-scrollbar>
</a-layout-content>
2024-03-31 15:51:00 +08:00
</template>
<script setup lang="ts">
import Tabs from "@/layout/components/Tabs/index.vue";
</script>
2024-03-31 15:51:00 +08:00
<style lang="scss" scoped>
.content {
2024-04-03 13:51:54 +08:00
height: calc(100vh - 60px - 30px); // 动态切类名-去掉footer
}
.scrollbar {
height: calc(100% - 40px);
}
.main {
padding: $padding;
.main_box {
height: 1000px;
background: #eee;
}
2024-04-03 13:51:54 +08:00
}
// 修改左侧滚动条宽度
:deep(.arco-scrollbar-thumb-direction-vertical .arco-scrollbar-thumb-bar) {
width: 4px;
margin-left: 8px;
}
</style>