提交修改

pg_adapter
dshclm 8 months ago
parent 58a5703167
commit a7ce128620

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

Loading…
Cancel
Save