|
@@ -765,13 +765,13 @@ $(document).ready(function() {
|
|
|
<c:forEach var="phr" items="${oxygenSaturationResult}" varStatus="status">
|
|
|
oxygenSaturationDatas.push({createDate: "${phr.createDate}", phrValue: "${phr.phrValue}"});
|
|
|
</c:forEach>
|
|
|
- drawPhrChart("oxygenSaturationChart", oxygenSaturationDatas, "체온");
|
|
|
+ drawPhrChart("oxygenSaturationChart", oxygenSaturationDatas, "산소포화도");
|
|
|
|
|
|
const bloodSugarDatas = [];
|
|
|
<c:forEach var="phr" items="${bloodSugarResult}" varStatus="status">
|
|
|
bloodSugarDatas.push({createDate: "${phr.createDate}", phrValue: "${phr.phrValue}"});
|
|
|
</c:forEach>
|
|
|
- drawPhrChart("bloodSugarChart", bloodSugarDatas, "체온");
|
|
|
+ drawPhrChart("bloodSugarChart", bloodSugarDatas, "혈당");
|
|
|
|
|
|
// 상단 환자 정보 영역 토글 이벤트
|
|
|
$(document).on("click", ".toggle .toggleHeader", function () {
|