|
|
|
@ -57,6 +57,17 @@ $(() => {
|
|
|
|
|
|
|
|
|
|
/*数据信息*/
|
|
|
|
|
const statusArray = [0, 0, 0, 0, 0];
|
|
|
|
|
$.getJSON('/tankShellDevice/getDataInformation', function (result) {
|
|
|
|
|
console.log(result);
|
|
|
|
|
dataInformationFunction(result)
|
|
|
|
|
});
|
|
|
|
|
$.getJSON('/tankShellDevice/getRunParameters', function (result) {
|
|
|
|
|
console.log(result);
|
|
|
|
|
energyProductionStatisticsFunction(result)
|
|
|
|
|
});
|
|
|
|
|
$.getJSON('/tankShellDevice/getRunParameters', function (result) {
|
|
|
|
|
runParamStatisticsFunction(result)
|
|
|
|
|
});
|
|
|
|
|
dataInformationFunction(statusArray);
|
|
|
|
|
|
|
|
|
|
energyProductionStatisticsFunction(statusArray);
|
|
|
|
|