处理图标的x轴最后label显示不全的问题

调整details页面下拉加载列表的样式
This commit is contained in:
renpy 2023-08-10 18:25:06 +08:00
parent c419bc3031
commit 2be80a71ff
4 changed files with 49 additions and 13 deletions

View File

@ -1264,6 +1264,7 @@ export default {
height: 52px; height: 52px;
letter-spacing: 1px; letter-spacing: 1px;
color: #ade6ee; color: #ade6ee;
justify-content: flex-start;
} }
.ant-list-item:nth-child(odd){ .ant-list-item:nth-child(odd){
background-color: rgba(13, 109, 118, 0.2); background-color: rgba(13, 109, 118, 0.2);
@ -1275,12 +1276,18 @@ export default {
margin-left: 12px; margin-left: 12px;
} }
&-info{ &-info{
width: 188px;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
margin-left: 15px;
display: inline-block; display: inline-block;
color: #ffffff; color: #ffffff;
} }
&-date{ &-date{
display: inline-block; display: inline-block;
color: #90b4c5; color: #90b4c5;
margin-left: 35px;
} }
&-actions{ &-actions{

View File

@ -19,7 +19,8 @@ export default {
}, },
data() { data() {
return { return {
option: {} option: {},
xData: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun']
} }
}, },
mounted () { mounted () {
@ -82,10 +83,19 @@ export default {
} }
}, },
axisLabel: { axisLabel: {
color: "rgba(173, 230, 238, 1)" color: "rgba(173, 230, 238, 1)",
formatter: (value,index)=>{
if(index === 0) {
return ' ' + value;
}
if(index === this.xData.length -1) {
return value + ' ';
}
return value
}
}, },
boundaryGap: false, boundaryGap: false,
data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun'] data: this.xData
}, },
yAxis: { yAxis: {
type: 'value', type: 'value',

View File

@ -36,7 +36,7 @@
</a-col> </a-col>
</a-row> </a-row>
<div class="monitor-search-btns"> <div class="monitor-search-btns">
<a-button class="monitor-search-btns-ant">Create Alert RULES</a-button> <a-button class="monitor-search-btns-ant">Create Alert Rules</a-button>
</div> </div>
</div> </div>
<div class="monitor-content"> <div class="monitor-content">
@ -121,7 +121,7 @@
<a-col :span="8" style="height: 34%;"> <a-col :span="8" style="height: 34%;">
<div class="monitor-content-item"> <div class="monitor-content-item">
<LineChart <LineChart
title="Lnternal Network Bandwidth (bit/s)" title="Internal Network Bandwidth (bit/s)"
layout="line8" layout="line8"
:dataSource="data8" :dataSource="data8"
@zoom="handelZoom" @zoom="handelZoom"
@ -247,17 +247,17 @@ export default {
], ],
data8: [ data8: [
{ {
name: "Lntranet in Rete", name: "Intranet in Rete",
data: [15, 23, 22, 28, 35, 47, 26] data: [15, 23, 22, 28, 35, 47, 26]
}, },
{ {
name: "Lntranet Out Rete", name: "Intranet Out Rete",
data: [25, 13, 32, 18, 45, 27, 36] data: [25, 13, 32, 18, 45, 27, 36]
} }
], ],
data9: [ data9: [
{ {
name: "Lntranet Out Rete", name: "Intranet Out Rete",
data: [15, 23, 22, 28, 35, 47, 26] data: [15, 23, 22, 28, 35, 47, 26]
} }
], ],

View File

@ -63,7 +63,7 @@
<div class="service-content-center-item" id="cpu"></div> <div class="service-content-center-item" id="cpu"></div>
</a-col> </a-col>
<a-col :span="12"> <a-col :span="12">
<BoxTitle title="Proces menbry usage(%)"> <BoxTitle title="Proces memory usage(%)">
<template slot="right"> <template slot="right">
<ul class="legend-list"> <ul class="legend-list">
<li v-for="(item,index) in procesMenbry.legend" :key="index"> <li v-for="(item,index) in procesMenbry.legend" :key="index">
@ -204,6 +204,7 @@ export default {
showSizeChanger: true, showSizeChanger: true,
total: 0 total: 0
}, },
xData: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun']
} }
}, },
mounted () { mounted () {
@ -374,10 +375,19 @@ export default {
} }
}, },
axisLabel: { axisLabel: {
color: "rgba(173, 230, 238, 1)" color: "rgba(173, 230, 238, 1)",
formatter: (value,index)=>{
if(index === 0) {
return ' ' + value;
}
if(index === this.xData.length -1) {
return value + ' ';
}
return value
}
}, },
boundaryGap: false, boundaryGap: false,
data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun'] data: this.xData
}, },
yAxis: { yAxis: {
type: 'value', type: 'value',
@ -450,10 +460,19 @@ export default {
} }
}, },
axisLabel: { axisLabel: {
color: "rgba(173, 230, 238, 1)" color: "rgba(173, 230, 238, 1)",
formatter: (value,index)=>{
if(index === 0) {
return ' ' + value;
}
if(index === this.xData.length -1) {
return value + ' ';
}
return value
}
}, },
boundaryGap: false, boundaryGap: false,
data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun'] data: this.xData
}, },
yAxis: { yAxis: {
type: 'value', type: 'value',