fix: 恢复chartList 滚动条
This commit is contained in:
@@ -36,14 +36,4 @@
|
|||||||
overflow: hidden; /*避免鼠标第一次放到曲线时,x轴出现滚动条后消失*/
|
overflow: hidden; /*避免鼠标第一次放到曲线时,x轴出现滚动条后消失*/
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.chart-list {
|
|
||||||
flex: 1;
|
|
||||||
height: auto !important;
|
|
||||||
width: 100%;
|
|
||||||
border-top: 1px solid transparent;
|
|
||||||
box-sizing: border-box;
|
|
||||||
|
|
||||||
.group-hide-header {
|
|
||||||
height: 40px !important;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
<template>
|
<template>
|
||||||
|
<div id="chart-list">
|
||||||
<div :id='`chartList${(isGroup ? "Group" : "") + timestamp}`' class="chart-list" v-my-loading="gridLayoutLoading" ref="layoutBox">
|
<div :id='`chartList${(isGroup ? "Group" : "") + timestamp}`' class="chart-list" v-my-loading="gridLayoutLoading" ref="layoutBox">
|
||||||
<grid-layout
|
<grid-layout
|
||||||
ref="layout"
|
ref="layout"
|
||||||
@@ -91,6 +92,7 @@
|
|||||||
></panel-chart>
|
></panel-chart>
|
||||||
</el-dialog>
|
</el-dialog>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
@@ -862,4 +864,15 @@ export default {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
<style>
|
||||||
|
#chart-list .chart-list {
|
||||||
|
flex: 1;
|
||||||
|
height: auto !important;
|
||||||
|
width: 100%;
|
||||||
|
border-top: 1px solid transparent;
|
||||||
|
box-sizing: border-box;
|
||||||
|
}
|
||||||
|
#chart-list .group-hide-header {
|
||||||
|
height: 40px !important;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|||||||
Reference in New Issue
Block a user