feat:table添加统计字段&panel样式调整

This commit is contained in:
wangwenrui
2021-02-19 17:28:50 +08:00
parent 41202c5afc
commit fc9b013384
10 changed files with 181 additions and 132 deletions

View File

@@ -100,7 +100,7 @@
<div class="table-list" id="tableList">
<div ref="dashboardScrollbar" style="height: 100%; overflow: auto;">
<div class="box-content">
<chart-list :from="$CONSTANTS.fromRoute.panel" @on-edit-chart="editChart" @on-refresh-time="refreshTime" @on-remove-chart="delChart" ref="chartList" :panel-lock="panelLock"></chart-list>
<chart-list :from="$CONSTANTS.fromRoute.panel" @on-edit-chart="editChart" @on-refresh-time="refreshTime" @on-remove-chart="delChart" ref="chartList" :panel-lock="panelLock" :class="{'show-top':showTopBtn}"></chart-list>
</div>
</div>
</div>
@@ -840,12 +840,15 @@
.table-list {
margin-top: 0px;
overflow-y: auto;
height: calc(100% - 92px);
height: calc(100% - 50px);
}
.box-content {
position: relative;
min-height: 100%;
.show-top:last-child{
margin-bottom: 50px;
}
}
/* end-chart list*/