|
|
|
@ -1,23 +1,28 @@
|
|
|
|
|
$(() => {
|
|
|
|
|
//班组计划统计
|
|
|
|
|
onDutyPlan(1234, 1202, 33);
|
|
|
|
|
// onDutyPlan(1234, 1202, 33);
|
|
|
|
|
$.getJSON('/foamBox/getTeamStatisticsJson', function (result) {
|
|
|
|
|
onDutyPlan( result.planAmount, result.actualAmount, result.differenceAmount,)
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
//设备运行状态
|
|
|
|
|
let statusArray = [0, 0, 0, 0, 1, 0];
|
|
|
|
|
deviceStatus(statusArray);
|
|
|
|
|
|
|
|
|
|
//库存统计
|
|
|
|
|
$.getJSON('/foamBox/getInventoryStatistics', function (result) {
|
|
|
|
|
$.getJSON('/foamBox/getMaterialStoreJson', function (result) {
|
|
|
|
|
threeDimensionalCylindrical(result, document.getElementById("inventoryStatistics"));
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
//按型号统计产量
|
|
|
|
|
$.getJSON('/foamBox/getStatisticalOutputByModel', function (result) {
|
|
|
|
|
$.getJSON('/foamBox/getMaterialProdutionJson', function (result) {
|
|
|
|
|
horizontalBarChart(result, document.getElementById("statisticalOutputByModel"));
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
//小时产量
|
|
|
|
|
brokenLineAreaDiagram(null, document.getElementById("hourlyOutputStatistics"));
|
|
|
|
|
$.getJSON('/foamBox/getHourProdutionJson', function (result) {
|
|
|
|
|
brokenLineAreaDiagram(result, document.getElementById("hourlyOutputStatistics"));
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
//发泡参数
|
|
|
|
|
multipleBrokenLineAreaDiagram(null, document.getElementById("foamingParameters"));
|
|
|
|
@ -125,15 +130,15 @@ $(() => {
|
|
|
|
|
const deviceStatus = (statusArray) => {
|
|
|
|
|
let info = `<table style="width: 100%;height:100%;">
|
|
|
|
|
<tr style="width: 100%;">
|
|
|
|
|
<td style="border:0px solid red;text-align:center;"><img src="../../img/foamBox/${statusArray[0] == 0 ? "deviceopen.png" : "deviceclose.png"}" width="40%" height="50%"/></td>
|
|
|
|
|
<td style="border:0px solid red;text-align:center;"><img src="../../img/foamBox/${statusArray[1] == 0 ? "deviceopen.png" : "deviceclose.png"}" width="40%" height="50%"/></td>
|
|
|
|
|
<td style="border:0px solid red;text-align:center;"><img src="../../img/foamBox/${statusArray[2] == 0 ? "deviceopen.png" : "deviceclose.png"}" width="40%" height="50%"/></td>
|
|
|
|
|
<td style="border:0px solid red;text-align:center;"><img src="../../img/foamBox/${statusArray[3] == 0 ? "deviceopen.png" : "deviceclose.png"}" width="40%" height="50%"/></td>
|
|
|
|
|
<td style="border:0px solid red;text-align:right;padding-right: 12px;"><img src="../../img/foamBox/${statusArray[4] == 0 ? "deviceopen.png" : "deviceclose.png"}" width="40%" height="50%"/></td>
|
|
|
|
|
<td style="border:0px solid red;text-align:right;"><img src="../../img/foamBox/${statusArray[5] == 0 ? "deviceopen.png" : "deviceclose.png"}" width="40%" height="50%"/></td>
|
|
|
|
|
<td style="border:0px solid red;text-align:center;"><img src="../../img/foamBox/${statusArray[0] == 0 ? "deviceopen.png" : "deviceclose.png"}" style="width: 30px;height: 30px;"/></td>
|
|
|
|
|
<td style="border:0px solid red;text-align:center;"><img src="../../img/foamBox/${statusArray[1] == 0 ? "deviceopen.png" : "deviceclose.png"}" style="width: 30px;height: 30px;"/></td>
|
|
|
|
|
<td style="border:0px solid red;text-align:center;"><img src="../../img/foamBox/${statusArray[2] == 0 ? "deviceopen.png" : "deviceclose.png"}" style="width: 30px;height: 30px;"/></td>
|
|
|
|
|
<td style="border:0px solid red;text-align:center;"><img src="../../img/foamBox/${statusArray[3] == 0 ? "deviceopen.png" : "deviceclose.png"}" style="width: 30px;height: 30px;"/></td>
|
|
|
|
|
<td style="border:0px solid red;text-align:right;padding-right: 12px;"><img src="../../img/foamBox/${statusArray[4] == 0 ? "deviceopen.png" : "deviceclose.png"}" style="width: 30px;height: 30px;"/></td>
|
|
|
|
|
<td style="border:0px solid red;text-align:right;"><img src="../../img/foamBox/${statusArray[5] == 0 ? "deviceopen.png" : "deviceclose.png"}" style="width: 30px;height: 30px;"/></td>
|
|
|
|
|
</tr>
|
|
|
|
|
</table>`;
|
|
|
|
|
|
|
|
|
|
$("#deviceRunStatus").append(info);
|
|
|
|
|
$(".foamingLineRunStatus table tr").append(info);
|
|
|
|
|
|
|
|
|
|
}
|