样式调整

This commit is contained in:
2026-08-23 21:43:03 +08:00
parent 71257bdce0
commit 43f1aab297
16 changed files with 115 additions and 222 deletions
@@ -295,5 +295,21 @@ export default {
margin-top: 12px;
}
}
// 隐藏表格底部横向滚动条(自定义 bar 由全局样式隐藏,此处隐藏原生滚动条)
::v-deep .el-table ::-webkit-scrollbar {
display: none;
}
::v-deep .el-table {
scrollbar-width: none;
-ms-overflow-style: none;
}
::v-deep .el-table__body-wrapper::-webkit-scrollbar {
display: none;
}
::v-deep .el-table__body-wrapper {
scrollbar-width: none;
-ms-overflow-style: none;
}
}
</style>