|
@@ -284,7 +284,10 @@ function retrievePhrData(phrType) {
|
|
|
drawPhrChart(phrType+"Chart", datas, phrName);
|
|
|
}
|
|
|
|
|
|
- var contents = "<tr><td colspan=3>데이터가 없습니다.</td></tr>" ;
|
|
|
+ var contents = "<tr><td colspan=4>데이터가 없습니다.</td></tr>" ;
|
|
|
+ if (phrType==="bloodPressure") {
|
|
|
+ contents = "<tr><td colspan=5>데이터가 없습니다.</td></tr>" ;
|
|
|
+ }
|
|
|
if (datas.length > 0) {
|
|
|
contents = "";
|
|
|
datas.forEach(function(d) {
|
|
@@ -488,7 +491,7 @@ function retrieveSymptomData() {
|
|
|
dataType : "json",
|
|
|
success : function( datas ){
|
|
|
|
|
|
- var html = "<tr><td colspan=18>데이터가 없습니다.</td></tr>" ;
|
|
|
+ var html = "<tr><td colspan=19>데이터가 없습니다.</td></tr>" ;
|
|
|
var checkSymbol = '<i class="mdi mdi-check-bold"></i>';
|
|
|
if (datas.length > 0) {
|
|
|
html = "";
|
|
@@ -650,7 +653,7 @@ function retrieveMemoData() {
|
|
|
dataType : "json",
|
|
|
success : function( datas ){
|
|
|
|
|
|
- var html = "<tr><td colspan=3>데이터가 없습니다.</td></tr>" ;
|
|
|
+ var html = "<tr><td colspan=4>데이터가 없습니다.</td></tr>" ;
|
|
|
if (datas.length > 0) {
|
|
|
html = "";
|
|
|
contents = datas.forEach(function(d) {
|
|
@@ -765,18 +768,19 @@ $(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, "혈당");
|
|
|
|
|
|
- // 상단 환자 정보 영역 토글 이벤트
|
|
|
+ // 상단 환자 정보 영역 토글 이벤트
|
|
|
+ $("#userInfo").find(".user-info").show();
|
|
|
$(document).on("click", ".toggle .toggleHeader", function () {
|
|
|
$(this).find("a.toggleBtn").toggleClass("active");
|
|
|
- $(this).closest(".card").find(".user-info").slideToggle("fast");
|
|
|
+ $("#userInfo").slideToggle("fast");
|
|
|
});
|
|
|
|
|
|
// 섹션 토글
|
|
@@ -1212,7 +1216,7 @@ $(document).ready(function() {
|
|
|
</h1>
|
|
|
<a href="javscript:;" class="toggleBtn">메뉴</a>
|
|
|
</div>
|
|
|
- <div class="card-body user-info">
|
|
|
+ <div id="userInfo" class="card-body user-info">
|
|
|
<div class="mb-3">
|
|
|
<button class="patientInfo btn btn-primary" onclick="gotoPatientInfo()"><i class="mdi mdi-account"></i> 환자정보 관리</button>
|
|
|
</div>
|
|
@@ -1314,7 +1318,7 @@ $(document).ready(function() {
|
|
|
</c:when>
|
|
|
<c:otherwise>
|
|
|
<tr>
|
|
|
- <td colspan=3>데이터가 없습니다.</td>
|
|
|
+ <td colspan=19>데이터가 없습니다.</td>
|
|
|
</tr>
|
|
|
</c:otherwise>
|
|
|
</c:choose>
|
|
@@ -1387,7 +1391,7 @@ $(document).ready(function() {
|
|
|
</c:when>
|
|
|
<c:otherwise>
|
|
|
<tr>
|
|
|
- <td colspan=3>데이터가 없습니다.</td>
|
|
|
+ <td colspan=4>데이터가 없습니다.</td>
|
|
|
</tr>
|
|
|
</c:otherwise>
|
|
|
</c:choose>
|
|
@@ -1465,7 +1469,7 @@ $(document).ready(function() {
|
|
|
</c:when>
|
|
|
<c:otherwise>
|
|
|
<tr>
|
|
|
- <td colspan=3>데이터가 없습니다.</td>
|
|
|
+ <td colspan=5>데이터가 없습니다.</td>
|
|
|
</tr>
|
|
|
</c:otherwise>
|
|
|
</c:choose>
|
|
@@ -1539,7 +1543,7 @@ $(document).ready(function() {
|
|
|
</c:when>
|
|
|
<c:otherwise>
|
|
|
<tr>
|
|
|
- <td colspan=3>데이터가 없습니다.</td>
|
|
|
+ <td colspan=4>데이터가 없습니다.</td>
|
|
|
</tr>
|
|
|
</c:otherwise>
|
|
|
</c:choose>
|
|
@@ -1613,7 +1617,7 @@ $(document).ready(function() {
|
|
|
</c:when>
|
|
|
<c:otherwise>
|
|
|
<tr>
|
|
|
- <td colspan=3>데이터가 없습니다.</td>
|
|
|
+ <td colspan=4>데이터가 없습니다.</td>
|
|
|
</tr>
|
|
|
</c:otherwise>
|
|
|
</c:choose>
|
|
@@ -1687,7 +1691,7 @@ $(document).ready(function() {
|
|
|
</c:when>
|
|
|
<c:otherwise>
|
|
|
<tr>
|
|
|
- <td colspan=3>데이터가 없습니다.</td>
|
|
|
+ <td colspan=4>데이터가 없습니다.</td>
|
|
|
</tr>
|
|
|
</c:otherwise>
|
|
|
</c:choose>
|