fix:统计近线上会议

pg_adapter
wangxy 6 months ago
parent 554761b5c7
commit 210a1960a7

@ -62,7 +62,7 @@ public class SysMeetingnumController extends BaseController {
@PostMapping("/countMeetingMonth")
@ResponseBody
public AjaxResult countMeetingMonth() {
List<String> recentlyTwelveMonth = ObtainLastSixMonthsUtil.getRecentlyTwelveMonth();
List<String> recentlyTwelveMonth = ObtainLastSixMonthsUtil.getRecentlySixMonth();
List<Long> yAxisData = new ArrayList<>();
List<Long> yAxisDataW = new ArrayList<>();
List<Long> yAxisDataXs= new ArrayList<>();

@ -45,7 +45,10 @@
<div class="count_top">
<div class="echart">
<div class="children_echarts right_echarts">
<div id="rightMain" style="width: 1300px;height:380px"></div>
<div id="rightMain" style="width: 700px;height:380px"></div>
</div>
<div class="children_echarts left_echarts">
<div id="leftMain" style="width: 700px;height:380px"></div>
</div>
</div>
</div>
@ -145,7 +148,7 @@
},
tooltip: {},
legend: {
data:['已召开','未召开','线上会议','线下会议']
data:['已召开','未召开']
},
xAxis: {
data: response.data.data.xAxisData,
@ -173,7 +176,34 @@
itemStyle: {
color: '#a2ea57'
}
},
}
],
});
}
})
var leftMain = echarts.init(document.getElementById('leftMain'));
axios.post(prefix + '/countMeetingMonth').then(response => {
if (response.data.code == web_status.SUCCESS){
leftMain.setOption({
title: {
text: '会议类型统计'
},
tooltip: {},
legend: {
data:['线上会议','线下会议']
},
xAxis: {
data: response.data.data.xAxisData,
/*axisLabel: {
rotate: 45, // 旋转标签的角度
margin: 10, // 标签与坐标轴的间距
},*/
},
yAxis: {
},
series: [
{
name: '线上会议',
type: 'bar',
@ -194,6 +224,9 @@
});
}
})
var prefixTable = ctx + "system/checkReport";
let datas = []
$.ajax({

Loading…
Cancel
Save