You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
569 B
JavaScript
19 lines
569 B
JavaScript
3 years ago
|
$(()=>{
|
||
|
//班组统计
|
||
|
onDutyPlan(1234,1202,33);
|
||
|
|
||
|
//按型号统计产量
|
||
|
$.getJSON('/aluminumTank/getStatisticalOutputByModel', function (result) {
|
||
|
horizontalBarChart(result,document.getElementById("statisticalOutputByModel"));
|
||
|
});
|
||
|
|
||
|
//小时产量
|
||
|
bluePolygonHistogram(null,document.getElementById("hourlyOutputStatistics"));
|
||
|
|
||
|
//库存统计
|
||
|
$.getJSON('/aluminumTank/getInventoryStatistics', function (result) {
|
||
|
multipleThreeDimensionalCylindrical(result,document.getElementById("inventoryStatistics"));
|
||
|
});
|
||
|
})
|
||
|
|