2242 lines
124 KiB
Plaintext
2242 lines
124 KiB
Plaintext
<%@ page language="java" pageEncoding="UTF-8" %>
|
|
<%@ taglib uri="http://java.sun.com/jstl/core_rt" prefix="c" %>
|
|
<%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn" %>
|
|
<%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt" %>
|
|
<%@ page import="com.sipai.entity.base.ServerObject" %>
|
|
<%@ taglib uri="http://www.springsecurity.org/jsp" prefix="security" %>
|
|
<%String contextPath = request.getContextPath();%>
|
|
<!DOCTYPE html>
|
|
<!-- <html lang="zh-CN"> -->
|
|
<!-- BEGIN HEAD -->
|
|
<head>
|
|
<title><%= ServerObject.atttable.get("TOPTITLE")%>
|
|
</title>
|
|
|
|
<!-- 引用页头及CSS页-->
|
|
<jsp:include page="/jsp/inc.jsp"></jsp:include>
|
|
<style type="text/css">
|
|
</style>
|
|
<script type="text/javascript">
|
|
let beginTimeStore1 = '';
|
|
let endTimeStore1 = '';
|
|
|
|
let bizid = "";
|
|
|
|
let TypeSt = "0";
|
|
|
|
$(function () {
|
|
|
|
if ('${param.unitId}' != '') {
|
|
bizid = '${param.unitId}';
|
|
} else {
|
|
bizid = unitId;
|
|
}
|
|
|
|
initDate1();
|
|
})
|
|
|
|
function initDate1() {
|
|
let time = getNowTime();
|
|
time = getPlusTime(time, "-1", "day").substring(0, 10);
|
|
$('#dateTime').val(time);
|
|
$('#dateTime').datepicker({
|
|
format: 'yyyy-mm-dd',
|
|
weekStart: 1,
|
|
autoclose: true,
|
|
startView: 0,
|
|
minViewMode: 0,
|
|
maxViewMode: 1,
|
|
forceParse: false,
|
|
language: 'zh-CN'
|
|
}).on('changeDate', getData);
|
|
getData();
|
|
};
|
|
|
|
|
|
function getData(modelType) {
|
|
modelType = TypeSt;
|
|
$.ajax({
|
|
type: 'GET',
|
|
url: ext.contextPath + "/digitalProcess/digitalTechnologist/getSDKJspData.do",
|
|
dataType: 'json',
|
|
data: {
|
|
unitId: bizid,
|
|
jspId: 'SDKEnergyAnalysis',
|
|
modelType: modelType,
|
|
time: $('#dateTime').val()
|
|
},
|
|
async: true,
|
|
error: function () {
|
|
return false;
|
|
},
|
|
success: function (data) {
|
|
if (data.length > 0) {
|
|
console.log(data)
|
|
let sum1 = 0;
|
|
let sum2 = 0;
|
|
let sum3 = 0;
|
|
let sum4 = 0;
|
|
let sum5 = 0;
|
|
let sum6 = 0;
|
|
let sum7 = 0;
|
|
let sum8 = 0;
|
|
let sum9 = 0;
|
|
let sum10 = 0;
|
|
let sum11 = 0;
|
|
let sum12 = 0;
|
|
for (let i = 0; i < data.length; i++) {
|
|
let content = data[i];
|
|
if (content.getValueType == 'getTop1DayHis') {
|
|
let outValue = "-";
|
|
|
|
if (content.jsonArray != null) {
|
|
outValue = content.jsonArray[1];
|
|
}
|
|
// if (isNumber(outValue)) {
|
|
// outValue = toThousands(outValue);
|
|
// }
|
|
|
|
if (content.elementCode.indexOf("_Sum1") != -1) {
|
|
if (content.jsonArray != null) {
|
|
sum1 += content.jsonArray[1];
|
|
}
|
|
$('.' + content.elementCode.replace("_Sum1", "")).text(outValue);
|
|
} else if (content.elementCode.indexOf("_Sum2") != -1) {
|
|
if (content.jsonArray != null) {
|
|
sum2 += content.jsonArray[1];
|
|
}
|
|
$('.' + content.elementCode.replace("_Sum2", "")).text(outValue);
|
|
} else if (content.elementCode.indexOf("_Sum3") != -1) {
|
|
if (content.jsonArray != null) {
|
|
sum3 += content.jsonArray[1];
|
|
}
|
|
$('.' + content.elementCode.replace("_Sum3", "")).text(outValue);
|
|
} else if (content.elementCode.indexOf("_Sum4") != -1) {
|
|
if (content.jsonArray != null) {
|
|
sum4 += content.jsonArray[1];
|
|
}
|
|
$('.' + content.elementCode.replace("_Sum4", "")).text(outValue);
|
|
} else if (content.elementCode.indexOf("_Sum5") != -1) {
|
|
if (content.jsonArray != null) {
|
|
sum5 += content.jsonArray[1];
|
|
}
|
|
$('.' + content.elementCode.replace("_Sum5", "")).text(outValue);
|
|
} else if (content.elementCode.indexOf("_Sum6") != -1) {
|
|
if (content.jsonArray != null) {
|
|
sum6 += content.jsonArray[1];
|
|
}
|
|
$('.' + content.elementCode.replace("_Sum6", "")).text(outValue);
|
|
} else if (content.elementCode.indexOf("_Sum7") != -1) {
|
|
if (content.jsonArray != null) {
|
|
sum7 += content.jsonArray[1];
|
|
}
|
|
$('.' + content.elementCode.replace("_Sum7", "")).text(outValue);
|
|
} else if (content.elementCode.indexOf("_Sum8") != -1) {
|
|
if (content.jsonArray != null) {
|
|
sum8 += content.jsonArray[1];
|
|
}
|
|
$('.' + content.elementCode.replace("_Sum8", "")).text(outValue);
|
|
} else if (content.elementCode.indexOf("_Sum9") != -1) {
|
|
if (content.jsonArray != null) {
|
|
sum9 += content.jsonArray[1];
|
|
}
|
|
$('.' + content.elementCode.replace("_Sum9", "")).text(outValue);
|
|
} else if (content.elementCode.indexOf("_Sum10") != -1) {
|
|
if (content.jsonArray != null) {
|
|
sum10 += content.jsonArray[1];
|
|
}
|
|
$('.' + content.elementCode.replace("_Sum10", "")).text(outValue);
|
|
} else if (content.elementCode.indexOf("_Sum11") != -1) {
|
|
if (content.jsonArray != null) {
|
|
sum11 += content.jsonArray[1];
|
|
}
|
|
$('.' + content.elementCode.replace("_Sum11", "")).text(outValue);
|
|
} else if (content.elementCode.indexOf("_Sum12") != -1) {
|
|
if (content.jsonArray != null) {
|
|
sum12 += content.jsonArray[1];
|
|
}
|
|
$('.' + content.elementCode.replace("_Sum12", "")).text(outValue);
|
|
}
|
|
// else if (content.elementCode.indexOf("_colour") != -1) {
|
|
// if (Number(outValue) > 5) {
|
|
// $('.' + content.elementCode.replace("_colour", "")).css("color", "red");
|
|
// } else if (Number(outValue) < -5) {
|
|
// $('.' + content.elementCode.replace("_colour", "")).css("color", "#07ff00");
|
|
// }
|
|
// $('.' + content.elementCode.replace("_colour", "")).text(outValue);
|
|
// }
|
|
else {
|
|
$('.' + content.elementCode).text(outValue);
|
|
}
|
|
}
|
|
|
|
}
|
|
$('.sum1').text(toThousands(sum1.toFixed(2)));
|
|
$('.sum2').text(toThousands(sum2.toFixed(2)));
|
|
$('.sum3').text(toThousands(sum3.toFixed(2)));
|
|
$('.sum4').text(toThousands(sum4.toFixed(2)));
|
|
$('.sum5').text(toThousands(sum5.toFixed(2)));
|
|
$('.sum6').text(toThousands(sum6.toFixed(2)));
|
|
$('.sum7').text(toThousands(sum7.toFixed(2)));
|
|
$('.sum8').text(toThousands(sum8.toFixed(2)));
|
|
$('.sum9').text(toThousands(sum9.toFixed(2)));
|
|
$('.sum10').text(toThousands(sum10.toFixed(2)));
|
|
$('.sum11').text(toThousands(sum11.toFixed(2)));
|
|
$('.sum12').text(toThousands(sum12.toFixed(2)));
|
|
changeType0('0', 'SDK_WNEQ_YDL', 'SDK_WNEQ_YDL_TPFL_Day');
|
|
|
|
let plan1 = $('#SDK_WNEQ_YDL_JHZ_Mon').text();
|
|
let d_dhpc1 = $('#SDK_WNEQ_YDL_Day_DH_PC').text();
|
|
let d_dhpcl1 = (d_dhpc1 / plan1 * 100).toFixed(2);
|
|
let m_dhpc1 = $('#SDK_WNEQ_YDL_Mon_DH_PC').text();
|
|
let m_dhpcl1 = (m_dhpc1 / plan1 * 100).toFixed(2);
|
|
let y_dhpc1 = $('#SDK_WNEQ_YDL_Year_DH_PC').text();
|
|
let y_dhpcl1 = (y_dhpc1 / plan1 * 100).toFixed(2);
|
|
$('#SDK_WNEQ_YDL_Day_DH_PC').text(d_dhpcl1 + "%");
|
|
$('#SDK_WNEQ_YDL_Mon_DH_PC').text(m_dhpcl1 + "%");
|
|
$('#SDK_WNEQ_YDL_Year_DH_PC').text(y_dhpcl1 + "%");
|
|
if (d_dhpcl1 > 5) {
|
|
$('.SDK_WNEQ_YDL_Day').css("color", "red");
|
|
$('.SDK_WNEQ_YDL_Day_DH_PC').css("color", "red");
|
|
} else if (d_dhpcl1 < -5) {
|
|
$('.SDK_WNEQ_YDL_Day').css("color", "#07ff00");
|
|
$('.SDK_WNEQ_YDL_Day_DH_PC').css("color", "#07ff00");
|
|
}
|
|
if (m_dhpcl1 > 5) {
|
|
$('.SDK_WNEQ_YDL_Mon_DH').css("color", "red");
|
|
$('.SDK_WNEQ_YDL_Mon_DH_PC').css("color", "red");
|
|
} else if (m_dhpcl1 < -5) {
|
|
$('.SDK_WNEQ_YDL_Mon_DH').css("color", "#07ff00");
|
|
$('.SDK_WNEQ_YDL_Mon_DH_PC').css("color", "#07ff00");
|
|
}
|
|
if (y_dhpcl1 > 5) {
|
|
$('.SDK_WNEQ_YDL_Year_DH').css("color", "red");
|
|
$('.SDK_WNEQ_YDL_Year_DH_PC').css("color", "red");
|
|
} else if (y_dhpcl1 < -5) {
|
|
$('.SDK_WNEQ_YDL_Year_DH').css("color", "#07ff00");
|
|
$('.SDK_WNEQ_YDL_Year_DH_PC').css("color", "#07ff00");
|
|
}
|
|
|
|
let plan2 = $('#SDK_WNEQ_ZLSLY_JHZ_Mon').text();
|
|
let d_dhpc2 = $('#SDK_WNEQ_ZLSLY_Day_DH_PC').text();
|
|
let d_dhpcl2 = (d_dhpc2 / plan2 * 100).toFixed(2);
|
|
let m_dhpc2 = $('#SDK_WNEQ_ZLSLY_Mon_DH_PC').text();
|
|
let m_dhpcl2 = (m_dhpc2 / plan2 * 100).toFixed(2);
|
|
let y_dhpc2 = $('#SDK_WNEQ_ZLSLY_Year_DH_PC').text();
|
|
let y_dhpcl2 = (y_dhpc2 / plan2 * 100).toFixed(2);
|
|
$('#SDK_WNEQ_ZLSLY_Day_DH_PC').text(d_dhpcl2 + "%");
|
|
$('#SDK_WNEQ_ZLSLY_Mon_DH_PC').text(m_dhpcl2 + "%");
|
|
$('#SDK_WNEQ_ZLSLY_Year_DH_PC').text(y_dhpcl2 + "%");
|
|
if (d_dhpcl2 > 5) {
|
|
$('.SDK_WNEQ_ZLSLY_Day').css("color", "red");
|
|
$('.SDK_WNEQ_ZLSLY_Day_DH_PC').css("color", "red");
|
|
} else if (d_dhpcl2 < -5) {
|
|
$('.SDK_WNEQ_ZLSLY_Day').css("color", "#07ff00");
|
|
$('.SDK_WNEQ_ZLSLY_Day_DH_PC').css("color", "#07ff00");
|
|
}
|
|
if (m_dhpcl2 > 5) {
|
|
$('.SDK_WNEQ_ZLSLY_Mon_DH').css("color", "red");
|
|
$('.SDK_WNEQ_ZLSLY_Mon_DH_PC').css("color", "red");
|
|
} else if (m_dhpcl2 < -5) {
|
|
$('.SDK_WNEQ_ZLSLY_Mon_DH').css("color", "#07ff00");
|
|
$('.SDK_WNEQ_ZLSLY_Mon_DH_PC').css("color", "#07ff00");
|
|
}
|
|
if (y_dhpcl2 > 5) {
|
|
$('.SDK_WNEQ_ZLSLY_Year_DH').css("color", "red");
|
|
$('.SDK_WNEQ_ZLSLY_Year_DH_PC').css("color", "red");
|
|
} else if (y_dhpcl2 < -5) {
|
|
$('.SDK_WNEQ_ZLSLY_Year_DH').css("color", "#07ff00");
|
|
$('.SDK_WNEQ_ZLSLY_Year_DH_PC').css("color", "#07ff00");
|
|
}
|
|
|
|
let plan3 = $('#SDK_WNEQ_TRQLY_JHZ_Mon').text();
|
|
let d_dhpc3 = $('#SDK_WNEQ_TRQLY_Day_DH_PC').text();
|
|
let d_dhpcl3 = (d_dhpc3 / plan3 * 100).toFixed(2);
|
|
let m_dhpc3 = $('#SDK_WNEQ_TRQLY_Mon_DH_PC').text();
|
|
let m_dhpcl3 = (m_dhpc3 / plan3 * 100).toFixed(2);
|
|
let y_dhpc3 = $('#SDK_WNEQ_TRQLY_Year_DH_PC').text();
|
|
let y_dhpcl3 = (y_dhpc3 / plan3 * 100).toFixed(2);
|
|
$('#SDK_WNEQ_TRQLY_Day_DH_PC').text(d_dhpcl3 + "%");
|
|
$('#SDK_WNEQ_TRQLY_Mon_DH_PC').text(m_dhpcl3 + "%");
|
|
$('#SDK_WNEQ_TRQLY_Year_DH_PC').text(y_dhpcl3 + "%");
|
|
if (d_dhpcl3 > 5) {
|
|
$('.SDK_WNEQ_TRQLY_Day').css("color", "red");
|
|
$('.SDK_WNEQ_TRQLY_Day_DH_PC').css("color", "red");
|
|
} else if (d_dhpcl3 < -5) {
|
|
$('.SDK_WNEQ_TRQLY_Day').css("color", "#07ff00");
|
|
$('.SDK_WNEQ_TRQLY_Day_DH_PC').css("color", "#07ff00");
|
|
}
|
|
if (m_dhpcl3 > 5) {
|
|
$('.SDK_WNEQ_TRQLY_Mon_DH').css("color", "red");
|
|
$('.SDK_WNEQ_TRQLY_Mon_DH_PC').css("color", "red");
|
|
} else if (m_dhpcl3 < -5) {
|
|
$('.SDK_WNEQ_TRQLY_Mon_DH').css("color", "#07ff00");
|
|
$('.SDK_WNEQ_TRQLY_Mon_DH_PC').css("color", "#07ff00");
|
|
}
|
|
if (y_dhpcl3 > 5) {
|
|
$('.SDK_WNEQ_TRQLY_Year_DH').css("color", "red");
|
|
$('.SDK_WNEQ_TRQLY_Year_DH_PC').css("color", "red");
|
|
} else if (y_dhpcl3 < -5) {
|
|
$('.SDK_WNEQ_TRQLY_Year_DH').css("color", "#07ff00");
|
|
$('.SDK_WNEQ_TRQLY_Year_DH_PC').css("color", "#07ff00");
|
|
}
|
|
|
|
let plan_4 = $('#SDK_WNEQ_PAM_JHZ_Mon').text();
|
|
let d_dhpc_4 = $('#SDK_WNEQ_PAM_Day_DH_PC').text();
|
|
let d_dhpcl_4 = (d_dhpc_4 / plan_4 * 100).toFixed(2);
|
|
let m_dhpc_4 = $('#SDK_WNEQ_PAM_Mon_DH_PC').text();
|
|
let m_dhpcl_4 = (m_dhpc_4 / plan_4 * 100).toFixed(2);
|
|
let y_dhpc_4 = $('#SDK_WNEQ_PAM_Year_DH_PC').text();
|
|
let y_dhpcl_4 = (y_dhpc_4 / plan_4 * 100).toFixed(2);
|
|
$('#SDK_WNEQ_PAM_Day_DH_PC').text(d_dhpcl_4 + "%");
|
|
$('#SDK_WNEQ_PAM_Mon_DH_PC').text(m_dhpcl_4 + "%");
|
|
$('#SDK_WNEQ_PAM_Year_DH_PC').text(y_dhpcl_4 + "%");
|
|
if (d_dhpcl_4 > 5) {
|
|
$('.SDK_WNEQ_PAM_Day').css("color", "red");
|
|
$('.SDK_WNEQ_PAM_Day_DH_PC').css("color", "red");
|
|
} else if (d_dhpcl_4 < -5) {
|
|
$('.SDK_WNEQ_PAM_Day').css("color", "#07ff00");
|
|
$('.SDK_WNEQ_PAM_Day_DH_PC').css("color", "#07ff00");
|
|
}
|
|
if (m_dhpcl_4 > 5) {
|
|
$('.SDK_WNEQ_PAM_Mon_DH').css("color", "red");
|
|
$('.SDK_WNEQ_PAM_Mon_DH_PC').css("color", "red");
|
|
} else if (m_dhpcl_4 < -5) {
|
|
$('.SDK_WNEQ_PAM_Mon_DH').css("color", "#07ff00");
|
|
$('.SDK_WNEQ_PAM_Mon_DH_PC').css("color", "#07ff00");
|
|
}
|
|
if (y_dhpcl_4 > 5) {
|
|
$('.SDK_WNEQ_PAM_Year_DH').css("color", "red");
|
|
$('.SDK_WNEQ_PAM_Year_DH_PC').css("color", "red");
|
|
} else if (y_dhpcl_4 < -5) {
|
|
$('.SDK_WNEQ_PAM_Year_DH').css("color", "#07ff00");
|
|
$('.SDK_WNEQ_PAM_Year_DH_PC').css("color", "#07ff00");
|
|
}
|
|
|
|
let plan_5 = $('#SDK_WNEQ_JYLY_JHZ_Mon').text();
|
|
let d_dhpc_5 = $('#SDK_WNEQ_JYLY_Day_DH_PC').text();
|
|
let d_dhpcl_5 = (d_dhpc_5 / plan_5 * 100).toFixed(2);
|
|
let m_dhpc_5 = $('#SDK_WNEQ_JYLY_Mon_DH_PC').text();
|
|
let m_dhpcl_5 = (m_dhpc_5 / plan_5 * 100).toFixed(2);
|
|
let y_dhpc_5 = $('#SDK_WNEQ_JYLY_Year_DH_PC').text();
|
|
let y_dhpcl_5 = (y_dhpc_5 / plan_5 * 100).toFixed(2);
|
|
$('#SDK_WNEQ_JYLY_Day_DH_PC').text(d_dhpcl_5 + "%");
|
|
$('#SDK_WNEQ_JYLY_Mon_DH_PC').text(m_dhpcl_5 + "%");
|
|
$('#SDK_WNEQ_JYLY_Year_DH_PC').text(y_dhpcl_5 + "%");
|
|
if (d_dhpcl_5 > 5) {
|
|
$('.SDK_WNEQ_JYLY_Day').css("color", "red");
|
|
$('.SDK_WNEQ_JYLY_Day_DH_PC').css("color", "red");
|
|
} else if (d_dhpcl_5 < -5) {
|
|
$('.SDK_WNEQ_JYLY_Day').css("color", "#07ff00");
|
|
$('.SDK_WNEQ_JYLY_Day_DH_PC').css("color", "#07ff00");
|
|
}
|
|
if (m_dhpcl_5 > 5) {
|
|
$('.SDK_WNEQ_JYLY_Mon_DH').css("color", "red");
|
|
$('.SDK_WNEQ_JYLY_Mon_DH_PC').css("color", "red");
|
|
} else if (m_dhpcl_5 < -5) {
|
|
$('.SDK_WNEQ_JYLY_Mon_DH').css("color", "#07ff00");
|
|
$('.SDK_WNEQ_JYLY_Mon_DH_PC').css("color", "#07ff00");
|
|
}
|
|
if (y_dhpcl_5 > 5) {
|
|
$('.SDK_WNEQ_JYLY_Year_DH').css("color", "red");
|
|
$('.SDK_WNEQ_JYLY_Year_DH_PC').css("color", "red");
|
|
} else if (y_dhpcl_5 < -5) {
|
|
$('.SDK_WNEQ_JYLY_Year_DH').css("color", "#07ff00");
|
|
$('.SDK_WNEQ_JYLY_Year_DH_PC').css("color", "#07ff00");
|
|
}
|
|
|
|
let plan_6 = $('#SDK_WNEQ_HXT_JHZ_Mon').text();
|
|
let d_dhpc_6 = $('#SDK_WNEQ_HXT_Day_DH_PC').text();
|
|
let d_dhpcl_6 = (d_dhpc_6 / plan_6 * 100).toFixed(2);
|
|
let m_dhpc_6 = $('#SDK_WNEQ_HXT_Mon_DH_PC').text();
|
|
let m_dhpcl_6 = (m_dhpc_6 / plan_6 * 100).toFixed(2);
|
|
let y_dhpc_6 = $('#SDK_WNEQ_HXT_Year_DH_PC').text();
|
|
let y_dhpcl_6 = (y_dhpc_6 / plan_6 * 100).toFixed(2);
|
|
$('#SDK_WNEQ_HXT_Day_DH_PC').text(d_dhpcl_6 + "%");
|
|
$('#SDK_WNEQ_HXT_Mon_DH_PC').text(m_dhpcl_6 + "%");
|
|
$('#SDK_WNEQ_HXT_Year_DH_PC').text(y_dhpcl_6 + "%");
|
|
if (d_dhpcl_6 > 5) {
|
|
$('.SDK_WNEQ_HXT_Day').css("color", "red");
|
|
$('.SDK_WNEQ_HXT_Day_DH_PC').css("color", "red");
|
|
} else if (d_dhpcl_6 < -5) {
|
|
$('.SDK_WNEQ_HXT_Day').css("color", "#07ff00");
|
|
$('.SDK_WNEQ_HXT_Day_DH_PC').css("color", "#07ff00");
|
|
}
|
|
if (m_dhpcl_6 > 5) {
|
|
$('.SDK_WNEQ_HXT_Mon_DH').css("color", "red");
|
|
$('.SDK_WNEQ_HXT_Mon_DH_PC').css("color", "red");
|
|
} else if (m_dhpcl_6 < -5) {
|
|
$('.SDK_WNEQ_HXT_Mon_DH').css("color", "#07ff00");
|
|
$('.SDK_WNEQ_HXT_Mon_DH_PC').css("color", "#07ff00");
|
|
}
|
|
if (y_dhpcl_6 > 5) {
|
|
$('.SDK_WNEQ_HXT_Year_DH').css("color", "red");
|
|
$('.SDK_WNEQ_HXT_Year_DH_PC').css("color", "red");
|
|
} else if (y_dhpcl_6 < -5) {
|
|
$('.SDK_WNEQ_HXT_Year_DH').css("color", "#07ff00");
|
|
$('.SDK_WNEQ_HXT_Year_DH_PC').css("color", "#07ff00");
|
|
}
|
|
|
|
let plan_7 = $('#SDK_WNEQ_CAOH2_JHZ_Mon').text();
|
|
let d_dhpc_7 = $('#SDK_WNEQ_CAOH2_Day_DH_PC').text();
|
|
let d_dhpcl_7 = (d_dhpc_7 / plan_7 * 100).toFixed(2);
|
|
let m_dhpc_7 = $('#SDK_WNEQ_CAOH2_Mon_DH_PC').text();
|
|
let m_dhpcl_7 = (m_dhpc_7 / plan_7 * 100).toFixed(2);
|
|
let y_dhpc_7 = $('#SDK_WNEQ_CAOH2_Year_DH_PC').text();
|
|
let y_dhpcl_7 = (y_dhpc_7 / plan_7 * 100).toFixed(2);
|
|
$('#SDK_WNEQ_CAOH2_Day_DH_PC').text(d_dhpcl_7 + "%");
|
|
$('#SDK_WNEQ_CAOH2_Mon_DH_PC').text(m_dhpcl_7 + "%");
|
|
$('#SDK_WNEQ_CAOH2_Year_DH_PC').text(y_dhpcl_7 + "%");
|
|
if (d_dhpcl_7 > 5) {
|
|
$('.SDK_WNEQ_CAOH2_Day').css("color", "red");
|
|
$('.SDK_WNEQ_CAOH2_Day_DH_PC').css("color", "red");
|
|
} else if (d_dhpcl_7 < -5) {
|
|
$('.SDK_WNEQ_CAOH2_Day').css("color", "#07ff00");
|
|
$('.SDK_WNEQ_CAOH2_Day_DH_PC').css("color", "#07ff00");
|
|
}
|
|
if (m_dhpcl_7 > 5) {
|
|
$('.SDK_WNEQ_CAOH2_Mon_DH').css("color", "red");
|
|
$('.SDK_WNEQ_CAOH2_Mon_DH_PC').css("color", "red");
|
|
} else if (m_dhpcl_7 < -5) {
|
|
$('.SDK_WNEQ_CAOH2_Mon_DH').css("color", "#07ff00");
|
|
$('.SDK_WNEQ_CAOH2_Mon_DH_PC').css("color", "#07ff00");
|
|
}
|
|
if (y_dhpcl_7 > 5) {
|
|
$('.SDK_WNEQ_CAOH2_Year_DH').css("color", "red");
|
|
$('.SDK_WNEQ_CAOH2_Year_DH_PC').css("color", "red");
|
|
} else if (y_dhpcl_7 < -5) {
|
|
$('.SDK_WNEQ_CAOH2_Year_DH').css("color", "#07ff00");
|
|
$('.SDK_WNEQ_CAOH2_Year_DH_PC').css("color", "#07ff00");
|
|
}
|
|
|
|
let plan_8 = $('#SDK_WNEQ_LSSN_JHZ_Mon').text();
|
|
let d_dhpc_8 = $('#SDK_WNEQ_LSSN_Day_DH_PC').text();
|
|
let d_dhpcl_8 = (d_dhpc_8 / plan_8 * 100).toFixed(2);
|
|
let m_dhpc_8 = $('#SDK_WNEQ_LSSN_Mon_DH_PC').text();
|
|
let m_dhpcl_8 = (m_dhpc_8 / plan_8 * 100).toFixed(2);
|
|
let y_dhpc_8 = $('#SDK_WNEQ_LSSN_Year_DH_PC').text();
|
|
let y_dhpcl_8 = (y_dhpc_8 / plan_8 * 100).toFixed(2);
|
|
$('#SDK_WNEQ_LSSN_Day_DH_PC').text(d_dhpcl_8 + "%");
|
|
$('#SDK_WNEQ_LSSN_Mon_DH_PC').text(m_dhpcl_8 + "%");
|
|
$('#SDK_WNEQ_LSSN_Year_DH_PC').text(y_dhpcl_8 + "%");
|
|
if (d_dhpcl_8 > 5) {
|
|
$('.SDK_WNEQ_LSSN_Day').css("color", "red");
|
|
$('.SDK_WNEQ_LSSN_Day_DH_PC').css("color", "red");
|
|
} else if (d_dhpcl_8 < -5) {
|
|
$('.SDK_WNEQ_LSSN_Day').css("color", "#07ff00");
|
|
$('.SDK_WNEQ_LSSN_Day_DH_PC').css("color", "#07ff00");
|
|
}
|
|
if (m_dhpcl_8 > 5) {
|
|
$('.SDK_WNEQ_LSSN_Mon_DH').css("color", "red");
|
|
$('.SDK_WNEQ_LSSN_Mon_DH_PC').css("color", "red");
|
|
} else if (m_dhpcl_8 < -5) {
|
|
$('.SDK_WNEQ_LSSN_Mon_DH').css("color", "#07ff00");
|
|
$('.SDK_WNEQ_LSSN_Mon_DH_PC').css("color", "#07ff00");
|
|
}
|
|
if (y_dhpcl_8 > 5) {
|
|
$('.SDK_WNEQ_LSSN_Year_DH').css("color", "red");
|
|
$('.SDK_WNEQ_LSSN_Year_DH_PC').css("color", "red");
|
|
} else if (y_dhpcl_8 < -5) {
|
|
$('.SDK_WNEQ_LSSN_Year_DH').css("color", "#07ff00");
|
|
$('.SDK_WNEQ_LSSN_Year_DH_PC').css("color", "#07ff00");
|
|
}
|
|
|
|
let plan_9 = $('#SDK_WNEQ_GYY_JHZ_Mon').text();
|
|
let d_dhpc_9 = $('#SDK_WNEQ_GYY_Day_DH_PC').text();
|
|
let d_dhpcl_9 = (d_dhpc_9 / plan_9 * 100).toFixed(2);
|
|
let m_dhpc_9 = $('#SDK_WNEQ_GYY_Mon_DH_PC').text();
|
|
let m_dhpcl_9 = (m_dhpc_9 / plan_9 * 100).toFixed(2);
|
|
let y_dhpc_9 = $('#SDK_WNEQ_GYY_Year_DH_PC').text();
|
|
let y_dhpcl_9 = (y_dhpc_9 / plan_9 * 100).toFixed(2);
|
|
$('#SDK_WNEQ_GYY_Day_DH_PC').text(d_dhpcl_9 + "%");
|
|
$('#SDK_WNEQ_GYY_Mon_DH_PC').text(m_dhpcl_9 + "%");
|
|
$('#SDK_WNEQ_GYY_Year_DH_PC').text(y_dhpcl_9 + "%");
|
|
if (d_dhpcl_9 > 5) {
|
|
$('.SDK_WNEQ_GYY_Day').css("color", "red");
|
|
$('.SDK_WNEQ_GYY_Day_DH_PC').css("color", "red");
|
|
} else if (d_dhpcl_9 < -5) {
|
|
$('.SDK_WNEQ_GYY_Day').css("color", "#07ff00");
|
|
$('.SDK_WNEQ_GYY_Day_DH_PC').css("color", "#07ff00");
|
|
}
|
|
if (m_dhpcl_9 > 5) {
|
|
$('.SDK_WNEQ_GYY_Mon_DH').css("color", "red");
|
|
$('.SDK_WNEQ_GYY_Mon_DH_PC').css("color", "red");
|
|
} else if (m_dhpcl_9 < -5) {
|
|
$('.SDK_WNEQ_GYY_Mon_DH').css("color", "#07ff00");
|
|
$('.SDK_WNEQ_GYY_Mon_DH_PC').css("color", "#07ff00");
|
|
}
|
|
if (y_dhpcl_9 > 5) {
|
|
$('.SDK_WNEQ_GYY_Year_DH').css("color", "red");
|
|
$('.SDK_WNEQ_GYY_Year_DH_PC').css("color", "red");
|
|
} else if (y_dhpcl_9 < -5) {
|
|
$('.SDK_WNEQ_GYY_Year_DH').css("color", "#07ff00");
|
|
$('.SDK_WNEQ_GYY_Year_DH_PC').css("color", "#07ff00");
|
|
}
|
|
|
|
let plan_10 = $('#SDK_WNEQ_NS_JHZ_Mon').text();
|
|
let d_dhpc_10 = $('#SDK_WNEQ_NS_Day_DH_PC').text();
|
|
let d_dhpcl_10 = (d_dhpc_10 / plan_10 * 100).toFixed(2);
|
|
let m_dhpc_10 = $('#SDK_WNEQ_NS_Mon_DH_PC').text();
|
|
let m_dhpcl_10 = (m_dhpc_10 / plan_10 * 100).toFixed(2);
|
|
let y_dhpc_10 = $('#SDK_WNEQ_NS_Year_DH_PC').text();
|
|
let y_dhpcl_10 = (y_dhpc_10 / plan_10 * 100).toFixed(2);
|
|
$('#SDK_WNEQ_NS_Day_DH_PC').text(d_dhpcl_10 + "%");
|
|
$('#SDK_WNEQ_NS_Mon_DH_PC').text(m_dhpcl_10 + "%");
|
|
$('#SDK_WNEQ_NS_Year_DH_PC').text(y_dhpcl_10 + "%");
|
|
if (d_dhpcl_10 > 5) {
|
|
$('.SDK_WNEQ_NS_Day').css("color", "red");
|
|
$('.SDK_WNEQ_NS_Day_DH_PC').css("color", "red");
|
|
} else if (d_dhpcl_10 < -5) {
|
|
$('.SDK_WNEQ_NS_Day').css("color", "#07ff00");
|
|
$('.SDK_WNEQ_NS_Day_DH_PC').css("color", "#07ff00");
|
|
}
|
|
if (m_dhpcl_10 > 5) {
|
|
$('.SDK_WNEQ_NS_Mon_DH').css("color", "red");
|
|
$('.SDK_WNEQ_NS_Mon_DH_PC').css("color", "red");
|
|
} else if (m_dhpcl_10 < -5) {
|
|
$('.SDK_WNEQ_NS_Mon_DH').css("color", "#07ff00");
|
|
$('.SDK_WNEQ_NS_Mon_DH_PC').css("color", "#07ff00");
|
|
}
|
|
if (y_dhpcl_10 > 5) {
|
|
$('.SDK_WNEQ_NS_Year_DH').css("color", "red");
|
|
$('.SDK_WNEQ_NS_Year_DH_PC').css("color", "red");
|
|
} else if (y_dhpcl_10 < -5) {
|
|
$('.SDK_WNEQ_NS_Year_DH').css("color", "#07ff00");
|
|
$('.SDK_WNEQ_NS_Year_DH_PC').css("color", "#07ff00");
|
|
}
|
|
|
|
let plan_11 = $('#SDK_WNEQ_SYS_JHZ_Mon').text();
|
|
let d_dhpc_11 = $('#SDK_WNEQ_SYS_Day_DH_PC').text();
|
|
let d_dhpcl_11 = (d_dhpc_11 / plan_11 * 100).toFixed(2);
|
|
let m_dhpc_11 = $('#SDK_WNEQ_SYS_Mon_DH_PC').text();
|
|
let m_dhpcl_11 = (m_dhpc_11 / plan_11 * 100).toFixed(2);
|
|
let y_dhpc_11 = $('#SDK_WNEQ_SYS_Year_DH_PC').text();
|
|
let y_dhpcl_11 = (y_dhpc_11 / plan_11 * 100).toFixed(2);
|
|
$('#SDK_WNEQ_SYS_Day_DH_PC').text(d_dhpcl_11 + "%");
|
|
$('#SDK_WNEQ_SYS_Mon_DH_PC').text(m_dhpcl_11 + "%");
|
|
$('#SDK_WNEQ_SYS_Year_DH_PC').text(y_dhpcl_11 + "%");
|
|
if (d_dhpcl_11 > 5) {
|
|
$('.SDK_WNEQ_SYS_Day').css("color", "red");
|
|
$('.SDK_WNEQ_SYS_Day_DH_PC').css("color", "red");
|
|
} else if (d_dhpcl_11 < -5) {
|
|
$('.SDK_WNEQ_SYS_Day').css("color", "#07ff00");
|
|
$('.SDK_WNEQ_SYS_Day_DH_PC').css("color", "#07ff00");
|
|
}
|
|
if (m_dhpcl_11 > 5) {
|
|
$('.SDK_WNEQ_SYS_Mon_DH').css("color", "red");
|
|
$('.SDK_WNEQ_SYS_Mon_DH_PC').css("color", "red");
|
|
} else if (m_dhpcl_11 < -5) {
|
|
$('.SDK_WNEQ_SYS_Mon_DH').css("color", "#07ff00");
|
|
$('.SDK_WNEQ_SYS_Mon_DH_PC').css("color", "#07ff00");
|
|
}
|
|
if (y_dhpcl_11 > 5) {
|
|
$('.SDK_WNEQ_SYS_Year_DH').css("color", "red");
|
|
$('.SDK_WNEQ_SYS_Year_DH_PC').css("color", "red");
|
|
} else if (y_dhpcl_11 < -5) {
|
|
$('.SDK_WNEQ_SYS_Year_DH').css("color", "#07ff00");
|
|
$('.SDK_WNEQ_SYS_Year_DH_PC').css("color", "#07ff00");
|
|
}
|
|
|
|
let plan_12 = $('#SDK_WNEQ_YBFH_JHZ_Mon').text();
|
|
let d_dhpc_12 = $('#SDK_WNEQ_YBFH_Day_DH_PC').text();
|
|
let d_dhpcl_12 = (d_dhpc_12 / plan_12 * 100).toFixed(2);
|
|
let m_dhpc_12 = $('#SDK_WNEQ_YBFH_Mon_DH_PC').text();
|
|
let m_dhpcl_12 = (m_dhpc_12 / plan_12 * 100).toFixed(2);
|
|
let y_dhpc_12 = $('#SDK_WNEQ_YBFH_Year_DH_PC').text();
|
|
let y_dhpcl_12 = (y_dhpc_12 / plan_12 * 100).toFixed(2);
|
|
$('#SDK_WNEQ_YBFH_Day_DH_PC').text(d_dhpcl_12 + "%");
|
|
$('#SDK_WNEQ_YBFH_Mon_DH_PC').text(m_dhpcl_12 + "%");
|
|
$('#SDK_WNEQ_YBFH_Year_DH_PC').text(y_dhpcl_12 + "%");
|
|
if (d_dhpcl_12 > 5) {
|
|
$('.SDK_WNEQ_YBFH_Day').css("color", "red");
|
|
$('.SDK_WNEQ_YBFH_Day_DH_PC').css("color", "red");
|
|
} else if (d_dhpcl_12 < -5) {
|
|
$('.SDK_WNEQ_YBFH_Day').css("color", "#07ff00");
|
|
$('.SDK_WNEQ_YBFH_Day_DH_PC').css("color", "#07ff00");
|
|
}
|
|
if (m_dhpcl_12 > 5) {
|
|
$('.SDK_WNEQ_YBFH_Mon_DH').css("color", "red");
|
|
$('.SDK_WNEQ_YBFH_Mon_DH_PC').css("color", "red");
|
|
} else if (m_dhpcl_12 < -5) {
|
|
$('.SDK_WNEQ_YBFH_Mon_DH').css("color", "#07ff00");
|
|
$('.SDK_WNEQ_YBFH_Mon_DH_PC').css("color", "#07ff00");
|
|
}
|
|
if (y_dhpcl_12 > 5) {
|
|
$('.SDK_WNEQ_YBFH_Year_DH').css("color", "red");
|
|
$('.SDK_WNEQ_YBFH_Year_DH_PC').css("color", "red");
|
|
} else if (y_dhpcl_12 < -5) {
|
|
$('.SDK_WNEQ_YBFH_Year_DH').css("color", "#07ff00");
|
|
$('.SDK_WNEQ_YBFH_Year_DH_PC').css("color", "#07ff00");
|
|
}
|
|
|
|
}
|
|
}
|
|
});
|
|
}
|
|
|
|
function changeType(st) {
|
|
TypeSt = st;
|
|
if (st == '0') {
|
|
$('#Type0').css("border-bottom", "2px solid #00ffff");
|
|
$('#Type0').css("font-weight", "700");
|
|
$('#Type0').css("color", "#00ffff");
|
|
|
|
$('#Type1').css("border-bottom", "0px solid #00ffff");
|
|
$('#Type1').css("font-weight", "400");
|
|
$('#Type1').css("color", "#ffffff");
|
|
|
|
$('#Type2').css("border-bottom", "0px solid #00ffff");
|
|
$('#Type2').css("font-weight", "400");
|
|
$('#Type2').css("color", "#ffffff");
|
|
|
|
$('#type1Show').css("display", "block");
|
|
$('#type2Show').css("display", "none");
|
|
$('#type3Show').css("display", "none");
|
|
changeType0('0', 'SDK_WNEQ_YDL', 'SDK_WNEQ_YDL_TPFL_Day');
|
|
} else if (st == '1') {
|
|
$('#Type1').css("border-bottom", "2px solid #00ffff");
|
|
$('#Type1').css("font-weight", "700");
|
|
$('#Type1').css("color", "#00ffff");
|
|
|
|
$('#Type0').css("border-bottom", "0px solid #00ffff");
|
|
$('#Type0').css("font-weight", "400");
|
|
$('#Type0').css("color", "#ffffff");
|
|
|
|
$('#Type2').css("border-bottom", "0px solid #00ffff");
|
|
$('#Type2').css("font-weight", "400");
|
|
$('#Type2').css("color", "#ffffff");
|
|
|
|
$('#type2Show').css("display", "block");
|
|
$('#type1Show').css("display", "none");
|
|
$('#type3Show').css("display", "none");
|
|
changeType1('0', 'SDK_WNEQ_YDL_JHZ_Mon,SDK_WNEQ_YDL_Day', 'SDK_WNEQ_YDL_Day_DH_PC');
|
|
} else if (st == '2') {
|
|
$('#Type2').css("border-bottom", "2px solid #00ffff");
|
|
$('#Type2').css("font-weight", "700");
|
|
$('#Type2').css("color", "#00ffff");
|
|
|
|
$('#Type0').css("border-bottom", "0px solid #00ffff");
|
|
$('#Type0').css("font-weight", "400");
|
|
$('#Type0').css("color", "#ffffff");
|
|
|
|
$('#Type1').css("border-bottom", "0px solid #00ffff");
|
|
$('#Type1').css("font-weight", "400");
|
|
$('#Type1').css("color", "#ffffff");
|
|
|
|
$('#type3Show').css("display", "block");
|
|
$('#type1Show').css("display", "none");
|
|
$('#type2Show').css("display", "none");
|
|
changeType2_1('0', 'SDK_WNEQ_YDL_TPFL_Day');
|
|
changeType2_2('0', 'SDK_WNEQ_YDL_TPF_DH_Day');
|
|
}
|
|
getData(TypeSt);
|
|
}
|
|
|
|
function changeType0(st, mpid1, mpid2) {
|
|
for (let i = 0; i < 12; i++) {
|
|
if (i == Number(st)) {
|
|
$('#type0_tr_' + i).css('background', 'rgba(0,177,255,0.31)');
|
|
$('#type0_tr_' + i).css('border', '1px solid #00cbff');
|
|
|
|
let edt = $('#dateTime').val() + " 23:59";
|
|
let sdt = getPlusTime(edt, "-1", "month");
|
|
document.getElementById("chart1").removeAttribute("_echarts_instance_");
|
|
document.getElementById("chart2").removeAttribute("_echarts_instance_");
|
|
$.post(ext.contextPath + '/data/getDetailData.do', {
|
|
mpcode: mpid1, sdt: sdt, edt: edt
|
|
}, function (result) {
|
|
let series = [];
|
|
let legendName = [];
|
|
if (result.length > 0) {
|
|
legendName.push(result[0].name);
|
|
series.push({
|
|
data: result[0].data,
|
|
symbol: 'none',
|
|
name: result[0].name,
|
|
type: 'line',
|
|
areaStyle: {}
|
|
})
|
|
}
|
|
setTimeout(function () {
|
|
getChart1(series, legendName);
|
|
}, 1000);
|
|
}, 'json');
|
|
|
|
$.post(ext.contextPath + '/data/getDetailData.do', {
|
|
mpcode: mpid2, sdt: sdt, edt: edt
|
|
}, function (result) {
|
|
let series = [];
|
|
let legendName = [];
|
|
if (result.length > 0) {
|
|
legendName.push(result[0].name);
|
|
series.push({
|
|
data: result[0].data,
|
|
symbol: 'none',
|
|
name: result[0].name,
|
|
type: 'line',
|
|
areaStyle: {}
|
|
})
|
|
}
|
|
setTimeout(function () {
|
|
getChart2(series, legendName);
|
|
}, 1000);
|
|
}, 'json');
|
|
} else {
|
|
$('#type0_tr_' + i).css('background', 'rgba(0,177,255,0)');
|
|
$('#type0_tr_' + i).css('border', '0px solid #00cbff');
|
|
}
|
|
}
|
|
}
|
|
|
|
function changeType1(st, mpid1, mpid2) {
|
|
// mpid1 = mpid1.split(",");
|
|
for (let i = 0; i < 12; i++) {
|
|
if (i == Number(st)) {
|
|
$('#type1_tr_' + i).css('background', 'rgba(0,177,255,0.31)');
|
|
$('#type1_tr_' + i).css('border', '1px solid #00cbff');
|
|
|
|
let edt = $('#dateTime').val() + " 23:59";
|
|
let sdt = getPlusTime(edt, "-1", "month");
|
|
document.getElementById("chart3").removeAttribute("_echarts_instance_");
|
|
document.getElementById("chart4").removeAttribute("_echarts_instance_");
|
|
|
|
$.ajax({
|
|
type: 'GET',
|
|
url: ext.contextPath + "/data/getDetailData.do",
|
|
async: false,
|
|
globle: false,
|
|
dataType: 'json',
|
|
data: {
|
|
mpcode: mpid1, sdt: sdt, edt: edt
|
|
},
|
|
error: function () {
|
|
return false;
|
|
},
|
|
success: function (result) {
|
|
let series = [];
|
|
let legendName = [];
|
|
if (result.length > 0) {
|
|
legendName.push(result[1].name + "计划值", result[1].name + "实际值");
|
|
series.push({
|
|
data: result[0].data,
|
|
symbol: 'none',
|
|
name: result[1].name + "计划值",
|
|
type: 'line'
|
|
// areaStyle: {}
|
|
})
|
|
series.push({
|
|
data: result[1].data,
|
|
symbol: 'none',
|
|
name: result[1].name + "实际值",
|
|
type: 'line',
|
|
areaStyle: {}
|
|
})
|
|
}
|
|
// console.log(series)
|
|
setTimeout(function () {
|
|
getChart3(series, legendName);
|
|
}, 1000);
|
|
}
|
|
});
|
|
|
|
|
|
$.post(ext.contextPath + '/data/getDetailData.do', {
|
|
mpcode: mpid2, sdt: sdt, edt: edt
|
|
}, function (result) {
|
|
let series = [];
|
|
let legendName = [];
|
|
if (result.length > 0) {
|
|
legendName.push(result[0].name);
|
|
series.push({
|
|
data: result[0].data,
|
|
symbol: 'none',
|
|
name: result[0].name,
|
|
type: 'line',
|
|
areaStyle: {}
|
|
})
|
|
}
|
|
setTimeout(function () {
|
|
getChart4(series, legendName);
|
|
}, 1000);
|
|
}, 'json');
|
|
} else {
|
|
$('#type1_tr_' + i).css('background', 'rgba(0,177,255,0)');
|
|
$('#type1_tr_' + i).css('border', '0px solid #00cbff');
|
|
}
|
|
}
|
|
}
|
|
|
|
function changeType2_1(st, mpid1) {
|
|
for (let i = 0; i < 12; i++) {
|
|
if (i == Number(st)) {
|
|
$('#type2_1_tr_' + i).css('background', 'rgba(0,177,255,0.31)');
|
|
$('#type2_1_tr_' + i).css('border', '1px solid #00cbff');
|
|
|
|
let edt = $('#dateTime').val() + " 23:59";
|
|
let sdt = getPlusTime(edt, "-1", "month");
|
|
document.getElementById("chart5").removeAttribute("_echarts_instance_");
|
|
$.post(ext.contextPath + '/data/getDetailData.do', {
|
|
mpcode: mpid1, sdt: sdt, edt: edt
|
|
}, function (result) {
|
|
let series = [];
|
|
let legendName = [];
|
|
if (result.length > 0) {
|
|
legendName.push(result[0].name);
|
|
series.push({
|
|
data: result[0].data,
|
|
symbol: 'none',
|
|
name: result[0].name,
|
|
type: 'line',
|
|
areaStyle: {}
|
|
})
|
|
}
|
|
setTimeout(function () {
|
|
getChart5(series, legendName);
|
|
}, 1000);
|
|
}, 'json');
|
|
} else {
|
|
$('#type2_1_tr_' + i).css('background', 'rgba(0,177,255,0)');
|
|
$('#type2_1_tr_' + i).css('border', '0px solid #00cbff');
|
|
}
|
|
}
|
|
}
|
|
|
|
function changeType2_2(st, mpid1) {
|
|
for (let i = 0; i < 12; i++) {
|
|
if (i == Number(st)) {
|
|
$('#type2_2_tr_' + i).css('background', 'rgba(0,177,255,0.31)');
|
|
$('#type2_2_tr_' + i).css('border', '1px solid #00cbff');
|
|
|
|
let edt = $('#dateTime').val() + " 23:59";
|
|
let sdt = getPlusTime(edt, "-1", "month");
|
|
document.getElementById("chart6").removeAttribute("_echarts_instance_");
|
|
$.post(ext.contextPath + '/data/getDetailData.do', {
|
|
mpcode: mpid1, sdt: sdt, edt: edt
|
|
}, function (result) {
|
|
let series = [];
|
|
let legendName = [];
|
|
if (result.length > 0) {
|
|
legendName.push(result[0].name);
|
|
series.push({
|
|
data: result[0].data,
|
|
symbol: 'none',
|
|
name: result[0].name,
|
|
type: 'line',
|
|
areaStyle: {}
|
|
})
|
|
}
|
|
setTimeout(function () {
|
|
getChart6(series, legendName);
|
|
}, 1000);
|
|
}, 'json');
|
|
} else {
|
|
$('#type2_2_tr_' + i).css('background', 'rgba(0,177,255,0)');
|
|
$('#type2_2_tr_' + i).css('border', '0px solid #00cbff');
|
|
}
|
|
}
|
|
}
|
|
|
|
function getChart1(series, legendName) {
|
|
let myChart = echarts.init(document.getElementById("chart1"));
|
|
let option = {
|
|
color: ['#FFDE09'],
|
|
legend: {
|
|
data: legendName,
|
|
left: 'center',
|
|
textStyle: {
|
|
color: '#ffffff'
|
|
}
|
|
},
|
|
grid: {
|
|
left: '2%', // 与容器左侧的距离
|
|
right: '2%', // 与容器右侧的距离
|
|
top: '50px', // 与容器顶部的距离
|
|
bottom: '5%', // 与容器底部的距离
|
|
containLabel: true
|
|
},
|
|
tooltip: {
|
|
trigger: 'axis',
|
|
formatter: function (params, ticket, callback) {
|
|
var htmlStr = '';
|
|
for (var i = 0; i < params.length; i++) {
|
|
var param = params[i];
|
|
// console.log(param);
|
|
var xName = param.name;//x轴的名称
|
|
var seriesName = param.seriesName;//图例名称
|
|
var xvalue = param.value[0];//x轴值
|
|
var yvalue = param.value[1];//y轴值
|
|
var remarkvalue = param.value[2];//备注轴值
|
|
var color = param.color;//图例颜色
|
|
var dataIndex = param.dataIndex;
|
|
var seriesIndex = param.seriesIndex;
|
|
htmlStr += '<div>';
|
|
htmlStr += xvalue + '<br/>';
|
|
htmlStr += '<span style="margin-right:5px;display:inline-block;width:10px;height:10px;border-radius:5px;background-color:' + color + ';"></span>';
|
|
htmlStr += seriesName + ':' + yvalue + '';
|
|
htmlStr += '</div>';
|
|
}
|
|
return htmlStr;
|
|
}
|
|
// alwaysShowContent:true,
|
|
},
|
|
xAxis: {
|
|
type: 'time',
|
|
axisLine: {
|
|
lineStyle: {
|
|
color: '#ffffff'
|
|
}
|
|
},
|
|
axisTick: {
|
|
show: false
|
|
},
|
|
axisLabel: {
|
|
color: '#A0A0A0'
|
|
}
|
|
},
|
|
yAxis: {
|
|
type: 'value',
|
|
axisLine: {
|
|
show: true,
|
|
lineStyle: {
|
|
color: '#ffffff'
|
|
}
|
|
},
|
|
axisLabel: {
|
|
color: '#A0A0A0'
|
|
},
|
|
splitLine: {
|
|
lineStyle: {
|
|
type: 'dashed'
|
|
}
|
|
}
|
|
},
|
|
series: series
|
|
};
|
|
myChart.setOption(option, true);
|
|
}
|
|
|
|
function getChart2(series, legendName) {
|
|
let myChart = echarts.init(document.getElementById("chart2"));
|
|
let option = {
|
|
color: ['#09C4FF'],
|
|
legend: {
|
|
data: legendName,
|
|
left: 'center',
|
|
textStyle: {
|
|
color: '#ffffff'
|
|
}
|
|
},
|
|
// legend: {
|
|
// data: legendName,
|
|
// left: 'right',
|
|
// textStyle: {
|
|
// color: '#ffffff'
|
|
// }
|
|
// },
|
|
grid: {
|
|
left: '2%', // 与容器左侧的距离
|
|
right: '2%', // 与容器右侧的距离
|
|
top: '50px', // 与容器顶部的距离
|
|
bottom: '5%', // 与容器底部的距离
|
|
containLabel: true
|
|
},
|
|
tooltip: {
|
|
trigger: 'axis',
|
|
formatter: function (params, ticket, callback) {
|
|
var htmlStr = '';
|
|
for (var i = 0; i < params.length; i++) {
|
|
var param = params[i];
|
|
// console.log(param);
|
|
var xName = param.name;//x轴的名称
|
|
var seriesName = param.seriesName;//图例名称
|
|
var xvalue = param.value[0];//x轴值
|
|
var yvalue = param.value[1];//y轴值
|
|
var remarkvalue = param.value[2];//备注轴值
|
|
var color = param.color;//图例颜色
|
|
var dataIndex = param.dataIndex;
|
|
var seriesIndex = param.seriesIndex;
|
|
htmlStr += '<div>';
|
|
htmlStr += xvalue + '<br/>';
|
|
htmlStr += '<span style="margin-right:5px;display:inline-block;width:10px;height:10px;border-radius:5px;background-color:' + color + ';"></span>';
|
|
htmlStr += seriesName + ':' + yvalue + '';
|
|
htmlStr += '</div>';
|
|
}
|
|
return htmlStr;
|
|
}
|
|
// alwaysShowContent:true,
|
|
},
|
|
xAxis: {
|
|
type: 'time',
|
|
axisLine: {
|
|
lineStyle: {
|
|
color: '#ffffff'
|
|
}
|
|
},
|
|
axisTick: {
|
|
show: false
|
|
},
|
|
axisLabel: {
|
|
color: '#A0A0A0'
|
|
}
|
|
},
|
|
yAxis: {
|
|
type: 'value',
|
|
axisLine: {
|
|
show: true,
|
|
lineStyle: {
|
|
color: '#ffffff'
|
|
}
|
|
},
|
|
axisLabel: {
|
|
color: '#A0A0A0'
|
|
},
|
|
splitLine: {
|
|
lineStyle: {
|
|
type: 'dashed'
|
|
}
|
|
}
|
|
},
|
|
series: series
|
|
};
|
|
myChart.setOption(option, true);
|
|
}
|
|
|
|
function getChart3(series, legendName) {
|
|
let myChart = echarts.init(document.getElementById("chart3"));
|
|
let option = {
|
|
color: ['#FF09E6', '#FFDE09'],
|
|
legend: {
|
|
data: legendName,
|
|
left: 'right',
|
|
textStyle: {
|
|
color: '#ffffff'
|
|
}
|
|
},
|
|
grid: {
|
|
left: '2%', // 与容器左侧的距离
|
|
right: '2%', // 与容器右侧的距离
|
|
top: '50px', // 与容器顶部的距离
|
|
bottom: '5%', // 与容器底部的距离
|
|
containLabel: true
|
|
},
|
|
tooltip: {
|
|
trigger: 'axis',
|
|
formatter: function (params, ticket, callback) {
|
|
var htmlStr = '';
|
|
for (var i = 0; i < params.length; i++) {
|
|
var param = params[i];
|
|
// console.log(param);
|
|
var xName = param.name;//x轴的名称
|
|
var seriesName = param.seriesName;//图例名称
|
|
var xvalue = param.value[0];//x轴值
|
|
var yvalue = param.value[1];//y轴值
|
|
var remarkvalue = param.value[2];//备注轴值
|
|
var color = param.color;//图例颜色
|
|
var dataIndex = param.dataIndex;
|
|
var seriesIndex = param.seriesIndex;
|
|
htmlStr += '<div>';
|
|
htmlStr += xvalue + '<br/>';
|
|
htmlStr += '<span style="margin-right:5px;display:inline-block;width:10px;height:10px;border-radius:5px;background-color:' + color + ';"></span>';
|
|
htmlStr += seriesName + ':' + yvalue + '';
|
|
htmlStr += '</div>';
|
|
}
|
|
return htmlStr;
|
|
}
|
|
// alwaysShowContent:true,
|
|
},
|
|
xAxis: {
|
|
type: 'time',
|
|
axisLine: {
|
|
lineStyle: {
|
|
color: '#ffffff'
|
|
}
|
|
},
|
|
axisTick: {
|
|
show: false
|
|
},
|
|
axisLabel: {
|
|
color: '#A0A0A0'
|
|
}
|
|
},
|
|
yAxis: {
|
|
type: 'value',
|
|
axisLine: {
|
|
show: true,
|
|
lineStyle: {
|
|
color: '#ffffff'
|
|
}
|
|
},
|
|
axisLabel: {
|
|
color: '#A0A0A0'
|
|
},
|
|
splitLine: {
|
|
lineStyle: {
|
|
type: 'dashed'
|
|
}
|
|
}
|
|
},
|
|
series: series
|
|
};
|
|
myChart.setOption(option, true);
|
|
}
|
|
|
|
function getChart4(series, legendName) {
|
|
let myChart = echarts.init(document.getElementById("chart4"));
|
|
let option = {
|
|
color: ['#09C4FF'],
|
|
legend: {
|
|
data: legendName,
|
|
left: 'right',
|
|
textStyle: {
|
|
color: '#ffffff'
|
|
}
|
|
},
|
|
grid: {
|
|
left: '2%', // 与容器左侧的距离
|
|
right: '2%', // 与容器右侧的距离
|
|
top: '50px', // 与容器顶部的距离
|
|
bottom: '5%', // 与容器底部的距离
|
|
containLabel: true
|
|
},
|
|
tooltip: {
|
|
trigger: 'axis',
|
|
formatter: function (params, ticket, callback) {
|
|
var htmlStr = '';
|
|
for (var i = 0; i < params.length; i++) {
|
|
var param = params[i];
|
|
// console.log(param);
|
|
var xName = param.name;//x轴的名称
|
|
var seriesName = param.seriesName;//图例名称
|
|
var xvalue = param.value[0];//x轴值
|
|
var yvalue = param.value[1];//y轴值
|
|
var remarkvalue = param.value[2];//备注轴值
|
|
var color = param.color;//图例颜色
|
|
var dataIndex = param.dataIndex;
|
|
var seriesIndex = param.seriesIndex;
|
|
htmlStr += '<div>';
|
|
htmlStr += xvalue + '<br/>';
|
|
htmlStr += '<span style="margin-right:5px;display:inline-block;width:10px;height:10px;border-radius:5px;background-color:' + color + ';"></span>';
|
|
htmlStr += seriesName + ':' + yvalue + '';
|
|
htmlStr += '</div>';
|
|
}
|
|
return htmlStr;
|
|
}
|
|
// alwaysShowContent:true,
|
|
},
|
|
xAxis: {
|
|
type: 'time',
|
|
axisLine: {
|
|
lineStyle: {
|
|
color: '#ffffff'
|
|
}
|
|
},
|
|
axisTick: {
|
|
show: false
|
|
},
|
|
axisLabel: {
|
|
color: '#A0A0A0'
|
|
}
|
|
},
|
|
yAxis: {
|
|
type: 'value',
|
|
axisLine: {
|
|
show: true,
|
|
lineStyle: {
|
|
color: '#ffffff'
|
|
}
|
|
},
|
|
axisLabel: {
|
|
color: '#A0A0A0'
|
|
},
|
|
splitLine: {
|
|
lineStyle: {
|
|
type: 'dashed'
|
|
}
|
|
}
|
|
},
|
|
series: series
|
|
};
|
|
myChart.setOption(option, true);
|
|
}
|
|
|
|
function getChart5(series, legendName) {
|
|
let myChart = echarts.init(document.getElementById("chart5"));
|
|
let option = {
|
|
color: ['#FFDE09'],
|
|
legend: {
|
|
data: legendName,
|
|
left: 'center',
|
|
textStyle: {
|
|
color: '#ffffff'
|
|
}
|
|
},
|
|
grid: {
|
|
left: '2%', // 与容器左侧的距离
|
|
right: '2%', // 与容器右侧的距离
|
|
top: '50px', // 与容器顶部的距离
|
|
bottom: '5%', // 与容器底部的距离
|
|
containLabel: true
|
|
},
|
|
tooltip: {
|
|
trigger: 'axis',
|
|
formatter: function (params, ticket, callback) {
|
|
var htmlStr = '';
|
|
for (var i = 0; i < params.length; i++) {
|
|
var param = params[i];
|
|
// console.log(param);
|
|
var xName = param.name;//x轴的名称
|
|
var seriesName = param.seriesName;//图例名称
|
|
var xvalue = param.value[0];//x轴值
|
|
var yvalue = param.value[1];//y轴值
|
|
var remarkvalue = param.value[2];//备注轴值
|
|
var color = param.color;//图例颜色
|
|
var dataIndex = param.dataIndex;
|
|
var seriesIndex = param.seriesIndex;
|
|
htmlStr += '<div>';
|
|
htmlStr += xvalue + '<br/>';
|
|
htmlStr += '<span style="margin-right:5px;display:inline-block;width:10px;height:10px;border-radius:5px;background-color:' + color + ';"></span>';
|
|
htmlStr += seriesName + ':' + yvalue + '';
|
|
htmlStr += '</div>';
|
|
}
|
|
return htmlStr;
|
|
}
|
|
// alwaysShowContent:true,
|
|
},
|
|
xAxis: {
|
|
type: 'time',
|
|
axisLine: {
|
|
lineStyle: {
|
|
color: '#ffffff'
|
|
}
|
|
},
|
|
axisTick: {
|
|
show: false
|
|
},
|
|
axisLabel: {
|
|
color: '#A0A0A0'
|
|
}
|
|
},
|
|
yAxis: {
|
|
type: 'value',
|
|
axisLine: {
|
|
show: true,
|
|
lineStyle: {
|
|
color: '#ffffff'
|
|
}
|
|
},
|
|
axisLabel: {
|
|
color: '#A0A0A0'
|
|
},
|
|
splitLine: {
|
|
lineStyle: {
|
|
type: 'dashed'
|
|
}
|
|
}
|
|
},
|
|
series: series
|
|
};
|
|
myChart.setOption(option, true);
|
|
}
|
|
|
|
function getChart6(series, legendName) {
|
|
let myChart = echarts.init(document.getElementById("chart6"));
|
|
let option = {
|
|
color: ['#FFDE09'],
|
|
legend: {
|
|
data: legendName,
|
|
left: 'center',
|
|
textStyle: {
|
|
color: '#ffffff'
|
|
}
|
|
},
|
|
grid: {
|
|
left: '2%', // 与容器左侧的距离
|
|
right: '2%', // 与容器右侧的距离
|
|
top: '50px', // 与容器顶部的距离
|
|
bottom: '5%', // 与容器底部的距离
|
|
containLabel: true
|
|
},
|
|
tooltip: {
|
|
trigger: 'axis',
|
|
formatter: function (params, ticket, callback) {
|
|
var htmlStr = '';
|
|
for (var i = 0; i < params.length; i++) {
|
|
var param = params[i];
|
|
// console.log(param);
|
|
var xName = param.name;//x轴的名称
|
|
var seriesName = param.seriesName;//图例名称
|
|
var xvalue = param.value[0];//x轴值
|
|
var yvalue = param.value[1];//y轴值
|
|
var remarkvalue = param.value[2];//备注轴值
|
|
var color = param.color;//图例颜色
|
|
var dataIndex = param.dataIndex;
|
|
var seriesIndex = param.seriesIndex;
|
|
htmlStr += '<div>';
|
|
htmlStr += xvalue + '<br/>';
|
|
htmlStr += '<span style="margin-right:5px;display:inline-block;width:10px;height:10px;border-radius:5px;background-color:' + color + ';"></span>';
|
|
htmlStr += seriesName + ':' + yvalue + '';
|
|
htmlStr += '</div>';
|
|
}
|
|
return htmlStr;
|
|
}
|
|
// alwaysShowContent:true,
|
|
},
|
|
xAxis: {
|
|
type: 'time',
|
|
axisLine: {
|
|
lineStyle: {
|
|
color: '#ffffff'
|
|
}
|
|
},
|
|
axisTick: {
|
|
show: false
|
|
},
|
|
axisLabel: {
|
|
color: '#A0A0A0'
|
|
}
|
|
},
|
|
yAxis: {
|
|
type: 'value',
|
|
axisLine: {
|
|
show: true,
|
|
lineStyle: {
|
|
color: '#ffffff'
|
|
}
|
|
},
|
|
axisLabel: {
|
|
color: '#A0A0A0'
|
|
},
|
|
splitLine: {
|
|
lineStyle: {
|
|
type: 'dashed'
|
|
}
|
|
}
|
|
},
|
|
series: series
|
|
};
|
|
myChart.setOption(option, true);
|
|
}
|
|
</script>
|
|
|
|
</head>
|
|
<body onload="initMenu()" class="hold-transition ${cu.themeclass} sidebar-mini">
|
|
<div id="mainAlertdiv"></div>
|
|
<div id="subDiv"></div>
|
|
|
|
<div id="main"
|
|
style="width: 1920px;height: 990px;background:url(<%=request.getContextPath()%>/IMG/digitalProcess/sdk_poe_bj.png);background-size: 100% 100%;">
|
|
<div style="float:left;width: 100%;height: 45px;padding-top: 7.5px;padding-bottom: 7.5px;border-bottom: 1px solid #51777a;">
|
|
<div style="float: left;margin-left: 20px;width: 162px;height: 30px;position: relative;">
|
|
<i style="position: absolute;left: 0;z-index:5;background:url(<%=request.getContextPath()%>/IMG/digitalProcess/timeIcon.png) no-repeat;background-position: 0px 0px;width: 20px;height: 20px;margin-top: 3px;margin-left: 10px;"></i>
|
|
<input class="form-control date-picker" id="dateTime" name="dateTime" autocomplete="off" type="text"
|
|
placeholder="点击选择"
|
|
style="background-color: rgba(24,105,174,0.7);color: #FFFFFF;width:100%;height:100%;line-height: 30px;border: 1px solid #00cbff;border-radius: 8px;padding-left: 50px;"
|
|
value="" readonly/>
|
|
</div>
|
|
<div style="float: left;margin-left: 40px;height: 100%;">
|
|
<div id="Type0"
|
|
style="float: left;border-bottom: 2px solid #00ffff;width:80px;height: 100%;font-size: 16px;text-align: center;color: #00ffff;font-weight:700;cursor: pointer;"
|
|
onclick="changeType('0');">能耗统计
|
|
</div>
|
|
<div id="Type1"
|
|
style="float: left;width:80px;height: 100%;font-size: 16px;text-align: center;color: #ffffff;margin-left: 10px;cursor: pointer;"
|
|
onclick="changeType('1');">单耗分析
|
|
</div>
|
|
<div id="Type2"
|
|
style="float: left;width:150px;height: 100%;font-size: 16px;text-align: center;color: #ffffff;margin-left: 10px;cursor: pointer;"
|
|
onclick="changeType('2');">碳排量及碳排强度
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
<div id="type1Show" style="float:left;width: 100%;height: calc(100% - 75px);display: block;">
|
|
<div style="float:left;width: 100%;height: calc((100% - 45px)*0.55);margin-top: 10px;padding-left: 80px;padding-right: 80px;">
|
|
<table style="width: 100%;height: 100%;text-align: center;">
|
|
<tr style="color: #FFFFFF;font-weight: 700;">
|
|
<td width="120px"></td>
|
|
<td width="60px"></td>
|
|
<td width="160px">每日用量</td>
|
|
<td width="160px">月度累计</td>
|
|
<td width="160px">年度累计</td>
|
|
<td width="120px"></td>
|
|
<td width="60px"></td>
|
|
<td width="160px">碳排放量_日</td>
|
|
<td width="160px">碳排放量_月</td>
|
|
<td width="160px">碳排放量_年</td>
|
|
</tr>
|
|
<tr id="type0_tr_0" onclick="changeType0('0','SDK_WNEQ_YDL','SDK_WNEQ_YDL_TPFL_Day')"
|
|
style="color: #01FFFF;cursor:pointer;font-weight: 700;background: rgba(0,177,255,0.31);border: 1px solid #00cbff;">
|
|
<td style="color: #ffffff;text-align: right;font-weight:400;">焚烧用电量</td>
|
|
<td style="color: #B8BEBE;text-align: left;font-weight:400;padding-left: 5px;">
|
|
(kWh)
|
|
</td>
|
|
<td class="SDK_WNEQ_YDL"></td>
|
|
<td class="SDK_WNEQ_YDL_Mon"></td>
|
|
<td class="SDK_WNEQ_YDL_Year"></td>
|
|
<td style="color: #ffffff;text-align: right;font-weight:400;">焚烧用电</td>
|
|
<td style="color: #B8BEBE;text-align: left;font-weight:400;padding-left: 5px;">(t)
|
|
</td>
|
|
<td class="SDK_WNEQ_YDL_TPFL_Day"></td>
|
|
<td class="SDK_WNEQ_YDL_TPFL_Mon"></td>
|
|
<td class="SDK_WNEQ_YDL_TPFL_Year"></td>
|
|
</tr>
|
|
<tr id="type0_tr_1" onclick="changeType0('1','SDK_WNEQ_ZLSLY','SDK_WNEQ_ZLSLY_TPFL_Day')"
|
|
style="color: #01FFFF;cursor:pointer;font-weight: 700;">
|
|
<td style="color: #ffffff;text-align: right;font-weight:400;">总用水量</td>
|
|
<td style="color: #B8BEBE;text-align: left;font-weight:400;padding-left: 5px;">(m³)
|
|
</td>
|
|
<td class="SDK_WNEQ_ZLSLY"></td>
|
|
<td class="SDK_WNEQ_ZLSLY_Mon"></td>
|
|
<td class="SDK_WNEQ_ZLSLY_Year"></td>
|
|
<td style="color: #ffffff;text-align: right;font-weight:400;">用水</td>
|
|
<td style="color: #B8BEBE;text-align: left;font-weight:400;padding-left: 5px;">(t)
|
|
</td>
|
|
<td class="SDK_WNEQ_ZLSLY_TPFL_Day"></td>
|
|
<td class="SDK_WNEQ_ZLSLY_TPFL_Mon"></td>
|
|
<td class="SDK_WNEQ_ZLSLY_TPFL_Year"></td>
|
|
</tr>
|
|
<tr id="type0_tr_2" onclick="changeType0('2','SDK_WNEQ_TRQLY','SDK_WNEQ_TRQLY_TPFL_Day')"
|
|
style="color: #01FFFF;cursor:pointer;font-weight: 700;">
|
|
<td style="color: #ffffff;text-align: right;font-weight:400;">天燃气</td>
|
|
<td style="color: #B8BEBE;text-align: left;font-weight:400;padding-left: 5px;">
|
|
(Nm³)
|
|
</td>
|
|
<td class="SDK_WNEQ_TRQLY"></td>
|
|
<td class="SDK_WNEQ_TRQLY_Mon"></td>
|
|
<td class="SDK_WNEQ_TRQLY_Year"></td>
|
|
<td style="color: #ffffff;text-align: right;font-weight:400;">天燃气</td>
|
|
<td style="color: #B8BEBE;text-align: left;font-weight:400;padding-left: 5px;">(t)
|
|
</td>
|
|
<td class="SDK_WNEQ_TRQLY_TPFL_Day"></td>
|
|
<td class="SDK_WNEQ_TRQLY_TPFL_Mon"></td>
|
|
<td class="SDK_WNEQ_TRQLY_TPFL_Year"></td>
|
|
</tr>
|
|
<tr id="type0_tr_3" onclick="changeType0('3','SDK_WNEQ_PAM','SDK_WNEQ_PAM_TPFL_Day')"
|
|
style="color: #01FFFF;cursor:pointer;font-weight: 700;">
|
|
<td style="color: #ffffff;text-align: right;font-weight:400;">PAM</td>
|
|
<td style="color: #B8BEBE;text-align: left;font-weight:400;padding-left: 5px;">(kg)
|
|
</td>
|
|
<td class="SDK_WNEQ_PAM"></td>
|
|
<td class="SDK_WNEQ_PAM_Mon"></td>
|
|
<td class="SDK_WNEQ_PAM_Year"></td>
|
|
<td style="color: #ffffff;text-align: right;font-weight:400;">PAM</td>
|
|
<td style="color: #B8BEBE;text-align: left;font-weight:400;padding-left: 5px;">(t)
|
|
</td>
|
|
<td class="SDK_WNEQ_PAM_TPFL_Day"></td>
|
|
<td class="SDK_WNEQ_PAM_TPFL_Mon"></td>
|
|
<td class="SDK_WNEQ_PAM_TPFL_Year"></td>
|
|
</tr>
|
|
<tr id="type0_tr_4" onclick="changeType0('4','SDK_WNEQ_JYLY','SDK_WNEQ_JYLY_TPFL_Day')"
|
|
style="color: #01FFFF;cursor:pointer;font-weight: 700;">
|
|
<td style="color: #ffffff;text-align: right;font-weight:400;">碱液</td>
|
|
<td style="color: #B8BEBE;text-align: left;font-weight:400;padding-left: 5px;">(kg)
|
|
</td>
|
|
<td class="SDK_WNEQ_JYLY"></td>
|
|
<td class="SDK_WNEQ_JYLY_Mon"></td>
|
|
<td class="SDK_WNEQ_JYLY_Year"></td>
|
|
<td style="color: #ffffff;text-align: right;font-weight:400;">碱液</td>
|
|
<td style="color: #B8BEBE;text-align: left;font-weight:400;padding-left: 5px;">(t)
|
|
</td>
|
|
<td class="SDK_WNEQ_JYLY_TPFL_Day"></td>
|
|
<td class="SDK_WNEQ_JYLY_TPFL_Mon"></td>
|
|
<td class="SDK_WNEQ_JYLY_TPFL_Year"></td>
|
|
</tr>
|
|
<tr id="type0_tr_5" onclick="changeType0('5','SDK_WNEQ_HXT','SDK_WNEQ_HXT_TPFL_Day')"
|
|
style="color: #01FFFF;cursor:pointer;">
|
|
<td style="color: #ffffff;text-align: right;font-weight:400;">活性炭</td>
|
|
<td style="color: #B8BEBE;text-align: left;font-weight:400;padding-left: 5px;">(kg)
|
|
</td>
|
|
<td class="SDK_WNEQ_HXT"></td>
|
|
<td class="SDK_WNEQ_HXT_Mon"></td>
|
|
<td class="SDK_WNEQ_HXT_Year"></td>
|
|
<td style="color: #ffffff;text-align: right;font-weight:400;">活性炭</td>
|
|
<td style="color: #B8BEBE;text-align: left;font-weight:400;padding-left: 5px;">(t)
|
|
</td>
|
|
<td class="SDK_WNEQ_HXT_TPFL_Day"></td>
|
|
<td class="SDK_WNEQ_HXT_TPFL_Mon"></td>
|
|
<td class="SDK_WNEQ_HXT_TPFL_Year"></td>
|
|
</tr>
|
|
<tr id="type0_tr_6" onclick="changeType0('6','SDK_WNEQ_CAOH2','SDK_WNEQ_CAOH2_TPFL_Day')"
|
|
style="color: #01FFFF;cursor:pointer;">
|
|
<td style="color: #ffffff;text-align: right;font-weight:400;">消石灰</td>
|
|
<td style="color: #B8BEBE;text-align: left;font-weight:400;padding-left: 5px;">(kg)
|
|
</td>
|
|
<td class="SDK_WNEQ_CAOH2"></td>
|
|
<td class="SDK_WNEQ_CAOH2_Mon"></td>
|
|
<td class="SDK_WNEQ_CAOH2_Year"></td>
|
|
<td style="color: #ffffff;text-align: right;font-weight:400;">消石灰</td>
|
|
<td style="color: #B8BEBE;text-align: left;font-weight:400;padding-left: 5px;">(t)
|
|
</td>
|
|
<td class="SDK_WNEQ_CAOH2_TPFL_Day"></td>
|
|
<td class="SDK_WNEQ_CAOH2_TPFL_Mon"></td>
|
|
<td class="SDK_WNEQ_CAOH2_TPFL_Year"></td>
|
|
</tr>
|
|
<tr id="type0_tr_7" onclick="changeType0('7','SDK_WNEQ_LSSN','SDK_WNEQ_LSSN_TPFL_Day')"
|
|
style="color: #01FFFF;cursor:pointer;">
|
|
<td style="color: #ffffff;text-align: right;font-weight:400;">磷酸三钠</td>
|
|
<td style="color: #B8BEBE;text-align: left;font-weight:400;padding-left: 5px;">(kg)
|
|
</td>
|
|
<td class="SDK_WNEQ_LSSN"></td>
|
|
<td class="SDK_WNEQ_LSSN_Mon"></td>
|
|
<td class="SDK_WNEQ_LSSN_Year"></td>
|
|
<td style="color: #ffffff;text-align: right;font-weight:400;">磷酸三钠</td>
|
|
<td style="color: #B8BEBE;text-align: left;font-weight:400;padding-left: 5px;">(t)
|
|
</td>
|
|
<td class="SDK_WNEQ_LSSN_TPFL_Day"></td>
|
|
<td class="SDK_WNEQ_LSSN_TPFL_Mon"></td>
|
|
<td class="SDK_WNEQ_LSSN_TPFL_Year"></td>
|
|
</tr>
|
|
<tr id="type0_tr_8" onclick="changeType0('8','SDK_WNEQ_GYY','SDK_WNEQ_GYY_TPFL_Day')"
|
|
style="color: #01FFFF;cursor:pointer;">
|
|
<td style="color: #ffffff;text-align: right;font-weight:400;">工业盐</td>
|
|
<td style="color: #B8BEBE;text-align: left;font-weight:400;padding-left: 5px;">(kg)
|
|
</td>
|
|
<td class="SDK_WNEQ_GYY"></td>
|
|
<td class="SDK_WNEQ_GYY_Mon"></td>
|
|
<td class="SDK_WNEQ_GYY_Year"></td>
|
|
<td style="color: #ffffff;text-align: right;font-weight:400;">工业盐</td>
|
|
<td style="color: #B8BEBE;text-align: left;font-weight:400;padding-left: 5px;">(t)
|
|
</td>
|
|
<td class="SDK_WNEQ_GYY_TPFL_Day"></td>
|
|
<td class="SDK_WNEQ_GYY_TPFL_Mon"></td>
|
|
<td class="SDK_WNEQ_GYY_TPFL_Year"></td>
|
|
</tr>
|
|
<tr id="type0_tr_9" onclick="changeType0('9','SDK_WNEQ_NS','SDK_WNEQ_NS_TPFL_Day')"
|
|
style="color: #01FFFF;cursor:pointer;">
|
|
<td style="color: #ffffff;text-align: right;font-weight:400;">尿素</td>
|
|
<td style="color: #B8BEBE;text-align: left;font-weight:400;padding-left: 5px;">(kg)
|
|
</td>
|
|
<td class="SDK_WNEQ_NS"></td>
|
|
<td class="SDK_WNEQ_NS_Mon"></td>
|
|
<td class="SDK_WNEQ_NS_Year"></td>
|
|
<td style="color: #ffffff;text-align: right;font-weight:400;">尿素</td>
|
|
<td style="color: #B8BEBE;text-align: left;font-weight:400;padding-left: 5px;">(t)
|
|
</td>
|
|
<td class="SDK_WNEQ_NS_TPFL_Day"></td>
|
|
<td class="SDK_WNEQ_NS_TPFL_Mon"></td>
|
|
<td class="SDK_WNEQ_NS_TPFL_Year"></td>
|
|
</tr>
|
|
<tr id="type0_tr_10" onclick="changeType0('10','SDK_WNEQ_SYS','SDK_WNEQ_SYS_TPFL_Day')"
|
|
style="color: #01FFFF;cursor:pointer;">
|
|
<td style="color: #ffffff;text-align: right;font-weight:400;">石英砂</td>
|
|
<td style="color: #B8BEBE;text-align: left;font-weight:400;padding-left: 5px;">(kg)
|
|
</td>
|
|
<td class="SDK_WNEQ_SYS"></td>
|
|
<td class="SDK_WNEQ_SYS_Mon"></td>
|
|
<td class="SDK_WNEQ_SYS_Year"></td>
|
|
<td style="color: #ffffff;text-align: right;font-weight:400;">石英砂</td>
|
|
<td style="color: #B8BEBE;text-align: left;font-weight:400;padding-left: 5px;">(t)
|
|
</td>
|
|
<td class="SDK_WNEQ_SYS_TPFL_Day"></td>
|
|
<td class="SDK_WNEQ_SYS_TPFL_Mon"></td>
|
|
<td class="SDK_WNEQ_SYS_TPFL_Year"></td>
|
|
</tr>
|
|
<tr id="type0_tr_11" onclick="changeType0('11','SDK_WNEQ_YBFH','SDK_WNEQ_YBFH_TPFL_Day')"
|
|
style="color: #01FFFF;cursor:pointer;">
|
|
<td style="color: #ffffff;text-align: right;font-weight:400;">一般灰渣</td>
|
|
<td style="color: #B8BEBE;text-align: left;font-weight:400;padding-left: 5px;">(t)
|
|
</td>
|
|
<td class="SDK_WNEQ_YBFH"></td>
|
|
<td class="SDK_WNEQ_YBFH_Mon"></td>
|
|
<td class="SDK_WNEQ_YBFH_Year"></td>
|
|
<td style="color: #ffffff;text-align: right;font-weight:400;">一般灰渣</td>
|
|
<td style="color: #B8BEBE;text-align: left;font-weight:400;padding-left: 5px;">(t)
|
|
</td>
|
|
<td class="SDK_WNEQ_YBFH_TPFL_Day"></td>
|
|
<td class="SDK_WNEQ_YBFH_TPFL_Mon"></td>
|
|
<td class="SDK_WNEQ_YBFH_TPFL_Year"></td>
|
|
</tr>
|
|
<tr style="color: #01FFFF;">
|
|
<td></td>
|
|
<td></td>
|
|
<td></td>
|
|
<td></td>
|
|
<td></td>
|
|
<td style="color: #ffffff;text-align: right;font-weight:400;background: rgba(0,0,0,0.31);">
|
|
合计
|
|
</td>
|
|
<td style="color: #B8BEBE;text-align: left;font-weight:400;padding-left: 5px;background: rgba(0,0,0,0.31);">
|
|
(t)
|
|
</td>
|
|
<td class="sum1" style="background: rgba(0,0,0,0.31);"></td>
|
|
<td class="sum2" style="background: rgba(0,0,0,0.31);"></td>
|
|
<td class="sum3" style="background: rgba(0,0,0,0.31);"></td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
<div style="float:left;width: 100%;height: calc((100% - 45px)*0.45);margin-top: 30px;padding-left: 80px;padding-right: 80px;">
|
|
<div style="float:left;width: 100%;height: 100%;background: rgba(12,12,12,0.60);">
|
|
<div id="chart1" style="float:left;width: 50%;height: 100%;padding: 20px;"></div>
|
|
<div id="chart2" style="float:left;width: 50%;height: 100%;padding: 20px;"></div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div id="type2Show" style="float:left;width: 100%;height: calc(100% - 75px);display: none;">
|
|
<div style="float:left;width: 100%;height: calc((100% - 45px)*0.55);margin-top: 10px;padding-left: 80px;padding-right: 80px;">
|
|
<table style="width: 100%;height: 100%;text-align: center;">
|
|
<tr style="color: #FFFFFF;font-weight: 700;">
|
|
<td></td>
|
|
<td></td>
|
|
<td>计划值</td>
|
|
<td>日单耗</td>
|
|
<td>日单耗偏差</td>
|
|
<td>月单耗</td>
|
|
<td>月单耗偏差</td>
|
|
<td>年单耗</td>
|
|
<td>年单耗偏差</td>
|
|
<td width="150px" colspan="2">排放因子EF</td>
|
|
<td>碳排放强度_日</td>
|
|
<td>碳排放强度_月</td>
|
|
<td>碳排放强度_年</td>
|
|
</tr>
|
|
<tr id="type1_tr_0"
|
|
onclick="changeType1('0','SDK_WNEQ_YDL_JHZ_Mon,SDK_WNEQ_YDL_Day','SDK_WNEQ_YDL_Day_DH_PC')"
|
|
style="color: #01FFFF;cursor:pointer;font-weight: 700;background: rgba(0,177,255,0.31);border: 1px solid #00cbff;">
|
|
<td style="color: #ffffff;text-align: right;font-weight:400;">焚烧用电量</td>
|
|
<td style="color: #B8BEBE;text-align: left;font-weight:400;padding-left: 5px;">
|
|
kWh/tDs
|
|
</td>
|
|
<td class="SDK_WNEQ_YDL_JHZ_Mon" id="SDK_WNEQ_YDL_JHZ_Mon" style="color: #ffffff;"></td>
|
|
<td class="SDK_WNEQ_YDL_Day"></td>
|
|
<td class="SDK_WNEQ_YDL_Day_DH_PC" id="SDK_WNEQ_YDL_Day_DH_PC"></td>
|
|
<td class="SDK_WNEQ_YDL_Mon_DH"></td>
|
|
<td class="SDK_WNEQ_YDL_Mon_DH_PC" id="SDK_WNEQ_YDL_Mon_DH_PC"></td>
|
|
<td class="SDK_WNEQ_YDL_Year_DH"></td>
|
|
<td class="SDK_WNEQ_YDL_Year_DH_PC" id="SDK_WNEQ_YDL_Year_DH_PC"></td>
|
|
<td width="90px" style="color: #B8BEBE;text-align: right;font-weight:400;">0.00042</td>
|
|
<td width="60px" style="color: #B8BEBE;text-align: left;font-weight:400;padding-left: 5px;">
|
|
(tCO2/KWh)
|
|
</td>
|
|
<td class="SDK_WNEQ_YDL_TPF_DH_Day"></td>
|
|
<td class="SDK_WNEQ_YDL_TPF_DH_Mon"></td>
|
|
<td class="SDK_WNEQ_YDL_TPF_DH_Year"></td>
|
|
</tr>
|
|
<tr id="type1_tr_1"
|
|
onclick="changeType1('1','SDK_WNEQ_ZLSLY_JHZ_Mon,SDK_WNEQ_ZLSLY_Day','SDK_WNEQ_ZLSLY_Day_DH_PC')"
|
|
style="color: #01FFFF;cursor:pointer;font-weight: 700;">
|
|
<td style="color: #ffffff;text-align: right;font-weight:400;">总用水量</td>
|
|
<td style="color: #B8BEBE;text-align: left;font-weight:400;padding-left: 5px;">
|
|
m³/tDs
|
|
</td>
|
|
<td class="SDK_WNEQ_ZLSLY_JHZ_Mon" id="SDK_WNEQ_ZLSLY_JHZ_Mon" style="color: #ffffff;"></td>
|
|
<td class="SDK_WNEQ_ZLSLY_Day"></td>
|
|
<td class="SDK_WNEQ_ZLSLY_Day_DH_PC" id="SDK_WNEQ_ZLSLY_Day_DH_PC"></td>
|
|
<td class="SDK_WNEQ_ZLSLY_Mon_DH"></td>
|
|
<td class="SDK_WNEQ_ZLSLY_Mon_DH_PC" id="SDK_WNEQ_ZLSLY_Mon_DH_PC"></td>
|
|
<td class="SDK_WNEQ_ZLSLY_Year_DH"></td>
|
|
<td class="SDK_WNEQ_ZLSLY_Year_DH_PC" id="SDK_WNEQ_ZLSLY_Year_DH_PC"></td>
|
|
<td width="90px" style="color: #B8BEBE;text-align: right;font-weight:400;">0.00091</td>
|
|
<td width="60px" style="color: #B8BEBE;text-align: left;font-weight:400;padding-left: 5px;">
|
|
(tCO2/m³)
|
|
</td>
|
|
<td class="SDK_WNEQ_ZLSLY_TPF_DH_Day"></td>
|
|
<td class="SDK_WNEQ_ZLSLY_TPF_DH_Mon"></td>
|
|
<td class="SDK_WNEQ_ZLSLY_TPF_DH_Year"></td>
|
|
</tr>
|
|
<tr id="type1_tr_2"
|
|
onclick="changeType1('2','SDK_WNEQ_TRQLY_JHZ_Mon,SDK_WNEQ_TRQLY_Day','SDK_WNEQ_TRQLY_Day_DH_PC')"
|
|
style="color: #01FFFF;cursor:pointer;font-weight: 700;">
|
|
<td style="color: #ffffff;text-align: right;font-weight:400;">天燃气</td>
|
|
<td style="color: #B8BEBE;text-align: left;font-weight:400;padding-left: 5px;">
|
|
Nm³/tDs
|
|
</td>
|
|
<td class="SDK_WNEQ_TRQLY_JHZ_Mon" id="SDK_WNEQ_TRQLY_JHZ_Mon" style="color: #ffffff;"></td>
|
|
<td class="SDK_WNEQ_TRQLY_Day"></td>
|
|
<td class="SDK_WNEQ_TRQLY_Day_DH_PC" id="SDK_WNEQ_TRQLY_Day_DH_PC"></td>
|
|
<td class="SDK_WNEQ_TRQLY_Mon_DH"></td>
|
|
<td class="SDK_WNEQ_TRQLY_Mon_DH_PC" id="SDK_WNEQ_TRQLY_Mon_DH_PC"></td>
|
|
<td class="SDK_WNEQ_TRQLY_Year_DH"></td>
|
|
<td class="SDK_WNEQ_TRQLY_Year_DH_PC" id="SDK_WNEQ_TRQLY_Year_DH_PC"></td>
|
|
<td width="90px" style="color: #B8BEBE;text-align: right;font-weight:400;">0.002165</td>
|
|
<td width="60px" style="color: #B8BEBE;text-align: left;font-weight:400;padding-left: 5px;">
|
|
(tCO2/m³)
|
|
</td>
|
|
<td class="SDK_WNEQ_TRQLY_TPF_DH_Day"></td>
|
|
<td class="SDK_WNEQ_TRQLY_TPF_DH_Mon"></td>
|
|
<td class="SDK_WNEQ_TRQLY_TPF_DH_Year"></td>
|
|
</tr>
|
|
<tr id="type1_tr_3"
|
|
onclick="changeType1('3','SDK_WNEQ_PAM_JHZ_Mon,SDK_WNEQ_PAM_Day','SDK_WNEQ_PAM_Day_DH_PC')"
|
|
style="color: #01FFFF;cursor:pointer;font-weight: 700;">
|
|
<td style="color: #ffffff;text-align: right;font-weight:400;">PAM</td>
|
|
<td style="color: #B8BEBE;text-align: left;font-weight:400;padding-left: 5px;">
|
|
kg/tDs
|
|
</td>
|
|
<td class="SDK_WNEQ_PAM_JHZ_Mon" id="SDK_WNEQ_PAM_JHZ_Mon" style="color: #ffffff;"></td>
|
|
<td class="SDK_WNEQ_PAM_Day"></td>
|
|
<td class="SDK_WNEQ_PAM_Day_DH_PC" id="SDK_WNEQ_PAM_Day_DH_PC"></td>
|
|
<td class="SDK_WNEQ_PAM_Mon_DH"></td>
|
|
<td class="SDK_WNEQ_PAM_Mon_DH_PC" id="SDK_WNEQ_PAM_Mon_DH_PC"></td>
|
|
<td class="SDK_WNEQ_PAM_Year_DH"></td>
|
|
<td class="SDK_WNEQ_PAM_Year_DH_PC" id="SDK_WNEQ_PAM_Year_DH_PC"></td>
|
|
<td width="90px" style="color: #B8BEBE;text-align: right;font-weight:400;">2.5</td>
|
|
<td width="60px" style="color: #B8BEBE;text-align: left;font-weight:400;padding-left: 5px;">
|
|
(tCO2/t)
|
|
</td>
|
|
<td class="SDK_WNEQ_PAM_TPF_DH_Day"></td>
|
|
<td class="SDK_WNEQ_PAM_TPF_DH_Mon"></td>
|
|
<td class="SDK_WNEQ_PAM_TPF_DH_Year"></td>
|
|
</tr>
|
|
<tr id="type1_tr_4"
|
|
onclick="changeType1('4','SDK_WNEQ_JYLY_JHZ_Mon,SDK_WNEQ_JYLY_Day','SDK_WNEQ_JYLY_Day_DH_PC')"
|
|
style="color: #01FFFF;cursor:pointer;font-weight: 700;">
|
|
<td style="color: #ffffff;text-align: right;font-weight:400;">碱液</td>
|
|
<td style="color: #B8BEBE;text-align: left;font-weight:400;padding-left: 5px;">
|
|
kg/tDs
|
|
</td>
|
|
<td class="SDK_WNEQ_JYLY_JHZ_Mon" id="SDK_WNEQ_JYLY_JHZ_Mon" style="color: #ffffff;"></td>
|
|
<td class="SDK_WNEQ_JYLY_Day"></td>
|
|
<td class="SDK_WNEQ_JYLY_Day_DH_PC" id="SDK_WNEQ_JYLY_Day_DH_PC"></td>
|
|
<td class="SDK_WNEQ_JYLY_Mon_DH"></td>
|
|
<td class="SDK_WNEQ_JYLY_Mon_DH_PC" id="SDK_WNEQ_JYLY_Mon_DH_PC"></td>
|
|
<td class="SDK_WNEQ_JYLY_Year_DH"></td>
|
|
<td class="SDK_WNEQ_JYLY_Year_DH_PC" id="SDK_WNEQ_JYLY_Year_DH_PC"></td>
|
|
<td width="90px" style="color: #B8BEBE;text-align: right;font-weight:400;">0.84</td>
|
|
<td width="60px" style="color: #B8BEBE;text-align: left;font-weight:400;padding-left: 5px;">
|
|
(tCO2/t)
|
|
</td>
|
|
<td class="SDK_WNEQ_JYLY_TPF_DH_Day"></td>
|
|
<td class="SDK_WNEQ_JYLY_TPF_DH_Mon"></td>
|
|
<td class="SDK_WNEQ_JYLY_TPF_DH_Year"></td>
|
|
</tr>
|
|
<tr id="type1_tr_5"
|
|
onclick="changeType1('5','SDK_WNEQ_HXT_JHZ_Mon,SDK_WNEQ_HXT_Day','SDK_WNEQ_HXT_Day_DH_PC')"
|
|
style="color: #01FFFF;cursor:pointer;font-weight: 700;">
|
|
<td style="color: #ffffff;text-align: right;font-weight:400;">活性炭</td>
|
|
<td style="color: #B8BEBE;text-align: left;font-weight:400;padding-left: 5px;">
|
|
kg/tDs
|
|
</td>
|
|
<td class="SDK_WNEQ_HXT_JHZ_Mon" id="SDK_WNEQ_HXT_JHZ_Mon" style="color: #ffffff;"></td>
|
|
<td class="SDK_WNEQ_HXT_Day"></td>
|
|
<td class="SDK_WNEQ_HXT_Day_DH_PC" id="SDK_WNEQ_HXT_Day_DH_PC"></td>
|
|
<td class="SDK_WNEQ_HXT_Mon_DH"></td>
|
|
<td class="SDK_WNEQ_HXT_Mon_DH_PC" id="SDK_WNEQ_HXT_Mon_DH_PC"></td>
|
|
<td class="SDK_WNEQ_HXT_Year_DH"></td>
|
|
<td class="SDK_WNEQ_HXT_Year_DH_PC" id="SDK_WNEQ_HXT_Year_DH_PC"></td>
|
|
<td width="90px" style="color: #B8BEBE;text-align: right;font-weight:400;">1.6</td>
|
|
<td width="60px" style="color: #B8BEBE;text-align: left;font-weight:400;padding-left: 5px;">
|
|
(tCO2/t)
|
|
</td>
|
|
<td class="SDK_WNEQ_HXT_TPF_DH_Day"></td>
|
|
<td class="SDK_WNEQ_HXT_TPF_DH_Mon"></td>
|
|
<td class="SDK_WNEQ_HXT_TPF_DH_Year"></td>
|
|
</tr>
|
|
<tr id="type1_tr_6"
|
|
onclick="changeType1('6','SDK_WNEQ_CAOH2_JHZ_Mon,SDK_WNEQ_CAOH2_Day','SDK_WNEQ_CAOH2_Day_DH_PC')"
|
|
style="color: #01FFFF;cursor:pointer;font-weight: 700;">
|
|
<td style="color: #ffffff;text-align: right;font-weight:400;">消石灰</td>
|
|
<td style="color: #B8BEBE;text-align: left;font-weight:400;padding-left: 5px;">
|
|
kg/tDs
|
|
</td>
|
|
<td class="SDK_WNEQ_CAOH2_JHZ_Mon" id="SDK_WNEQ_CAOH2_JHZ_Mon" style="color: #ffffff;"></td>
|
|
<td class="SDK_WNEQ_CAOH2_Day"></td>
|
|
<td class="SDK_WNEQ_CAOH2_Day_DH_PC" id="SDK_WNEQ_CAOH2_Day_DH_PC"></td>
|
|
<td class="SDK_WNEQ_CAOH2_Mon_DH"></td>
|
|
<td class="SDK_WNEQ_CAOH2_Mon_DH_PC" id="SDK_WNEQ_CAOH2_Mon_DH_PC"></td>
|
|
<td class="SDK_WNEQ_CAOH2_Year_DH"></td>
|
|
<td class="SDK_WNEQ_CAOH2_Year_DH_PC" id="SDK_WNEQ_CAOH2_Year_DH_PC"></td>
|
|
<td width="90px" style="color: #B8BEBE;text-align: right;font-weight:400;">1.74</td>
|
|
<td width="60px" style="color: #B8BEBE;text-align: left;font-weight:400;padding-left: 5px;">
|
|
(tCO2/t)
|
|
</td>
|
|
<td class="SDK_WNEQ_CAOH2_TPF_DH_Day"></td>
|
|
<td class="SDK_WNEQ_CAOH2_TPF_DH_Mon"></td>
|
|
<td class="SDK_WNEQ_CAOH2_TPF_DH_Year"></td>
|
|
</tr>
|
|
<tr id="type1_tr_7"
|
|
onclick="changeType1('7','SDK_WNEQ_LSSN_JHZ_Mon,SDK_WNEQ_LSSN_Day','SDK_WNEQ_LSSN_Day_DH_PC')"
|
|
style="color: #01FFFF;cursor:pointer;font-weight: 700;">
|
|
<td style="color: #ffffff;text-align: right;font-weight:400;">磷酸三钠</td>
|
|
<td style="color: #B8BEBE;text-align: left;font-weight:400;padding-left: 5px;">
|
|
kg/tDs
|
|
</td>
|
|
<td class="SDK_WNEQ_LSSN_JHZ_Mon" id="SDK_WNEQ_LSSN_JHZ_Mon" style="color: #ffffff;"></td>
|
|
<td class="SDK_WNEQ_LSSN_Day"></td>
|
|
<td class="SDK_WNEQ_LSSN_Day_DH_PC" id="SDK_WNEQ_LSSN_Day_DH_PC"></td>
|
|
<td class="SDK_WNEQ_LSSN_Mon_DH"></td>
|
|
<td class="SDK_WNEQ_LSSN_Mon_DH_PC" id="SDK_WNEQ_LSSN_Mon_DH_PC"></td>
|
|
<td class="SDK_WNEQ_LSSN_Year_DH"></td>
|
|
<td class="SDK_WNEQ_LSSN_Year_DH_PC" id="SDK_WNEQ_LSSN_Year_DH_PC"></td>
|
|
<td width="90px" style="color: #B8BEBE;text-align: right;font-weight:400;">1.6</td>
|
|
<td width="60px" style="color: #B8BEBE;text-align: left;font-weight:400;padding-left: 5px;">
|
|
(tCO2/t)
|
|
</td>
|
|
<td class="SDK_WNEQ_LSSN_TPF_DH_Day"></td>
|
|
<td class="SDK_WNEQ_LSSN_TPF_DH_Mon"></td>
|
|
<td class="SDK_WNEQ_LSSN_TPF_DH_Year"></td>
|
|
</tr>
|
|
<tr id="type1_tr_8"
|
|
onclick="changeType1('8','SDK_WNEQ_GYY_JHZ_Mon,SDK_WNEQ_GYY_Day','SDK_WNEQ_GYY_Day_DH_PC')"
|
|
style="color: #01FFFF;cursor:pointer;font-weight: 700;">
|
|
<td style="color: #ffffff;text-align: right;font-weight:400;">工业盐</td>
|
|
<td style="color: #B8BEBE;text-align: left;font-weight:400;padding-left: 5px;">
|
|
kg/tDs
|
|
</td>
|
|
<td class="SDK_WNEQ_GYY_JHZ_Mon" id="SDK_WNEQ_GYY_JHZ_Mon" style="color: #ffffff;"></td>
|
|
<td class="SDK_WNEQ_GYY_Day"></td>
|
|
<td class="SDK_WNEQ_GYY_Day_DH_PC" id="SDK_WNEQ_GYY_Day_DH_PC"></td>
|
|
<td class="SDK_WNEQ_GYY_Mon_DH"></td>
|
|
<td class="SDK_WNEQ_GYY_Mon_DH_PC" id="SDK_WNEQ_GYY_Mon_DH_PC"></td>
|
|
<td class="SDK_WNEQ_GYY_Year_DH"></td>
|
|
<td class="SDK_WNEQ_GYY_Year_DH_PC" id="SDK_WNEQ_GYY_Year_DH_PC"></td>
|
|
<td width="90px" style="color: #B8BEBE;text-align: right;font-weight:400;">1.6</td>
|
|
<td width="60px" style="color: #B8BEBE;text-align: left;font-weight:400;padding-left: 5px;">
|
|
(tCO2/t)
|
|
</td>
|
|
<td class="SDK_WNEQ_GYY_TPF_DH_Day"></td>
|
|
<td class="SDK_WNEQ_GYY_TPF_DH_Mon"></td>
|
|
<td class="SDK_WNEQ_GYY_TPF_DH_Year"></td>
|
|
</tr>
|
|
<tr id="type1_tr_9"
|
|
onclick="changeType1('9','SDK_WNEQ_NS_JHZ_Mon,SDK_WNEQ_NS_Day','SDK_WNEQ_NS_Day_DH_PC')"
|
|
style="color: #01FFFF;cursor:pointer;font-weight: 700;">
|
|
<td style="color: #ffffff;text-align: right;font-weight:400;">尿素</td>
|
|
<td style="color: #B8BEBE;text-align: left;font-weight:400;padding-left: 5px;">
|
|
kg/tDs
|
|
</td>
|
|
<td class="SDK_WNEQ_NS_JHZ_Mon" id="SDK_WNEQ_NS_JHZ_Mon" style="color: #ffffff;"></td>
|
|
<td class="SDK_WNEQ_NS_Day"></td>
|
|
<td class="SDK_WNEQ_NS_Day_DH_PC" id="SDK_WNEQ_NS_Day_DH_PC"></td>
|
|
<td class="SDK_WNEQ_NS_Mon_DH"></td>
|
|
<td class="SDK_WNEQ_NS_Mon_DH_PC" id="SDK_WNEQ_NS_Mon_DH_PC"></td>
|
|
<td class="SDK_WNEQ_NS_Year_DH"></td>
|
|
<td class="SDK_WNEQ_NS_Year_DH_PC" id="SDK_WNEQ_NS_Year_DH_PC"></td>
|
|
<td width="90px" style="color: #B8BEBE;text-align: right;font-weight:400;">2.51</td>
|
|
<td width="60px" style="color: #B8BEBE;text-align: left;font-weight:400;padding-left: 5px;">
|
|
(tCO2/t)
|
|
</td>
|
|
<td class="SDK_WNEQ_NS_TPF_DH_Day"></td>
|
|
<td class="SDK_WNEQ_NS_TPF_DH_Mon"></td>
|
|
<td class="SDK_WNEQ_NS_TPF_DH_Year"></td>
|
|
</tr>
|
|
<tr id="type1_tr_10"
|
|
onclick="changeType1('10','SDK_WNEQ_SYS_JHZ_Mon,SDK_WNEQ_SYS_Day','SDK_WNEQ_SYS_Day_DH_PC')"
|
|
style="color: #01FFFF;cursor:pointer;font-weight: 700;">
|
|
<td style="color: #ffffff;text-align: right;font-weight:400;">石英砂</td>
|
|
<td style="color: #B8BEBE;text-align: left;font-weight:400;padding-left: 5px;">
|
|
kg/tDs
|
|
</td>
|
|
<td class="SDK_WNEQ_SYS_JHZ_Mon" id="SDK_WNEQ_SYS_JHZ_Mon" style="color: #ffffff;"></td>
|
|
<td class="SDK_WNEQ_SYS_Day"></td>
|
|
<td class="SDK_WNEQ_SYS_Day_DH_PC" id="SDK_WNEQ_SYS_Day_DH_PC"></td>
|
|
<td class="SDK_WNEQ_SYS_Mon_DH"></td>
|
|
<td class="SDK_WNEQ_SYS_Mon_DH_PC" id="SDK_WNEQ_SYS_Mon_DH_PC"></td>
|
|
<td class="SDK_WNEQ_SYS_Year_DH"></td>
|
|
<td class="SDK_WNEQ_SYS_Year_DH_PC" id="SDK_WNEQ_SYS_Year_DH_PC"></td>
|
|
<td width="90px" style="color: #B8BEBE;text-align: right;font-weight:400;">1.6</td>
|
|
<td width="60px" style="color: #B8BEBE;text-align: left;font-weight:400;padding-left: 5px;">
|
|
(tCO2/t)
|
|
</td>
|
|
<td class="SDK_WNEQ_SYS_TPF_DH_Day"></td>
|
|
<td class="SDK_WNEQ_SYS_TPF_DH_Mon"></td>
|
|
<td class="SDK_WNEQ_SYS_TPF_DH_Year"></td>
|
|
</tr>
|
|
<tr id="type1_tr_11"
|
|
onclick="changeType1('11','SDK_WNEQ_YBFH_JHZ_Mon,SDK_WNEQ_YBFH_Day','SDK_WNEQ_YBFH_Day_DH_PC')"
|
|
style="color: #01FFFF;cursor:pointer;font-weight: 700;">
|
|
<td style="color: #ffffff;text-align: right;font-weight:400;">一般灰渣</td>
|
|
<td style="color: #B8BEBE;text-align: left;font-weight:400;padding-left: 5px;">
|
|
tDs
|
|
</td>
|
|
<td class="SDK_WNEQ_YBFH_JHZ_Mon" id="SDK_WNEQ_YBFH_JHZ_Mon" style="color: #ffffff;"></td>
|
|
<td class="SDK_WNEQ_YBFH_Day"></td>
|
|
<td class="SDK_WNEQ_YBFH_Day_DH_PC" id="SDK_WNEQ_YBFH_Day_DH_PC"></td>
|
|
<td class="SDK_WNEQ_YBFH_Mon_DH"></td>
|
|
<td class="SDK_WNEQ_YBFH_Mon_DH_PC" id="SDK_WNEQ_YBFH_Mon_DH_PC"></td>
|
|
<td class="SDK_WNEQ_YBFH_Year_DH"></td>
|
|
<td class="SDK_WNEQ_YBFH_Year_DH_PC" id="SDK_WNEQ_YBFH_Year_DH_PC"></td>
|
|
<td width="90px" style="color: #B8BEBE;text-align: right;font-weight:400;">1.6</td>
|
|
<td width="60px" style="color: #B8BEBE;text-align: left;font-weight:400;padding-left: 5px;">
|
|
(tCO2/t)
|
|
</td>
|
|
<td class="SDK_WNEQ_YBFH_TPF_DH_Day"></td>
|
|
<td class="SDK_WNEQ_YBFH_TPF_DH_Mon"></td>
|
|
<td class="SDK_WNEQ_YBFH_TPF_DH_Year"></td>
|
|
</tr>
|
|
<tr style="color: #01FFFF;background: rgba(0,0,0,0.31);">
|
|
<td style="color: #ffffff;text-align: right;font-weight:400;">
|
|
合计
|
|
</td>
|
|
<td></td>
|
|
<td></td>
|
|
<td></td>
|
|
<td></td>
|
|
<td></td>
|
|
<td></td>
|
|
<td></td>
|
|
<td></td>
|
|
<td></td>
|
|
<td></td>
|
|
<td class="sum4"></td>
|
|
<td class="sum5"></td>
|
|
<td class="sum6"></td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
<div style="float:left;width: 100%;height: calc((100% - 45px)*0.45);margin-top: 30px;padding-left: 80px;padding-right: 80px;">
|
|
<div style="float:left;width: 100%;height: 100%;background: rgba(12,12,12,0.60);">
|
|
<div id="chart3" style="float:left;width: 50%;height: 100%;padding: 20px;"></div>
|
|
<div id="chart4" style="float:left;width: 50%;height: 100%;padding: 20px;"></div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div id="type3Show" style="float:left;width: 100%;height: calc(100% - 75px);display: none;">
|
|
<div style="float:left;width: 50%;height: 100%;">
|
|
<div style="float:left;width: 100%;height: calc((100% - 45px)*0.55);margin-top: 10px;padding-left: 20px;padding-right: 20px;">
|
|
<table style="width: 100%;height: 100%;text-align: center;">
|
|
<tr style="color: #FFFFFF;font-weight: 700;">
|
|
<td width="120px"></td>
|
|
<td width="60px"></td>
|
|
<td width="160px">碳排放量_日</td>
|
|
<td width="160px">碳排放量_月</td>
|
|
<td width="160px">碳排放量_年</td>
|
|
</tr>
|
|
<tr id="type2_1_tr_0" onclick="changeType2_1('0','SDK_WNEQ_YDL_TPFL_Day')"
|
|
style="color: #01FFFF;cursor:pointer;font-weight: 700;background: rgba(0,177,255,0.31);border: 1px solid #00cbff;">
|
|
<td style="color: #ffffff;text-align: right;font-weight:400;">焚烧用电</td>
|
|
<td style="color: #B8BEBE;text-align: left;font-weight:400;padding-left: 5px;">(t)
|
|
</td>
|
|
<td class="SDK_WNEQ_YDL_TPFL_Day"></td>
|
|
<td class="SDK_WNEQ_YDL_TPFL_Mon"></td>
|
|
<td class="SDK_WNEQ_YDL_TPFL_Year"></td>
|
|
</tr>
|
|
<tr id="type2_1_tr_1" onclick="changeType2_1('1','SDK_WNEQ_ZLSLY_TPFL_Day')"
|
|
style="color: #01FFFF;cursor:pointer;font-weight: 700;">
|
|
<td style="color: #ffffff;text-align: right;font-weight:400;">用水</td>
|
|
<td style="color: #B8BEBE;text-align: left;font-weight:400;padding-left: 5px;">(t)
|
|
</td>
|
|
<td class="SDK_WNEQ_ZLSLY_TPFL_Day"></td>
|
|
<td class="SDK_WNEQ_ZLSLY_TPFL_Mon"></td>
|
|
<td class="SDK_WNEQ_ZLSLY_TPFL_Year"></td>
|
|
</tr>
|
|
<tr id="type2_1_tr_2" onclick="changeType2_1('2','SDK_WNEQ_TRQLY_TPFL_Day')"
|
|
style="color: #01FFFF;cursor:pointer;font-weight: 700;">
|
|
<td style="color: #ffffff;text-align: right;font-weight:400;">天燃气</td>
|
|
<td style="color: #B8BEBE;text-align: left;font-weight:400;padding-left: 5px;">(t)
|
|
</td>
|
|
<td class="SDK_WNEQ_TRQLY_TPFL_Day"></td>
|
|
<td class="SDK_WNEQ_TRQLY_TPFL_Mon"></td>
|
|
<td class="SDK_WNEQ_TRQLY_TPFL_Year"></td>
|
|
</tr>
|
|
<tr id="type2_1_tr_3" onclick="changeType2_1('3','SDK_WNEQ_PAM_TPFL_Day')"
|
|
style="color: #01FFFF;cursor:pointer;font-weight: 700;">
|
|
<td style="color: #ffffff;text-align: right;font-weight:400;">PAM</td>
|
|
<td style="color: #B8BEBE;text-align: left;font-weight:400;padding-left: 5px;">(t)
|
|
</td>
|
|
<td class="SDK_WNEQ_PAM_TPFL_Day"></td>
|
|
<td class="SDK_WNEQ_PAM_TPFL_Mon"></td>
|
|
<td class="SDK_WNEQ_PAM_TPFL_Year"></td>
|
|
</tr>
|
|
<tr id="type2_1_tr_4" onclick="changeType2_1('4','SDK_WNEQ_JYLY_TPFL_Day')"
|
|
style="color: #01FFFF;cursor:pointer;font-weight: 700;">
|
|
<td style="color: #ffffff;text-align: right;font-weight:400;">碱液</td>
|
|
<td style="color: #B8BEBE;text-align: left;font-weight:400;padding-left: 5px;">(t)
|
|
</td>
|
|
<td class="SDK_WNEQ_JYLY_TPFL_Day"></td>
|
|
<td class="SDK_WNEQ_JYLY_TPFL_Mon"></td>
|
|
<td class="SDK_WNEQ_JYLY_TPFL_Year"></td>
|
|
</tr>
|
|
<tr id="type2_1_tr_5" onclick="changeType2_1('5','SDK_WNEQ_HXT_TPFL_Day')"
|
|
style="color: #01FFFF;cursor:pointer;">
|
|
<td style="color: #ffffff;text-align: right;font-weight:400;">活性炭</td>
|
|
<td style="color: #B8BEBE;text-align: left;font-weight:400;padding-left: 5px;">(t)
|
|
</td>
|
|
<td class="SDK_WNEQ_HXT_TPFL_Day"></td>
|
|
<td class="SDK_WNEQ_HXT_TPFL_Mon"></td>
|
|
<td class="SDK_WNEQ_HXT_TPFL_Year"></td>
|
|
</tr>
|
|
<tr id="type2_1_tr_6" onclick="changeType2_1('6','SDK_WNEQ_CAOH2_TPFL_Day')"
|
|
style="color: #01FFFF;cursor:pointer;">
|
|
<td style="color: #ffffff;text-align: right;font-weight:400;">消石灰</td>
|
|
<td style="color: #B8BEBE;text-align: left;font-weight:400;padding-left: 5px;">(t)
|
|
</td>
|
|
<td class="SDK_WNEQ_CAOH2_TPFL_Day"></td>
|
|
<td class="SDK_WNEQ_CAOH2_TPFL_Mon"></td>
|
|
<td class="SDK_WNEQ_CAOH2_TPFL_Year"></td>
|
|
</tr>
|
|
<tr id="type2_1_tr_7" onclick="changeType2_1('7','SDK_WNEQ_LSSN_TPFL_Day')"
|
|
style="color: #01FFFF;cursor:pointer;">
|
|
<td style="color: #ffffff;text-align: right;font-weight:400;">磷酸三钠</td>
|
|
<td style="color: #B8BEBE;text-align: left;font-weight:400;padding-left: 5px;">(t)
|
|
</td>
|
|
<td class="SDK_WNEQ_LSSN_TPFL_Day"></td>
|
|
<td class="SDK_WNEQ_LSSN_TPFL_Mon"></td>
|
|
<td class="SDK_WNEQ_LSSN_TPFL_Year"></td>
|
|
</tr>
|
|
<tr id="type2_1_tr_8" onclick="changeType2_1('8','SDK_WNEQ_GYY_TPFL_Day')"
|
|
style="color: #01FFFF;cursor:pointer;">
|
|
<td style="color: #ffffff;text-align: right;font-weight:400;">工业盐</td>
|
|
<td style="color: #B8BEBE;text-align: left;font-weight:400;padding-left: 5px;">(t)
|
|
</td>
|
|
<td class="SDK_WNEQ_GYY_TPFL_Day"></td>
|
|
<td class="SDK_WNEQ_GYY_TPFL_Mon"></td>
|
|
<td class="SDK_WNEQ_GYY_TPFL_Year"></td>
|
|
</tr>
|
|
<tr id="type2_1_tr_9" onclick="changeType2_1('9','SDK_WNEQ_NS_TPFL_Day')"
|
|
style="color: #01FFFF;cursor:pointer;">
|
|
<td style="color: #ffffff;text-align: right;font-weight:400;">尿素</td>
|
|
<td style="color: #B8BEBE;text-align: left;font-weight:400;padding-left: 5px;">(t)
|
|
</td>
|
|
<td class="SDK_WNEQ_NS_TPFL_Day"></td>
|
|
<td class="SDK_WNEQ_NS_TPFL_Mon"></td>
|
|
<td class="SDK_WNEQ_NS_TPFL_Year"></td>
|
|
</tr>
|
|
<tr id="type2_1_tr_10" onclick="changeType2_1('10','SDK_WNEQ_SYS_TPFL_Day')"
|
|
style="color: #01FFFF;cursor:pointer;">
|
|
<td style="color: #ffffff;text-align: right;font-weight:400;">石英砂</td>
|
|
<td style="color: #B8BEBE;text-align: left;font-weight:400;padding-left: 5px;">(t)
|
|
</td>
|
|
<td class="SDK_WNEQ_SYS_TPFL_Day"></td>
|
|
<td class="SDK_WNEQ_SYS_TPFL_Mon"></td>
|
|
<td class="SDK_WNEQ_SYS_TPFL_Year"></td>
|
|
</tr>
|
|
<tr id="type2_1_tr_11" onclick="changeType2_1('11','SDK_WNEQ_YBFH_TPFL_Day')"
|
|
style="color: #01FFFF;cursor:pointer;">
|
|
<td style="color: #ffffff;text-align: right;font-weight:400;">一般灰渣</td>
|
|
<td style="color: #B8BEBE;text-align: left;font-weight:400;padding-left: 5px;">(t)
|
|
</td>
|
|
<td class="SDK_WNEQ_YBFH_TPFL_Day"></td>
|
|
<td class="SDK_WNEQ_YBFH_TPFL_Mon"></td>
|
|
<td class="SDK_WNEQ_YBFH_TPFL_Year"></td>
|
|
</tr>
|
|
<tr style="color: #01FFFF;">
|
|
<td style="color: #ffffff;text-align: right;font-weight:400;background: rgba(0,0,0,0.31);">
|
|
合计
|
|
</td>
|
|
<td style="color: #B8BEBE;text-align: left;font-weight:400;padding-left: 5px;background: rgba(0,0,0,0.31);">
|
|
(t)
|
|
</td>
|
|
<td class="sum7" style="background: rgba(0,0,0,0.31);"></td>
|
|
<td class="sum8" style="background: rgba(0,0,0,0.31);"></td>
|
|
<td class="sum9" style="background: rgba(0,0,0,0.31);"></td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
<div style="float:left;width: 100%;height: calc((100% - 45px)*0.45);margin-top: 30px;padding-left: 20px;padding-right: 20px;">
|
|
<div style="float:left;width: 100%;height: 100%;background: rgba(12,12,12,0.60);">
|
|
<div id="chart5" style="float:left;width: 100%;height: 100%;padding: 20px;"></div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div style="float:left;width: 50%;height: 100%;">
|
|
<div style="float:left;width: 100%;height: calc((100% - 45px)*0.55);margin-top: 10px;padding-left: 20px;padding-right: 20px;">
|
|
<table style="width: 100%;height: 100%;text-align: center;">
|
|
<tr style="color: #FFFFFF;font-weight: 700;">
|
|
<td></td>
|
|
<td></td>
|
|
<td>碳排放强度_日</td>
|
|
<td>碳排放强度_月</td>
|
|
<td>碳排放强度_年</td>
|
|
<td width="150px" colspan="2">排放因子EF</td>
|
|
</tr>
|
|
<tr id="type2_2_tr_0"
|
|
onclick="changeType2_2('0','SDK_WNEQ_YDL_TPF_DH_Day')"
|
|
style="color: #01FFFF;cursor:pointer;font-weight: 700;background: rgba(0,177,255,0.31);border: 1px solid #00cbff;">
|
|
<td style="color: #ffffff;text-align: right;font-weight:400;">焚烧用电量</td>
|
|
<td style="color: #B8BEBE;text-align: left;font-weight:400;padding-left: 5px;">
|
|
kWh/tDs
|
|
</td>
|
|
<td class="SDK_WNEQ_YDL_TPF_DH_Day"></td>
|
|
<td class="SDK_WNEQ_YDL_TPF_DH_Mon"></td>
|
|
<td class="SDK_WNEQ_YDL_TPF_DH_Year"></td>
|
|
<td width="90px" style="color: #B8BEBE;text-align: right;font-weight:400;">0.00042</td>
|
|
<td width="60px" style="color: #B8BEBE;text-align: left;font-weight:400;padding-left: 5px;">
|
|
(tCO2/KWh)
|
|
</td>
|
|
</tr>
|
|
<tr id="type2_2_tr_1"
|
|
onclick="changeType2_2('1','SDK_WNEQ_ZLSLY_TPF_DH_Day')"
|
|
style="color: #01FFFF;cursor:pointer;font-weight: 700;">
|
|
<td style="color: #ffffff;text-align: right;font-weight:400;">总用水量</td>
|
|
<td style="color: #B8BEBE;text-align: left;font-weight:400;padding-left: 5px;">
|
|
m³/tDs
|
|
</td>
|
|
<td class="SDK_WNEQ_ZLSLY_TPF_DH_Day"></td>
|
|
<td class="SDK_WNEQ_ZLSLY_TPF_DH_Mon"></td>
|
|
<td class="SDK_WNEQ_ZLSLY_TPF_DH_Year"></td>
|
|
<td width="90px" style="color: #B8BEBE;text-align: right;font-weight:400;">0.00091</td>
|
|
<td width="60px" style="color: #B8BEBE;text-align: left;font-weight:400;padding-left: 5px;">
|
|
(tCO2/m³)
|
|
</td>
|
|
</tr>
|
|
<tr id="type2_2_tr_2"
|
|
onclick="changeType2_2('2','SDK_WNEQ_TRQLY_TPF_DH_Day')"
|
|
style="color: #01FFFF;cursor:pointer;font-weight: 700;">
|
|
<td style="color: #ffffff;text-align: right;font-weight:400;">天燃气</td>
|
|
<td style="color: #B8BEBE;text-align: left;font-weight:400;padding-left: 5px;">
|
|
Nm³/tDs
|
|
</td>
|
|
<td class="SDK_WNEQ_TRQLY_TPF_DH_Day"></td>
|
|
<td class="SDK_WNEQ_TRQLY_TPF_DH_Mon"></td>
|
|
<td class="SDK_WNEQ_TRQLY_TPF_DH_Year"></td>
|
|
<td width="90px" style="color: #B8BEBE;text-align: right;font-weight:400;">0.002165</td>
|
|
<td width="60px" style="color: #B8BEBE;text-align: left;font-weight:400;padding-left: 5px;">
|
|
(tCO2/m³)
|
|
</td>
|
|
</tr>
|
|
<tr id="type2_2_tr_3"
|
|
onclick="changeType2_2('3','SDK_WNEQ_PAM_TPF_DH_Day')"
|
|
style="color: #01FFFF;cursor:pointer;font-weight: 700;">
|
|
<td style="color: #ffffff;text-align: right;font-weight:400;">PAM</td>
|
|
<td style="color: #B8BEBE;text-align: left;font-weight:400;padding-left: 5px;">
|
|
kg/tDs
|
|
</td>
|
|
<td class="SDK_WNEQ_PAM_TPF_DH_Day"></td>
|
|
<td class="SDK_WNEQ_PAM_TPF_DH_Mon"></td>
|
|
<td class="SDK_WNEQ_PAM_TPF_DH_Year"></td>
|
|
<td width="90px" style="color: #B8BEBE;text-align: right;font-weight:400;">2.5</td>
|
|
<td width="60px" style="color: #B8BEBE;text-align: left;font-weight:400;padding-left: 5px;">
|
|
(tCO2/t)
|
|
</td>
|
|
</tr>
|
|
<tr id="type2_2_tr_4"
|
|
onclick="changeType2_2('4','SDK_WNEQ_JYLY_TPF_DH_Day')"
|
|
style="color: #01FFFF;cursor:pointer;font-weight: 700;">
|
|
<td style="color: #ffffff;text-align: right;font-weight:400;">碱液</td>
|
|
<td style="color: #B8BEBE;text-align: left;font-weight:400;padding-left: 5px;">
|
|
kg/tDs
|
|
</td>
|
|
<td class="SDK_WNEQ_JYLY_TPF_DH_Day"></td>
|
|
<td class="SDK_WNEQ_JYLY_TPF_DH_Mon"></td>
|
|
<td class="SDK_WNEQ_JYLY_TPF_DH_Year"></td>
|
|
<td width="90px" style="color: #B8BEBE;text-align: right;font-weight:400;">0.84</td>
|
|
<td width="60px" style="color: #B8BEBE;text-align: left;font-weight:400;padding-left: 5px;">
|
|
(tCO2/t)
|
|
</td>
|
|
</tr>
|
|
<tr id="type2_2_tr_5"
|
|
onclick="changeType2_2('5','SDK_WNEQ_HXT_TPF_DH_Day')"
|
|
style="color: #01FFFF;cursor:pointer;font-weight: 700;">
|
|
<td style="color: #ffffff;text-align: right;font-weight:400;">活性炭</td>
|
|
<td style="color: #B8BEBE;text-align: left;font-weight:400;padding-left: 5px;">
|
|
kg/tDs
|
|
</td>
|
|
<td class="SDK_WNEQ_HXT_TPF_DH_Day"></td>
|
|
<td class="SDK_WNEQ_HXT_TPF_DH_Mon"></td>
|
|
<td class="SDK_WNEQ_HXT_TPF_DH_Year"></td>
|
|
<td width="90px" style="color: #B8BEBE;text-align: right;font-weight:400;">1.6</td>
|
|
<td width="60px" style="color: #B8BEBE;text-align: left;font-weight:400;padding-left: 5px;">
|
|
(tCO2/t)
|
|
</td>
|
|
</tr>
|
|
<tr id="type2_2_tr_6"
|
|
onclick="changeType2_2('6','SDK_WNEQ_CAOH2_TPF_DH_Day')"
|
|
style="color: #01FFFF;cursor:pointer;font-weight: 700;">
|
|
<td style="color: #ffffff;text-align: right;font-weight:400;">消石灰</td>
|
|
<td style="color: #B8BEBE;text-align: left;font-weight:400;padding-left: 5px;">
|
|
kg/tDs
|
|
</td>
|
|
<td class="SDK_WNEQ_CAOH2_TPF_DH_Day"></td>
|
|
<td class="SDK_WNEQ_CAOH2_TPF_DH_Mon"></td>
|
|
<td class="SDK_WNEQ_CAOH2_TPF_DH_Year"></td>
|
|
<td width="90px" style="color: #B8BEBE;text-align: right;font-weight:400;">1.74</td>
|
|
<td width="60px" style="color: #B8BEBE;text-align: left;font-weight:400;padding-left: 5px;">
|
|
(tCO2/t)
|
|
</td>
|
|
</tr>
|
|
<tr id="type2_2_tr_7"
|
|
onclick="changeType2_2('7','SDK_WNEQ_LSSN_TPF_DH_Day')"
|
|
style="color: #01FFFF;cursor:pointer;font-weight: 700;">
|
|
<td style="color: #ffffff;text-align: right;font-weight:400;">磷酸三钠</td>
|
|
<td style="color: #B8BEBE;text-align: left;font-weight:400;padding-left: 5px;">
|
|
kg/tDs
|
|
</td>
|
|
<td class="SDK_WNEQ_LSSN_TPF_DH_Day"></td>
|
|
<td class="SDK_WNEQ_LSSN_TPF_DH_Mon"></td>
|
|
<td class="SDK_WNEQ_LSSN_TPF_DH_Year"></td>
|
|
<td width="90px" style="color: #B8BEBE;text-align: right;font-weight:400;">1.6</td>
|
|
<td width="60px" style="color: #B8BEBE;text-align: left;font-weight:400;padding-left: 5px;">
|
|
(tCO2/t)
|
|
</td>
|
|
</tr>
|
|
<tr id="type2_2_tr_8"
|
|
onclick="changeType2_2('8','SDK_WNEQ_GYY_TPF_DH_Day')"
|
|
style="color: #01FFFF;cursor:pointer;font-weight: 700;">
|
|
<td style="color: #ffffff;text-align: right;font-weight:400;">工业盐</td>
|
|
<td style="color: #B8BEBE;text-align: left;font-weight:400;padding-left: 5px;">
|
|
kg/tDs
|
|
</td>
|
|
<td class="SDK_WNEQ_GYY_TPF_DH_Day"></td>
|
|
<td class="SDK_WNEQ_GYY_TPF_DH_Mon"></td>
|
|
<td class="SDK_WNEQ_GYY_TPF_DH_Year"></td>
|
|
<td width="90px" style="color: #B8BEBE;text-align: right;font-weight:400;">1.6</td>
|
|
<td width="60px" style="color: #B8BEBE;text-align: left;font-weight:400;padding-left: 5px;">
|
|
(tCO2/t)
|
|
</td>
|
|
</tr>
|
|
<tr id="type2_2_tr_9"
|
|
onclick="changeType2_2('9','SDK_WNEQ_NS_TPF_DH_Day')"
|
|
style="color: #01FFFF;cursor:pointer;font-weight: 700;">
|
|
<td style="color: #ffffff;text-align: right;font-weight:400;">尿素</td>
|
|
<td style="color: #B8BEBE;text-align: left;font-weight:400;padding-left: 5px;">
|
|
kg/tDs
|
|
</td>
|
|
<td class="SDK_WNEQ_NS_TPF_DH_Day"></td>
|
|
<td class="SDK_WNEQ_NS_TPF_DH_Mon"></td>
|
|
<td class="SDK_WNEQ_NS_TPF_DH_Year"></td>
|
|
<td width="90px" style="color: #B8BEBE;text-align: right;font-weight:400;">2.51</td>
|
|
<td width="60px" style="color: #B8BEBE;text-align: left;font-weight:400;padding-left: 5px;">
|
|
(tCO2/t)
|
|
</td>
|
|
</tr>
|
|
<tr id="type2_2_tr_10"
|
|
onclick="changeType2_2('10','SDK_WNEQ_SYS_TPF_DH_Day')"
|
|
style="color: #01FFFF;cursor:pointer;font-weight: 700;">
|
|
<td style="color: #ffffff;text-align: right;font-weight:400;">石英砂</td>
|
|
<td style="color: #B8BEBE;text-align: left;font-weight:400;padding-left: 5px;">
|
|
kg/tDs
|
|
</td>
|
|
<td class="SDK_WNEQ_SYS_TPF_DH_Day"></td>
|
|
<td class="SDK_WNEQ_SYS_TPF_DH_Mon"></td>
|
|
<td class="SDK_WNEQ_SYS_TPF_DH_Year"></td>
|
|
<td width="90px" style="color: #B8BEBE;text-align: right;font-weight:400;">1.6</td>
|
|
<td width="60px" style="color: #B8BEBE;text-align: left;font-weight:400;padding-left: 5px;">
|
|
(tCO2/t)
|
|
</td>
|
|
</tr>
|
|
<tr id="type2_2_tr_11"
|
|
onclick="changeType2_2('11','SDK_WNEQ_YBFH_TPF_DH_Day')"
|
|
style="color: #01FFFF;cursor:pointer;font-weight: 700;">
|
|
<td style="color: #ffffff;text-align: right;font-weight:400;">一般灰渣</td>
|
|
<td style="color: #B8BEBE;text-align: left;font-weight:400;padding-left: 5px;">
|
|
tDs
|
|
</td>
|
|
<td class="SDK_WNEQ_YBFH_TPF_DH_Day"></td>
|
|
<td class="SDK_WNEQ_YBFH_TPF_DH_Mon"></td>
|
|
<td class="SDK_WNEQ_YBFH_TPF_DH_Year"></td>
|
|
<td width="90px" style="color: #B8BEBE;text-align: right;font-weight:400;">1.6</td>
|
|
<td width="60px" style="color: #B8BEBE;text-align: left;font-weight:400;padding-left: 5px;">
|
|
(tCO2/t)
|
|
</td>
|
|
</tr>
|
|
<tr style="color: #01FFFF;background: rgba(0,0,0,0.31);">
|
|
<td style="color: #ffffff;text-align: right;font-weight:400;">
|
|
合计
|
|
</td>
|
|
<td></td>
|
|
<td class="sum10"></td>
|
|
<td class="sum11"></td>
|
|
<td class="sum12"></td>
|
|
<td></td>
|
|
<td></td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
<div style="float:left;width: 100%;height: calc((100% - 45px)*0.45);margin-top: 30px;padding-left: 20px;padding-right: 20px;">
|
|
<div style="float:left;width: 100%;height: 100%;background: rgba(12,12,12,0.60);">
|
|
<div id="chart6" style="float:left;width: 100%;height: 100%;padding: 20px;"></div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
</body>
|
|
<!-- 引入daterangepicker-->
|
|
<link rel="stylesheet" href="<%=request.getContextPath()%>/plugins/bootstrap-daterangepicker/daterangepicker.css"/>
|
|
<script type="text/javascript" src="<%=request.getContextPath()%>/plugins/bootstrap-daterangepicker/moment.min.js"
|
|
charset="utf-8"></script>
|
|
<script type="text/javascript" src="<%=request.getContextPath()%>/plugins/bootstrap-daterangepicker/daterangepicker.js"
|
|
charset="utf-8"></script>
|
|
</html> |