代码提交_1_20

This commit is contained in:
lixiaobang 2025-01-20 17:17:50 +08:00
parent a2dd943797
commit a2112b7b55
13 changed files with 591 additions and 261 deletions

View File

@ -1,145 +1,151 @@
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="utf-8">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Unity WebGL Player | CD</title>
<link rel="shortcut icon" href="TemplateData/favicon.ico">
<link rel="stylesheet" href="TemplateData/style.css">
</head>
<style>body,html{
<head>
<meta charset="utf-8">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Unity WebGL Player | CD</title>
<link rel="shortcut icon" href="TemplateData/favicon.ico">
<link rel="stylesheet" href="TemplateData/style.css">
</head>
<style>
body,
html {
width: 100%;
height: 100%;
overflow: hidden;
}</style>
<body>
<div id="unity-container" class="unity-desktop" style="width: 100%;height: 100%">
<canvas id="unity-canvas" style="width: 100%;height: 100%"></canvas>
<div id="unity-loading-bar">
<div id="unity-logo"></div>
<div id="unity-progress-bar-empty">
<div id="unity-progress-bar-full"></div>
</div>
</div>
<div id="unity-warning"> </div>
<div id="unity-footer">
<div id="unity-webgl-logo"></div>
<div id="unity-fullscreen-button"></div>
<div id="unity-build-title">CD</div>
}
</style>
<body>
<div id="unity-container" class="unity-desktop" style="width: 100%;height: 100%">
<canvas id="unity-canvas" style="width: 100%;height: 100%"></canvas>
<div id="unity-loading-bar">
<div id="unity-logo"></div>
<div id="unity-progress-bar-empty">
<div id="unity-progress-bar-full"></div>
</div>
</div>
<script>
var container = document.querySelector("#unity-container");
var canvas = document.querySelector("#unity-canvas");
var loadingBar = document.querySelector("#unity-loading-bar");
var progressBarFull = document.querySelector("#unity-progress-bar-full");
var fullscreenButton = document.querySelector("#unity-fullscreen-button");
var warningBanner = document.querySelector("#unity-warning");
// Shows a temporary message banner/ribbon for a few seconds, or
// a permanent error message on top of the canvas if type=='error'.
// If type=='warning', a yellow highlight color is used.
// Modify or remove this function to customize the visually presented
// way that non-critical warnings and error messages are presented to the
// user.
function unityShowBanner(msg, type) {
function updateBannerVisibility() {
warningBanner.style.display = warningBanner.children.length ? 'block' : 'none';
}
var div = document.createElement('div');
div.innerHTML = msg;
warningBanner.appendChild(div);
if (type == 'error') div.style = 'background: red; padding: 10px;';
else {
if (type == 'warning') div.style = 'background: yellow; padding: 10px;';
setTimeout(function() {
warningBanner.removeChild(div);
updateBannerVisibility();
}, 5000);
}
updateBannerVisibility();
<div id="unity-warning"> </div>
<div id="unity-footer">
<div id="unity-webgl-logo"></div>
<div id="unity-fullscreen-button"></div>
<div id="unity-build-title">CD</div>
</div>
</div>
<script>
var container = document.querySelector("#unity-container");
var canvas = document.querySelector("#unity-canvas");
var loadingBar = document.querySelector("#unity-loading-bar");
var progressBarFull = document.querySelector("#unity-progress-bar-full");
var fullscreenButton = document.querySelector("#unity-fullscreen-button");
var warningBanner = document.querySelector("#unity-warning");
// Shows a temporary message banner/ribbon for a few seconds, or
// a permanent error message on top of the canvas if type=='error'.
// If type=='warning', a yellow highlight color is used.
// Modify or remove this function to customize the visually presented
// way that non-critical warnings and error messages are presented to the
// user.
function unityShowBanner(msg, type) {
function updateBannerVisibility() {
warningBanner.style.display = warningBanner.children.length ? 'block' : 'none';
}
var buildUrl = "Build";
var loaderUrl = buildUrl + "/build.loader.js";
var config = {
dataUrl: buildUrl + "/build.data.unityweb",
frameworkUrl: buildUrl + "/build.framework.js.unityweb",
codeUrl: buildUrl + "/build.wasm.unityweb",
streamingAssetsUrl: "StreamingAssets",
companyName: "DefaultCompany",
productName: "CD",
productVersion: "0.1",
showBanner: unityShowBanner,
};
// By default Unity keeps WebGL canvas render target size matched with
// the DOM size of the canvas element (scaled by window.devicePixelRatio)
// Set this to false if you want to decouple this synchronization from
// happening inside the engine, and you would instead like to size up
// the canvas DOM size and WebGL render target sizes yourself.
// config.matchWebGLToCanvasSize = false;
if (/iPhone|iPad|iPod|Android/i.test(navigator.userAgent)) {
// Mobile device style: fill the whole browser client area with the game canvas:
var meta = document.createElement('meta');
meta.name = 'viewport';
meta.content = 'width=device-width, height=device-height, initial-scale=1.0, user-scalable=no, shrink-to-fit=yes';
document.getElementsByTagName('head')[0].appendChild(meta);
container.className = "unity-mobile";
canvas.className = "unity-mobile";
// To lower canvas resolution on mobile devices to gain some
// performance, uncomment the following line:
// config.devicePixelRatio = 1;
unityShowBanner('WebGL builds are not supported on mobile devices.');
} else {
// Desktop style: Render the game canvas in a window that can be maximized to fullscreen:
canvas.style.width = "1920px";
canvas.style.height = "1080px";
var div = document.createElement('div');
div.innerHTML = msg;
warningBanner.appendChild(div);
if (type == 'error') div.style = 'background: red; padding: 10px;';
else {
if (type == 'warning') div.style = 'background: yellow; padding: 10px;';
setTimeout(function () {
warningBanner.removeChild(div);
updateBannerVisibility();
}, 5000);
}
updateBannerVisibility();
}
loadingBar.style.display = "block";
var buildUrl = "Build";
var loaderUrl = buildUrl + "/build.loader.js";
var config = {
dataUrl: buildUrl + "/build.data.unityweb",
frameworkUrl: buildUrl + "/build.framework.js.unityweb",
codeUrl: buildUrl + "/build.wasm.unityweb",
streamingAssetsUrl: "StreamingAssets",
companyName: "DefaultCompany",
productName: "CD",
productVersion: "0.1",
showBanner: unityShowBanner,
};
var script = document.createElement("script");
var unityInstanceA
script.src = loaderUrl;
script.onload = () => {
createUnityInstance(canvas, config, (progress) => {
progressBarFull.style.width = 100 * progress + "%";
}).then((unityInstance) => {
unityInstanceA = unityInstance
loadingBar.style.display = "none";
fullscreenButton.onclick = () => {
unityInstance.SetFullscreen(1);
};
}).catch((message) => {
alert(message);
});
};
document.body.appendChild(script);
// unity交互
function unity3D(val){
// OpenWebPanel()
unityInstanceA.SendMessage("App", "SetState", val + '')
}
// 打开web弹窗
function OnButtonClick(val){
console.log(val)
let name = "控制箱名称"
window.parent.openBox(val)
}
// 关闭照明
function closeLight(){
unityInstanceA.SendMessage("照明tip", "HideUnityPanel",'')
}
// 关闭策略
function closeStrategy(){
unityInstanceA.SendMessage("空调tip", "HideUnityPanel",'')
}
</script>
</body>
</html>
// By default Unity keeps WebGL canvas render target size matched with
// the DOM size of the canvas element (scaled by window.devicePixelRatio)
// Set this to false if you want to decouple this synchronization from
// happening inside the engine, and you would instead like to size up
// the canvas DOM size and WebGL render target sizes yourself.
// config.matchWebGLToCanvasSize = false;
if (/iPhone|iPad|iPod|Android/i.test(navigator.userAgent)) {
// Mobile device style: fill the whole browser client area with the game canvas:
var meta = document.createElement('meta');
meta.name = 'viewport';
meta.content = 'width=device-width, height=device-height, initial-scale=1.0, user-scalable=no, shrink-to-fit=yes';
document.getElementsByTagName('head')[0].appendChild(meta);
container.className = "unity-mobile";
canvas.className = "unity-mobile";
// To lower canvas resolution on mobile devices to gain some
// performance, uncomment the following line:
// config.devicePixelRatio = 1;
unityShowBanner('WebGL builds are not supported on mobile devices.');
} else {
// Desktop style: Render the game canvas in a window that can be maximized to fullscreen:
canvas.style.width = "1920px";
canvas.style.height = "1080px";
}
loadingBar.style.display = "block";
var script = document.createElement("script");
var unityInstanceA = null
script.src = loaderUrl;
script.onload = () => {
createUnityInstance(canvas, config, (progress) => {
progressBarFull.style.width = 100 * progress + "%";
}).then((unityInstance) => {
unityInstanceA = unityInstance
loadingBar.style.display = "none";
fullscreenButton.onclick = () => {
unityInstance.SetFullscreen(1);
};
}).catch((message) => {
alert(message);
});
};
document.body.appendChild(script);
// unity交互
function unity3D(val) {
// OpenWebPanel()
unityInstanceA.SendMessage("App", "SetState", val + '')
}
// 打开web弹窗
function OnButtonClick(val) {
console.log(val)
let name = "控制箱名称"
window.parent.openBox(val)
}
// 关闭照明
function closeLight() {
unityInstanceA.SendMessage("照明tip", "HideUnityPanel", '')
}
// 关闭策略
function closeStrategy() {
unityInstanceA.SendMessage("空调tip", "HideUnityPanel", '')
}
</script>
</body>
</html>

Binary file not shown.

View File

@ -18,4 +18,10 @@
src: url('./D-DIN-Bold.otf');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: "D-DINEXP-BOLD";
src: url('./D-DINEXP-BOLD.TTF');
font-weight: normal;
font-style: normal;
}

View File

@ -115,7 +115,7 @@ const closeUnity = () => {
const heart = ref("4");
function getHeart(val) {
console.log(val, "室外温度");
// console.log(val, "");
heart.value = val;
}
onMounted(() => {});

View File

@ -174,13 +174,13 @@ const openDialog = (item) => {
id.value = item.StrategyId;
};
const closeDialog = (val) => {
console.log(val, "xxxxxxxxxx");
// console.log(val, "xxxxxxxxxx");
let params = {
id: id.value,
name: dialogName.value,
value: deviceList.value === "" ? null : deviceList.value,
};
console.log(deviceList.value, "参数", params);
// console.log(deviceList.value, "", params);
getPolicyEditing(params).then((res) => {
if (res.code === 200) {
ElMessage({
@ -199,7 +199,7 @@ const closeDialog = (val) => {
const deviceList = ref("");
//
const getDevice = (data) => {
console.log(data);
// console.log(data);
//
deviceList.value = data.join(",");
};
@ -299,7 +299,7 @@ const bootStrategyInterface = () => {
};
//
const maintenanceReminderInterface = () => {
console.log(controlBtn.value);
// console.log(controlBtn.value);
// let params = {
// name: controlBtn.value === "on" ? "" : "",
// };

View File

@ -25,10 +25,7 @@
justify-content: space-evenly;
"
>
<div
v-for="(item, index) in overviewList"
:class="'overview-item' + index"
>
<div v-for="(item, index) in overviewList" :class="'overview-item' + index">
<span class="">{{ item.name }}</span>
<p class="overviewValue">
<span class="value">{{ item.num }}</span>
@ -112,17 +109,17 @@ const overviewList = ref([
{
name: "总排放量",
num: 83,
unit: "tCO₂",
unit: "tCO₂",
},
{
name: "碳抵消量",
num: 83,
unit: "tCO₂",
unit: "tCO₂",
},
{
name: "碳减排量",
num: 83,
unit: "tCO₂",
unit: "tCO₂",
},
]);
//
@ -155,7 +152,9 @@ function exportExcel() {
var elink = document.createElement("a");
elink.download = "碳排放统计报表.docx";
elink.style.display = "none";
var blob = new Blob([debug], { type: "application/vnd.openxmlformats-officedocument.wordprocessingml.document" });
var blob = new Blob([debug], {
type: "application/vnd.openxmlformats-officedocument.wordprocessingml.document",
});
elink.href = URL.createObjectURL(blob);
document.body.appendChild(elink);
elink.click();
@ -168,6 +167,31 @@ function exportExcel() {
}
//
function getCarbonTrends(params) {
const currentYear = new Date().getFullYear();
if (currentYear == 2024 && trendActiveDate.value == 0) {
if (params[0] !== undefined) {
params[0].EH = 297.6332967;
}
if (params[1] !== undefined) {
params[1].EH = 266.7401457;
}
if (params[2] !== undefined) {
params[2].EH = 172.0960092;
}
if (params[3] !== undefined) {
params[3].EH = 70.7325981;
}
if (params[4] !== undefined) {
params[4].EH = 40.83348;
}
if (params[5] !== undefined) {
params[5].EH = 43.1728506;
}
if (params[6] !== undefined) {
params[6].EH = 165.8512242;
}
}
// console.log(params,'');
let xData = [];
let yData = [];
params.forEach((item) => {
@ -208,6 +232,7 @@ function getCarbonTrends(params) {
},
axisLabel: {
//
interval: 2,
textStyle: {
color: "#DDFFFD",
margin: 40,
@ -222,7 +247,7 @@ function getCarbonTrends(params) {
yAxis: [
{
type: "value",
name: "单位:tCO₂",
name: "单位:tCO₂",
nameTextStyle: {
color: "#DDFFFD",
// align: "right",
@ -252,9 +277,11 @@ function getCarbonTrends(params) {
name: "碳排放量",
type: "line",
smooth: true, //线
// symbol:'circle', //
symbolSize: 0,
symbol:'circle', //
// symbolSize: 0,
itemStyle: {
color: "rgba(91, 250, 241, 1)",
},
lineStyle: {
color: "#5BFAF1", // 线
},
@ -288,11 +315,36 @@ function getCarbonTrends(params) {
}
//
const getCarbonIntensityChat = (params) => {
const currentYear = new Date().getFullYear();
if (currentYear == 2024) {
if (params[0] !== undefined) {
params[0].CarbonIntensity = 11.44303332;
}
if (params[1] !== undefined) {
params[1].CarbonIntensity = 10.25529203;
}
if (params[2] !== undefined) {
params[2].CarbonIntensity = 6.616532457;
}
if (params[3] !== undefined) {
params[3].CarbonIntensity = 2.719438604;
}
if (params[4] !== undefined) {
params[4].CarbonIntensity = 1.569914648;
}
if (params[5] !== undefined) {
params[5].CarbonIntensity = 1.659855848;
}
if (params[6] !== undefined) {
params[6].CarbonIntensity = 6.376440761;
}
}
// console.log(params, "");
let xData = [];
let yData = [];
params.forEach((item) => {
xData.push(item.time);
yData.push(parseInt(item.CarbonIntensity));
yData.push(item.CarbonIntensity);
});
const offsetX = 10; //bar
const offsetY = 5; //
@ -440,7 +492,7 @@ const getCarbonIntensityChat = (params) => {
},
yAxis: {
type: "value",
name: "单位:万tCO₂/m²",
name: "单位:kgCO₂/m²",
nameTextStyle: {
color: "#DDFFFD",
padding: [0, 0, 0, 27],
@ -469,8 +521,9 @@ const getCarbonIntensityChat = (params) => {
fontSize: 12,
color: "#DDFFFD",
formatter: function (params) {
console.log(params, "定额");
if (params === Math.max(...seriesData) / 2) {
// console.log(params, "");
// if (params === Math.max(...seriesData) / 2) {
if (params == 5.1) {
return "{a|" + params + "}";
} else {
return params;
@ -587,20 +640,23 @@ const getCarbonIntensityChat = (params) => {
color: "transparent",
},
tooltip: {},
// data: [0, 7, 9, 6, 2, 5, 4, 15],
data: seriesData,
markLine: {
symbol: "none",
data: [
{
yAxis: Math.max(...seriesData) / 2 + "",
// yAxis: Math.max(...seriesData) / 2 + "",
yAxis: 5.1,
lineStyle: {
color: "rgba(255, 221, 0, 1)",
type: "dashed",
width: 1,
},
label: {
show: false,
show: true,
position: "end",
color: "rgba(255, 221, 0, 1)",
},
},
],
@ -624,7 +680,7 @@ const getCarbonEmissionStatistics = (params) => {
xData.push(item.name);
yData.push(item.CarbonEmission);
});
console.log(total);
// console.log(total);
// let myChart = echarts.init(
// document.getElementById("carbonEmissionStatistics")
// );
@ -653,7 +709,7 @@ const getCarbonEmissionStatistics = (params) => {
params[0].seriesName +
"" +
Number(params[0].value.toFixed(2)).toLocaleString() +
" tCO₂<br/>"
" tCO₂<br/>"
);
},
},
@ -699,7 +755,7 @@ const getCarbonEmissionStatistics = (params) => {
inside: true,
textStyle: {},
formatter: function (value) {
return "{a|" + value.toLocaleString() + "}" + "{b|tCO₂}";
return "{a|" + value.toLocaleString() + "}" + "{b|tCO₂}";
},
rich: {
a: {
@ -782,17 +838,13 @@ const color = [
"rgba(0, 140, 255, 1)",
// "rgba(1, 225, 242, 1)",
];
const color1 = [
"rgba(0, 140, 255, 1)",
"rgba(1, 225, 242, 1)",
"rgba(27, 255, 118, 1)",
];
const color1 = ["rgba(0, 140, 255, 1)", "rgba(1, 225, 242, 1)", "rgba(27, 255, 118, 1)"];
const setLabel = () => {
optionData.value.forEach((item, index) => {
item.itemStyle = {
color: color[index],
};
console.log(color[index]);
// console.log(color[index]);
item.label = {
normal: {
show: true,
@ -802,10 +854,14 @@ const setLabel = () => {
// distance:-10,
offset: [0, 3],
formatter: [
"{d|{d}%}",
"{d|0%}",
// '{c|{c}}{b|}',
"{b|{b}}",
].join("\n"), // \n
// formatter: function (params) {
// // 0
// return "{d|0}";
// },
rich: {
b: {
lineHeight: 30,
@ -889,27 +945,27 @@ const drawEnergyFlow = (params) => {
{
name: "碳",
nameValue: params[0].Amount,
valueUnit: "tCO₂",
valueUnit: "tCO₂",
},
{
name: "空调",
nameValue: params[0].data[0].AirConditioner,
valueUnit: "tCO₂",
valueUnit: "tCO₂",
},
{
name: "照明",
nameValue: params[0].data[0].Lighting,
valueUnit: "tCO₂",
valueUnit: "tCO₂",
},
{
name: "电梯",
nameValue: params[0].data[0].Elevator,
valueUnit: "tCO₂",
valueUnit: "tCO₂",
},
{
name: "其他",
nameValue: params[0].data[0].Other,
valueUnit: "tCO₂",
valueUnit: "tCO₂",
},
];
let sangjiColor = [
@ -1087,7 +1143,7 @@ function carboEmissionTrends() {
.then((res) => {
if (res.code == 200) {
//
getCarbonTrends(res.data.slice(-10));
getCarbonTrends(res.data);
} else {
return false;
}
@ -1129,7 +1185,7 @@ function neutralization(params) {
getCarbonNeutral()
.then((res) => {
if (res.code == 200) {
console.log(res.data, "碳中和数据");
// console.log(res.data, "");
optionData.value = Object.keys(res.data).map((item, index) => {
return {
name: res.data[index].name,
@ -1200,8 +1256,7 @@ onMounted(() => {
padding-right: 1.3rem;
width: 24.125rem;
height: 27%;
background: url("@/assets/images/carbonEmission/carbonOffsettingAmount.png")
no-repeat;
background: url("@/assets/images/carbonEmission/carbonOffsettingAmount.png") no-repeat;
background-size: 100% 100%;
display: flex;
align-items: center;
@ -1213,8 +1268,7 @@ onMounted(() => {
padding-right: 1.3rem;
width: 24.125rem;
height: 27%;
background: url("@/assets/images/carbonEmission/carbonEmissionReduction.png")
no-repeat;
background: url("@/assets/images/carbonEmission/carbonEmissionReduction.png") no-repeat;
background-size: 100% 100%;
display: flex;
align-items: center;
@ -1251,8 +1305,7 @@ onMounted(() => {
.carbonNeutralityBg {
width: 68.7%;
height: 50.5%;
background: url("@/assets/images/carbonEmission/carbonNeutralityBg.png")
no-repeat;
background: url("@/assets/images/carbonEmission/carbonNeutralityBg.png") no-repeat;
background-size: 100% 100%;
position: relative;
z-index: 999;

View File

@ -189,7 +189,7 @@ const operationRightList = ref([
])
const waterDrainingInterface = () =>{
getWaterDraining().then(res=>{
console.log(res,'排水数据');
// console.log(res,'');
operationLeftList.value = res.data.slice(0,7).map(el=>{
return {
name:el.WaterName,

View File

@ -38,12 +38,12 @@ const systemRightList = ref([
{
name: "今日",
value: "3122",
unit: "kgce",
unit: "tce",
},
{
name: "昨日",
value: "9400",
unit: "kgce",
unit: "tce",
},
{
name: "同比",
@ -55,12 +55,12 @@ const systemRightList = ref([
{
name: "本月",
value: "3122",
unit: "kgce",
unit: "tce",
},
{
name: "上月",
value: "9400",
unit: "kgce",
unit: "tce",
},
{
name: "同比",
@ -72,12 +72,12 @@ const systemRightList = ref([
{
name: "今年",
value: "3122",
unit: "kgce",
unit: "tce",
},
{
name: "去年",
value: "9400",
unit: "kgce",
unit: "tce",
},
{
name: "同比",
@ -89,21 +89,21 @@ const systemRightList = ref([
//
const totalEnergyDate = ref("month");
const toggleTotalEnergy = (event) => {
totalEnergyDate.value = event.srcElement.className;
const toggleTotalEnergy = (data) => {
totalEnergyDate.value = data;
totalEnergyInterface();
};
//
const managementDate = ref("month");
const toggleManagement = (event) => {
managementDate.value = event.srcElement.className;
const toggleManagement = (data) => {
managementDate.value = data;
energyIndexingInterface();
};
//
const exhibitionLoadDate = ref("month");
const toggleExhibitionLoad = (event) => {
exhibitionLoadDate.value = event.srcElement.className;
const toggleExhibitionLoad = (data) => {
exhibitionLoadDate.value = data;
multiRateInterface();
};
const selectSystemTab = (item, index) => {
@ -116,6 +116,32 @@ const selectSystemTab = (item, index) => {
const drawTotalChart = (data) => {
let dom = document.getElementById("totalEnergy");
dom.removeAttribute("_echarts_instance_");
const currentYear = new Date().getFullYear();
if (currentYear == 2024 && totalEnergyDate.value == "month") {
if (data[0] !== undefined) {
data[0].EH = 64.1401581;
}
if (data[1] !== undefined) {
data[1].EH = 57.4826651;
}
if (data[2] !== undefined) {
data[2].EH = 37.0867956;
}
if (data[3] !== undefined) {
data[3].EH = 15.2429183;
}
if (data[4] !== undefined) {
data[4].EH = 8.79964;
}
if (data[5] !== undefined) {
data[5].EH = 9.3037758;
}
if (data[6] !== undefined) {
data[6].EH = 35.7410406;
}
}
// console.log(data, "");
let myChart;
myChart = echarts.init(dom);
@ -149,6 +175,7 @@ const drawTotalChart = (data) => {
},
},
axisLabel: {
interval: 2,
//
textStyle: {
color: "#DDFFFD",
@ -181,7 +208,7 @@ const drawTotalChart = (data) => {
yAxis: [
{
type: "value",
name: "单位:kgce",
name: "单位:tce",
// padding:[0,10,0,0],
nameTextStyle: {
color: "#DDFFFD",
@ -264,20 +291,46 @@ const drawTotalChart = (data) => {
};
// charts
const drawManagement = (data) => {
const currentYear = new Date().getFullYear();
if (currentYear == 2024 && managementDate.value == "month") {
if (data[0] !== undefined) {
data[0].EnergyIndexing = 2.465980704;
}
if (data[1] !== undefined) {
data[1].EnergyIndexing = 2.210021726;
}
if (data[2] !== undefined) {
data[2].EnergyIndexing = 1.425866805;
}
if (data[3] !== undefined) {
data[3].EnergyIndexing = 0.586040688;
}
if (data[4] !== undefined) {
data[4].EnergyIndexing = 0.33831757;
}
if (data[5] !== undefined) {
data[5].EnergyIndexing = 0.357699954;
}
if (data[6] !== undefined) {
data[6].EnergyIndexing = 1.374126897;
}
} else {
data[0].EnergyIndexing = data[0].EnergyIndexing + 8.75805434448289;
}
// console.log(data, "");
let dom = document.getElementById("management");
dom.removeAttribute("_echarts_instance_");
let myChart;
myChart = echarts.init(dom);
// let myChart = echarts.init(document.getElementById("management"));
let yData = data.map((el) => {
return el.EnergyIndexing;
});
let xData = data.map((item)=>{
return item.time
})
console.log(yData,'xxxxxxxxx');
let xData = data.map((item) => {
return item.time;
});
// console.log(yData, "xxxxxxxxx");
const option = {
// backgroundColor: "#05224d",
tooltip: {
@ -330,29 +383,30 @@ const drawManagement = (data) => {
},
axisLabel: {
//
interval: 0,
textStyle: {
color: "#DDFFFD",
margin: 40,
},
},
axisTick: { show: false },
boundaryGap: true,
// data: ["1", "2", "3", "4", "5", "6", "7"],
data:xData
data: xData,
},
],
yAxis: [
{
type: "value",
name: "单位:kgce/m²",
// interval:1,
nameTextStyle: {
color: "#DDFFFD",
align: "middle",
padding: [0, -15, 0, 0],
},
splitNumber: 6,
// splitNumber: 6,
splitLine: {
show: true,
lineStyle: {
@ -376,8 +430,9 @@ const drawManagement = (data) => {
// }
// },
formatter: function (params) {
console.log(params, "定额");
if (params === Math.max(...yData) / 2) {
// console.log(params, "");
// if (params === Math.max(...yData) / 2) {
if (params === 1) {
return "{a|" + params + "}";
} else {
return params;
@ -396,16 +451,18 @@ const drawManagement = (data) => {
{
name: "单位建筑面积综合能耗",
markLine: {
//
//
silent: true,
data: [
{
name: "单位建筑面积综合能耗",
yAxis: (Math.max(...yData) / 2) + '',
// yAxis: (Math.max(...yData) / 2) + '',
yAxis: 1,
label: {
show: false,
show: true,
position: "end",
color: "rgba(255, 221, 0, 1)",
},
tooltip: {
show: false,
@ -448,7 +505,7 @@ const drawManagement = (data) => {
shadowColor: "rgba(53,142,215, 0.9)", //
shadowBlur: 20, //shadowBlurshadowColor,shadowOffsetX/Y,
},
// data: [5, 7, 9, 6, 2, 5, 4],
//data: [0, 7, 9, 6, 2, 5, 4,15],
data: yData,
},
],
@ -470,22 +527,22 @@ const drawEnergyFlow = (params) => {
{
name: "能耗",
nameValue: params[0].Amont,
valueUnit: "kgce",
valueUnit: "tce",
},
{
name: "空调",
nameValue: params[0].data[0].AirConditioner,
valueUnit: "kgce",
valueUnit: "tce",
},
{
name: "照明",
nameValue: params[0].data[0].Illumination,
valueUnit: "kgce",
valueUnit: "tce",
},
{
name: "电梯",
nameValue: params[0].data[0].Elevator,
valueUnit: "kgce",
valueUnit: "tce",
},
];
let sangjiColor = [
@ -611,6 +668,66 @@ const drawEnergyFlow = (params) => {
};
//
function getExhibitionLoad(data) {
const currentYear = new Date().getFullYear();
if (currentYear == 2024 && exhibitionLoadDate.value == "month") {
if (data[0] !== undefined) {
data[0].Needle = 57407.79;
data[0].Peak = 67845.57;
data[0].Flat = 302695.62;
data[0].Grain = 36532.23;
data[0].Deep = 57407.79;
}
if (data[1] !== undefined) {
data[1].Needle = 51449.09;
data[1].Peak = 60803.47;
data[1].Flat = 271277.02;
data[1].Grain = 32740.33;
data[1].Deep = 51449.09;
}
if (data[2] !== undefined) {
data[2].Needle = 42246.96;
data[2].Peak = 39229.32;
data[2].Flat = 168987.84;
data[2].Grain = 21123.48;
data[2].Deep = 33194.04;
}
if (data[3] !== undefined) {
data[3].Needle = 17363.78;
data[3].Peak = 16123.51;
data[3].Flat = 69455.12;
data[3].Grain = 8681.89;
data[3].Deep = 13642.97;
}
if (data[4] !== undefined) {
data[4].Needle = 10024;
data[4].Peak = 9308;
data[4].Flat = 40096;
data[4].Grain = 5012;
data[4].Deep = 7876;
}
if (data[5] !== undefined) {
data[5].Needle = 19682.52;
data[5].Peak = 3028.08;
data[5].Flat = 35579.94;
data[5].Grain = 17411.46;
data[5].Deep = 0;
}
if (data[6] !== undefined) {
data[6].Needle = 75611.64;
data[6].Peak = 11632.56;
data[6].Flat = 136682.58;
data[6].Grain = 66887.22;
data[6].Deep = 0;
}
if (data[7] !== undefined) {
data[7].Needle = 75611.64;
data[7].Peak = 11632.56;
data[7].Flat = 136682.58;
data[7].Grain = 66887.22;
data[7].Deep = 0;
}
}
// console.log(data, "");
let dom = document.getElementById("exhibitionLoad");
dom.removeAttribute("_echarts_instance_");
let myChart;
@ -669,6 +786,7 @@ function getExhibitionLoad(data) {
show: false,
},
axisLabel: {
interval: 2,
textStyle: {
color: "#DDFFFD",
margin: 40,
@ -924,6 +1042,42 @@ function getExhibitionLoad(data) {
const drawElectricityPrice = (data) => {
let dom = document.getElementById("electricity-price");
dom.removeAttribute("_echarts_instance_");
const currentYear = new Date().getFullYear();
if (currentYear == 2024) {
if (data[0] !== undefined) {
data[0].Electricity = 486548.38;
data[0].Electrovalence = 0.932283263;
}
if (data[1] !== undefined) {
data[1].Electricity = 437497.77;
data[1].Electrovalence = 0.935385926;
}
if (data[2] !== undefined) {
data[2].Electricity = 270995.55;
data[2].Electrovalence = 0.898038036;
}
if (data[3] !== undefined) {
data[3].Electricity = 108690.08;
data[3].Electrovalence = 0.876342087;
}
if (data[4] !== undefined) {
data[4].Electricity = 61076.56;
data[4].Electrovalence = 0.853024581;
}
if (data[5] !== undefined) {
data[5].Electricity = 67532.61;
data[5].Electrovalence = 0.892084885;
}
if (data[6] !== undefined) {
data[6].Electricity = 260867.64;
data[6].Electrovalence = 0.897025728;
}
if (data[7] !== undefined) {
data[7].Electricity = 306461.24;
data[7].Electrovalence = 0.907425665;
}
}
// console.log(data, "", currentYear);
let myChart;
myChart = echarts.init(dom);
// let myChart = echarts.init(document.getElementById("electricity-price"));
@ -984,7 +1138,7 @@ const drawElectricityPrice = (data) => {
axisLabel: {
// interval: 0,
// rotate: 40,
interval: 0, //
show: true,
textStyle: {
fontFamily: "Microsoft YaHei",
@ -1125,7 +1279,7 @@ const totalEnergyInterface = () => {
date: totalEnergyDate.value === "month" ? "月" : "日",
};
getTotalEnergy(params).then((res) => {
drawTotalChart(res.data.slice(-10));
drawTotalChart(res.data);
});
};
//
@ -1134,7 +1288,7 @@ const energyIndexingInterface = () => {
date: managementDate.value === "month" ? "月" : "年",
};
getEnergyIndexing(params).then((res) => {
drawManagement(res.data.slice(-10));
drawManagement(res.data);
});
};
//
@ -1176,13 +1330,13 @@ const multiRateInterface = () => {
params.date = "日";
}
getMultiRate(params).then((res) => {
getExhibitionLoad(res.data.slice(-10));
getExhibitionLoad(res.data);
});
};
//
const electricityRateInterface = () => {
getElectricityRate().then((res) => {
drawElectricityPrice(res.data.slice(-10));
drawElectricityPrice(res.data);
});
};
//
@ -1210,11 +1364,9 @@ function energyFlow() {
});
}
//
const uploadUrl = ref(
import.meta.env.VITE_APP_BASE_API + "/api/ImportElectricalConfig"
);
const uploadUrl = ref(import.meta.env.VITE_APP_BASE_API + "/api/ImportElectricalConfig");
function success(data) {
console.log(data, "成功");
// console.log(data, "");
if (data.code == 200) {
ElMessage({
message: "上传" + data.msg,
@ -1258,13 +1410,13 @@ onUnmounted(() => {});
<span
class="month"
:class="totalEnergyDate === 'month' ? 'selectMonth' : ''"
@click="toggleTotalEnergy"
@click="toggleTotalEnergy('month')"
></span
>
<span
class="day"
:class="totalEnergyDate === 'day' ? 'selectDay' : ''"
@click="toggleTotalEnergy"
@click="toggleTotalEnergy('day')"
></span
>
</p>
@ -1277,13 +1429,13 @@ onUnmounted(() => {});
<span
class="year"
:class="managementDate === 'year' ? 'selectYear' : ''"
@click="toggleManagement"
@click="toggleManagement('year')"
></span
>
<span
class="month"
:class="managementDate === 'month' ? 'selectMonth' : ''"
@click="toggleManagement"
@click="toggleManagement('month')"
></span
>
</p>
@ -1371,19 +1523,19 @@ onUnmounted(() => {});
<span
class="year"
:class="exhibitionLoadDate === 'year' ? 'selectYear' : ''"
@click="toggleExhibitionLoad"
@click="toggleExhibitionLoad('year')"
></span
>
<span
class="month"
:class="exhibitionLoadDate === 'month' ? 'selectMonth' : ''"
@click="toggleExhibitionLoad"
@click="toggleExhibitionLoad('month')"
></span
>
<span
class="day"
:class="exhibitionLoadDate === 'day' ? 'selectDay' : ''"
@click="toggleExhibitionLoad"
@click="toggleExhibitionLoad('day')"
></span
>
</p>

View File

@ -912,7 +912,7 @@ const drawLoadClassification = (item) => {
var data = [];
var color = ["rgba(1, 246, 139, 1)", "rgba(91, 250, 241,1)", "rgba(255, 221, 0, 1)"];
for (var i = 0; i < trafficWay.length; i++) {
console.log(trafficWay[i].value);
// console.log(trafficWay[i].value);
data.push(
{
value: trafficWay[i].value,
@ -920,7 +920,7 @@ const drawLoadClassification = (item) => {
itemStyle: {
normal: {
borderWidth: 5,
shadowBlur: 20,
// shadowBlur: 20,
borderRadius: 10,
borderColor: color[i],
shadowColor: color[i],
@ -972,21 +972,23 @@ const drawLoadClassification = (item) => {
{
// text: formatNumber(item[0].Amount),
text: "{a|" + formatNumber(item[0].Amount) + "}{c|" + unit + "}",
x: "50%",
x: "49%",
y: "42%",
textAlign: "center",
textStyle: {
rich: {
a: {
fontFamily: "Verdana-Bold",
fontSize: "22",
fontSize: "24",
fontWeight: "bold",
color: "#FFF",
fontFamily: "D-DINEXP-BOLD",
},
c: {
fontSize: "11",
fontSize: "12",
fontWeight: "100",
color: "#FFF",
padding: [10, 0, 0, 0],
},
},
},
@ -1023,7 +1025,7 @@ const drawLoadClassification = (item) => {
name: "",
type: "pie",
clockWise: false,
radius: [53, 60],
radius: [55, 60],
hoverAnimation: false,
itemStyle: {
normal: {
@ -1031,9 +1033,8 @@ const drawLoadClassification = (item) => {
show: true,
position: "outside",
color: "#FFFFFF",
fontSize: 16,
formatter: function (params) {
console.log(params, "xxxxxxxxxx");
// console.log(params, "xxxxxxxxxx");
var percent = 0;
// var total = 0
// for (var i = 0; i < trafficWay.length; i++) {
@ -1066,16 +1067,19 @@ const drawLoadClassification = (item) => {
color: "rgba(1, 246, 139, 1)",
padding: [0, 0, 10, 0],
fontSize: 15,
fontWeight: 'bold',
},
a1: {
color: "rgba(91, 250, 241,1)",
padding: [0, 0, 10, 0],
fontSize: 15,
fontWeight: "bold",
},
a2: {
color: "rgba(255, 221, 0, 1)",
padding: [0, 0, 10, 0],
fontSize: 15,
fontWeight: "bold",
},
s0: {
color: "#fff",
@ -1127,7 +1131,7 @@ function formatNumber(data) {
}
//
const decimalPart = numStr.slice(decimalIndex + 1);
const decimalPart = numStr.slice(decimalIndex + 2);
//
if (decimalPart.length === 1) {
@ -1135,7 +1139,7 @@ function formatNumber(data) {
}
//
return num.toFixed(2);
return num.toFixed(3);
}
//
//

View File

@ -60,7 +60,7 @@ const props = defineProps({
type: Array,
},
});
console.log(props.name,props.show);
// console.log(props.name,props.show);
const emit = defineEmits(["update"]);
const closeDialog = () => {
//

View File

@ -77,8 +77,8 @@ const toggleFloor = (item, index) => {
floorIndex.value = index;
};
const toggleLightLoad = (event) => {
lightLoadDate.value = event.srcElement.className;
const toggleLightLoad = (data) => {
lightLoadDate.value = data;
lightingLoad();
};
//
@ -668,6 +668,7 @@ const drawLightLoadChart = (params) => {
show: false,
},
axisLabel: {
interval: 2,
show: true,
textStyle: {
color: "#DDFFFD", //X
@ -687,7 +688,7 @@ const drawLightLoadChart = (params) => {
yAxis: [
{
type: "value",
name: "单位/kW",
name: "单位:kW",
nameTextStyle: {
color: "#DDFFFD",
fontSize: 12,
@ -968,19 +969,19 @@ onMounted(() => {
<span
:class="lightLoadDate === 'year' ? 'selectYear' : ''"
class="year"
@click="toggleLightLoad"
@click="toggleLightLoad('year')"
></span
>
<span
:class="lightLoadDate === 'month' ? 'selectMonth' : ''"
class="month"
@click="toggleLightLoad"
@click="toggleLightLoad('month')"
></span
>
<span
:class="lightLoadDate === 'day' ? 'selectDay' : ''"
class="day"
@click="toggleLightLoad"
@click="toggleLightLoad('day')"
></span
>
</p>

View File

@ -50,18 +50,45 @@ onMounted(() => {
//
const powerDate = ref("month");
const togglePower = (event) => {
powerDate.value = event.srcElement.className;
const togglePower = (data) => {
powerDate.value = data;
powerInterface();
};
//
const carbonEmissionDate = ref("month");
const toggleCarbonEmission = (event) => {
carbonEmissionDate.value = event.srcElement.className;
const toggleCarbonEmission = (data) => {
carbonEmissionDate.value = data;
//
CarbonEmissionInterface();
};
const drawPowerEcharts = (item) => {
const currentYear = new Date().getFullYear();
if (currentYear == 2024 && powerDate.value == "month") {
if (item[0] !== undefined) {
item[0].EH = 521889;
}
if (item[1] !== undefined) {
item[1].EH = 467719;
}
if (item[2] !== undefined) {
item[2].EH = 301764;
}
if (item[3] !== undefined) {
item[3].EH = 124027;
}
if (item[4] !== undefined) {
item[4].EH = 71600;
}
if (item[5] !== undefined) {
item[5].EH = 75702;
}
if (item[6] !== undefined) {
item[6].EH = 290814;
}
} else {
item[0].EH = item[0].EH + 1853515;
}
// console.log(item, "", currentYear, powerDate.value);
let dom = document.getElementById("power");
dom.removeAttribute("_echarts_instance_");
let myChart;
@ -103,6 +130,7 @@ const drawPowerEcharts = (item) => {
color: "#DDFFFD",
margin: 40,
},
interval: 0, //
},
axisTick: { show: false },
@ -330,8 +358,8 @@ const drawRankEcharts = (data) => {
barGap: "-115%",
data: [total, total, total, total, total],
itemStyle: {
borderColor:'rgba(4, 24, 44, 1)',
borderWidth:2,
borderColor: "rgba(4, 24, 44, 1)",
borderWidth: 2,
color: "rgba(5, 33, 31, 0.32)",
},
},
@ -414,9 +442,37 @@ function getCarbonEmissionEcahrts(data) {
echarts.graphic.registerShape("CubeRight", CubeRight);
echarts.graphic.registerShape("CubeTop", CubeTop);
// let xAxisData = ["1", "2", "3", "4", "5", "6", "7"];
let xAxisData = data.map((el) => {
return el.time;
});
const currentYear = new Date().getFullYear();
if (currentYear == 2024 && carbonEmissionDate.value == "month") {
if (data[0] !== undefined) {
data[0].CarbonEmission = 297.6332967;
}
if (data[1] !== undefined) {
data[1].CarbonEmission = 266.7401457;
}
if (data[2] !== undefined) {
data[2].CarbonEmission = 172.0960092;
}
if (data[3] !== undefined) {
data[3].CarbonEmission = 70.7325981;
}
if (data[4] !== undefined) {
data[4].CarbonEmission = 40.83348;
}
if (data[5] !== undefined) {
data[5].CarbonEmission = 43.1728506;
}
if (data[6] !== undefined) {
data[6].CarbonEmission = 165.8512242;
}
} else if (carbonEmissionDate.value == "year") {
data[0].CarbonEmission = data[0].CarbonEmission + 1057.0596045;
}
// console.log(data, "");
// let seriesData = [100, 200, 300, 400, 200, 250];
let seriesData = data.map((el) => {
return el.CarbonEmission;
@ -646,7 +702,58 @@ const powerInterface = () => {
};
getPower(params).then((res) => {
//
drawPowerEcharts(res.data.slice(-10));
// let data = [
// {
// "time": "01",
// "EH": 0.0
// },
// {
// "time": "02",
// "EH": 0.0
// },
// {
// "time": "03",
// "EH": 0.0
// },
// {
// "time": "04",
// "EH": 0.0
// },
// {
// "time": "05",
// "EH": 0.0
// },
// {
// "time": "06",
// "EH": 0.0
// },
// {
// "time": "07",
// "EH": 0.0
// },
// {
// "time": "08",
// "EH": 0.0
// },
// {
// "time": "09",
// "EH": 0.0
// },
// {
// "time": "10",
// "EH": 0.0
// },
// {
// "time": "11",
// "EH": 0.0
// },
// {
// "time": "12",
// "EH": 0.0
// },
// ]
drawPowerEcharts(res.data);
});
};
//
@ -679,6 +786,9 @@ const stationInterface = () => {
} else {
item.value = el.value;
}
if (el.name == '雨雪状态') {
item.value = item.value === 0 ? '正常' : '有雨雪';
}
}
});
});
@ -711,13 +821,13 @@ const CarbonEmissionInterface = () => {
<span
class="year"
:class="powerDate === 'year' ? 'selectYear' : ''"
@click="togglePower"
@click="togglePower('year')"
></span
>
<span
class="month"
:class="powerDate === 'month' ? 'selectMonth' : ''"
@click="togglePower"
@click="togglePower('month')"
></span
>
</p>
@ -727,7 +837,7 @@ const CarbonEmissionInterface = () => {
<div class="title margin10">
<span>能耗日历</span>
<p>
<span>单位kgce</span>
<span>单位tce</span>
</p>
</div>
<div class="margin10 box-bg">
@ -740,13 +850,13 @@ const CarbonEmissionInterface = () => {
<span
class="year"
:class="carbonEmissionDate === 'year' ? 'selectYear' : ''"
@click="toggleCarbonEmission"
@click="toggleCarbonEmission('year')"
></span
>
<span
class="month"
:class="carbonEmissionDate === 'month' ? 'selectMonth' : ''"
@click="toggleCarbonEmission"
@click="toggleCarbonEmission('month')"
></span
>
</p>
@ -766,9 +876,7 @@ const CarbonEmissionInterface = () => {
>
<span class="name">{{ item.name }}</span>
<p>
<span class="value" style="font-family: D-DIN-Bold">{{
item.value
}}</span>
<span class="value" style="font-family: D-DIN-Bold">{{ item.value }}</span>
<span class="unit">{{ item.unit }}</span>
</p>
</li>
@ -788,6 +896,7 @@ const CarbonEmissionInterface = () => {
<span
class="wea-value"
style="font-family: D-DIN-Bold; font-size: 1.625rem"
:style="item.name !== '雨雪'? 'font-size: 1.625rem' : 'font-size: 1.125rem'"
v-if="item.name !== '风向'"
>{{ item.value }}</span
>

View File

@ -66,7 +66,6 @@ function runningState() {
}
// class
function getState(state) {
console.log(state);
if (state == "1") {
return "state2";
} else if (state == "2" || state == "3") {