flx:修改进度甘特度滚动条样式问题

This commit is contained in:
X_Rian 2024-09-19 18:29:53 +08:00
parent 543cc09ac6
commit ef51748d92
2 changed files with 7 additions and 0 deletions

View File

@ -408,6 +408,8 @@ export default {
</script> </script>
<style lang="less" scoped> <style lang="less" scoped>
.gasanalysis-table1 { .gasanalysis-table1 {
width: 100%; width: 100%;
overflow: scroll; overflow: scroll;
@ -431,6 +433,10 @@ export default {
overflow-y: scroll; overflow-y: scroll;
-webkit-overflow-scrolling: touch; -webkit-overflow-scrolling: touch;
} }
tbody::-webkit-scrollbar { /*隐藏滚轮*/
display: none;
}
} }
tr { tr {

View File

@ -91,5 +91,6 @@ export default {
color: #1684FC; color: #1684FC;
cursor: pointer; cursor: pointer;
} }
</style> </style>