Kaynağa Gözat

[phr] 건강정보이력 값이 빨간색으로 표시되는 현상 수정.

sjpark 4 yıl önce
ebeveyn
işleme
1bffcaa214
1 değiştirilmiş dosya ile 4 ekleme ve 4 silme
  1. 4 4
      src/main/webapp/WEB-INF/jsp/clinic/info.jsp

+ 4 - 4
src/main/webapp/WEB-INF/jsp/clinic/info.jsp

@@ -102,13 +102,13 @@ function retrievePhrData() {
 					row += "<tr>";
 					row += "<td>" + d.createDate + "</td>";
 					if (phrType==="bloodPressure") {
-					row += "<td><span class='text-danger'>" + parseInt(d.phrValue) + " / " + (isNaN(parseInt(d.phrValue2)) ? "--" : parseInt(d.phrValue2)) + "</span></td>";
+					row += "<td><span class=''>" + parseInt(d.phrValue) + " / " + (isNaN(parseInt(d.phrValue2)) ? "--" : parseInt(d.phrValue2)) + "</span></td>";
 					}
 					else if (phrType==="temperature") {
-					row += "<td><span class='text-danger'>" + d.phrValue + "</span></td>";
+					row += "<td><span class=''>" + d.phrValue + "</span></td>";
 					}
 					else {
-					row += "<td><span class='text-danger'>" + parseInt(d.phrValue) + "</span></td>";
+					row += "<td><span class=''>" + parseInt(d.phrValue) + "</span></td>";
 					}
 					row += "<td>" + d.recordedByName + "</td>";
 					row += "</tr>";
@@ -911,7 +911,7 @@ $(document).ready(function() {
 															<c:forEach var="i" begin="1" end="${phrTotal}">
 																<tr>
 																	<td><c:out value="${phrItems[phrTotal-i].createDate}" /></td>
-																	<td><span class="text-danger"><c:out value="${phrItems[phrTotal-i].phrValue} ℃" /></span></td>
+																	<td><span class=""><c:out value="${phrItems[phrTotal-i].phrValue} ℃" /></span></td>
 																	<td><c:out value="${phrItems[phrTotal-i].recordedByName}" /></td>
 																</tr>
 															</c:forEach>