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.

23 lines
817 B
JavaScript

3 years ago
$(()=>{
3 years ago
// onDutyPlan(1234,1202,33);
$.getJSON('/preassemble/getTeamStatisticsJson', function (result) {
storageStatistics(result.className, result.planAmount, result.actualAmount, result.differenceAmount,)
});
3 years ago
//按型号统计产量
3 years ago
$.getJSON('/preassemble/getMaterialProdutionJson', function (result) {
3 years ago
horizontalBarChart(result,document.getElementById("statisticalOutputByModel"));
});
//小时产量
3 years ago
$.getJSON('/preassemble/getHourProdutionJson', function (result) {
greenPolygonalHistogram(result, document.getElementById("hourlyOutputStatistics"));
});
3 years ago
//库存统计
3 years ago
$.getJSON('/preassemble/getMaterialStoreJson', function (result) {
3 years ago
threeDimensionalCylindrical(result,document.getElementById("inventoryStatistics"));
});
})