fix:路面病害对比

This commit is contained in:
2024-10-15 13:14:38 +08:00
parent 1b6f4853ac
commit d425319b63
12 changed files with 2897 additions and 4 deletions
+39
View File
@@ -0,0 +1,39 @@
<!--
* @Author: SunTao 328867980@qq.com
* @Date: 2024-10-14 15:22:21
* @LastEditors: SunTao 328867980@qq.com
* @LastEditTime: 2024-10-14 15:26:52
* @FilePath: \znxjxt-ui\src\views\xj\inspection\surface-management\components\fssm-scroll.vue
* @Description: 滚动条封装样式
-->
<template>
<div class="scroll-box">
<slot></slot>
</div>
</template>
<script>
export default {};
</script>
<style lang="scss" scoped>
.scroll-box {
width: 100%;
height: 100%;
overflow: auto;
&::-webkit-scrollbar {
width: 6px;
}
&::-webkit-scrollbar-thumb {
border-radius: 7px;
box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
background: rgba(222, 225, 230, 1);
}
&::-webkit-scrollbar-track {
box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
border-radius: 7px;
background: rgba(220, 231, 248, 0.1);
}
}
</style>