提交修改

pg_adapter
dshclm 8 months ago
parent 58a5703167
commit a7ce128620

@ -143,10 +143,10 @@
<div class="count_bottom">
<div class="echart">
<div class="children_echarts left_echarts">
<div id="leftMain" style="width: 600px;height:400px"></div>
<div id="leftMain" style="width: 700px;height:500px"></div>
</div>
<div class="children_echarts right_echarts">
<div id="rightMain" style="width: 600px;height:400px"></div>
<div id="rightMain" style="width: 700px;height:500px"></div>
</div>
</div>
</div>
@ -224,52 +224,36 @@
}
})
var rightMain = echarts.init(document.getElementById('rightMain'));
axios.post(prefix + '/countType').then(response => {
axios.post(prefix + '/countCheckType').then(response => {
if (response.data.code == web_status.SUCCESS){
rightMain.setOption({
title: {
text: '检查类型统计'
},
tooltip: {
trigger: 'item'
},
tooltip: {},
legend: {
orient: 'vertical',
x: 'left',
y:'bottom'
data:['检查类型']
},
series: [
{
type: 'pie',
radius: ['40%', '70%'],
avoidLabelOverlap: false,
itemStyle: {
borderRadius: 10,
borderColor: '#fff',
borderWidth: 2
},
label: {
show: false,
position: 'center'
xAxis: {
data: response.data.data.xAxisData,
axisLabel: {
rotate: 45, // 旋转标签的角度
margin: 10, // 标签与坐标轴的间距
},
emphasis: {
label: {
show: true,
fontSize: 20,
fontWeight: 'bold'
}
},
labelLine: {
show: false
yAxis: {
},
data: response.data.data.map((item,index) => ({
...item,
series: [
{
name: '检查类型',
type: 'bar',
data: response.data.data.yAxisData,
itemStyle: {
color: ['#ff9999', '#66b3ff'][index]
color: '#ff9999'
}
}))
}
]
],
});
}
})

Loading…
Cancel
Save