$(()=>{ onDutyPlan(1234,1202,33); //按型号统计产量 $.getJSON('/tankShell/getStatisticalOutputByModel', function (result) { console.log(result); horizontalBarChart(result,document.getElementById("statisticalOutputByModel")); }); //小时产量 greenPolygonalHistogram(null,document.getElementById("hourlyOutputStatistics")); //库存统计 $.getJSON('/tankShell/getInventoryStatistics', function (result) { threeDimensionalCylindrical(result,document.getElementById("inventoryStatistics")); }); })