1.panel图表按时间查询功能(查询时间默认最近1小时) 2.panel图表按图表名称查询功能 3.panel图表刷新功能(完成的是图表上的刷新图标,定期刷新还未完成) fix:修改BUG 1.修改图表数据查询接口URL
69 lines
1.2 KiB
SCSS
69 lines
1.2 KiB
SCSS
/* ---------edit-chart-move--------- */
|
|
.chart-table {
|
|
width: 100%;
|
|
height: 100%;
|
|
// min-height: 500px;
|
|
position: relative;
|
|
background: #FFF;
|
|
border: 1px solid #d8dce1;
|
|
padding: 10px;
|
|
margin-bottom: 10px;
|
|
.table-title {
|
|
font-family: Arial;
|
|
font-size: 18px;
|
|
font-weight:bold;
|
|
}
|
|
.edit {
|
|
// position: absolute;
|
|
// right: 40px;
|
|
// top: 5px;
|
|
// z-index: 10;
|
|
padding-right: 40px;
|
|
.set-icon {
|
|
display: inline-block;
|
|
cursor: pointer;
|
|
font-size: 14px;
|
|
margin-left: 15px;
|
|
color: #5aacff;
|
|
border: 0 none;
|
|
background: transparent;
|
|
}
|
|
.list-icon {
|
|
float: left;
|
|
margin-right: 10px;
|
|
}
|
|
.show-icon {
|
|
cursor: pointer;
|
|
float: right;
|
|
font-size: 14px;
|
|
}
|
|
}
|
|
.chart-select {
|
|
position: absolute;
|
|
left: 40px;
|
|
top: 25px;
|
|
z-index: 10;
|
|
font-size: 14px;
|
|
.chart-select-btn {
|
|
margin-right: 10px;
|
|
cursor: pointer;
|
|
&.active {
|
|
color: #5aacff;
|
|
}
|
|
}
|
|
}
|
|
/*没有数据显示*/
|
|
.null {
|
|
position: absolute;
|
|
top: 50%;
|
|
width: 100%;
|
|
text-align: center;
|
|
font-size: 24px;
|
|
font-weight: 600;
|
|
}
|
|
.chart-table-col{
|
|
width: 100%;
|
|
}
|
|
|
|
}
|