42 lines
837 B
Vue
Raw Normal View History

2024-07-01 23:57:01 +08:00
<template>
2024-07-02 13:00:59 +08:00
<FillPage>
<div class="container">
<div class="container-main">
<div class="left-box">
2024-07-04 11:38:52 +08:00
<FileTree />
2024-07-02 13:00:59 +08:00
</div>
<div class="right-box"></div>
</div>
</div>
</FillPage>
2024-07-01 23:57:01 +08:00
</template>
2024-07-02 18:55:30 +08:00
<script setup lang="ts">
2024-07-03 16:48:32 +08:00
import FileTree from "@/views/file-management/document-library/components/file-tree.vue";
2024-07-02 18:55:30 +08:00
</script>
2024-07-01 23:57:01 +08:00
2024-07-02 13:00:59 +08:00
<style lang="scss" scoped>
.container {
height: 100%;
padding: $padding;
box-sizing: border-box;
overflow: hidden;
}
.container-main {
height: 100%;
display: flex;
overflow: hidden;
.left-box {
width: 300px;
height: 100%;
2024-07-02 18:55:30 +08:00
background: $color-bg-1;
2024-07-02 13:00:59 +08:00
}
.right-box {
margin-left: $padding;
width: calc(100% - 220px - $padding);
height: 100%;
2024-07-02 18:55:30 +08:00
background: $color-bg-1;
2024-07-02 13:00:59 +08:00
}
}
</style>