fix:修改问题

1 chart 编辑页面 unit:选择不显示,修改后保存未起作用
2 chart legend由现在的纵向排列,改为和grafana一致横向排列换行
3 url,table,singleStat全屏窗口位置显示过于靠下
4 预览:宽度过宽则显示省略号
This commit is contained in:
hyx
2020-05-08 20:40:46 +08:00
parent 7b9479034b
commit a3eeadc6b3
5 changed files with 15 additions and 6 deletions

View File

@@ -1466,7 +1466,7 @@ li{
}
.table-chart-dialog .el-dialog {
height: 80%;
margin-top: 5% !important;
margin-top: 1vh !important;
}
.table-chart-dialog .el-dialog .el-dialog__body {
height: calc(100% - 82px);

View File

@@ -11,6 +11,15 @@
.visible{
visibility: visible;
}
.chart-title {
display: flex;
}
.chart-title-text{
max-width:calc(100% - 175px);
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
}
</style>
<style>
.char-url-preview html{
@@ -40,8 +49,8 @@
<span class="panel-info-corner-inner"></span>
</span>
</el-popover>
<div slot="title">
<span class="nz-dialog-title">{{chart.title}}</span>
<div slot="title" class="chart-title">
<span class="nz-dialog-title chart-title-text">{{chart.title}}</span>
<div class="float-right panel-calendar dialog-tool" v-if="chart.type!=='url'">
<time-picker ref="calendarPanel" class="nz-dashboard-picker" style="margin-top: -12px;" @change="dateChange"></time-picker>

View File

@@ -41,7 +41,8 @@
.legend-item{
text-overflow:ellipsis;
white-space:nowrap;
width:100%;
/*width:100%;*/
margin-right:10px;
overflow-x:hidden;
cursor:pointer;
display:inline-block;

View File

@@ -81,7 +81,6 @@
<div class="legend-container" id="legendArea" ref="legendArea" v-show="firstShow" v-scrollBar:legend>
<div v-for="(item, index) in legendList" :title="item.alias?item.alias:item.name" @click="clickLegend(item.name,index)" class="legend-item" :class="{'ft-gr':isGrey[index]}" :key="'legend_' + item.name+'_'+index">
<span class="legend-shape" :style="{background:(isGrey[index]?'#D3D3D3':bgColorList[index])}"></span>{{item.alias?item.alias:item.name}}
<br/><!--bgColorList[index]-->
</div>
</div>
<!--

View File

@@ -922,7 +922,7 @@
this.chart.height=item;
},
unitSelected:function(value){
this.chart.unit=value[value.length-1];
//this.chart.unit=value[value.length-1];
},
chartTypeChange(){
let chartType = this.chart.type;