Browse Source

[phr] 진료관리 - 의료진 phr 데이터 입력시 디폴트값 설정.

sjpark 4 years ago
parent
commit
15f30c70f8
1 changed files with 6 additions and 6 deletions
  1. 6 6
      src/main/webapp/WEB-INF/jsp/clinic/info.jsp

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

@@ -474,7 +474,7 @@ $(document).ready(function() {
 			healthInfoHTML += '<th>체온</th>';
 			healthInfoHTML += '<td>';
 			healthInfoHTML += '	<div class="form-group mb-xl-0">';
-			healthInfoHTML += '		<input id="phrValue" class="form-control" type="number" placeholder="체온 입력">';
+			healthInfoHTML += '		<input id="phrValue" class="form-control" type="number" placeholder="체온 입력" value="36.5" step="0.1">';
 			healthInfoHTML += '	</div>';
 			healthInfoHTML += '</td>';
 		}
@@ -482,8 +482,8 @@ $(document).ready(function() {
 			healthInfoHTML += '<th>혈압</th>';
 			healthInfoHTML += '<td>';
 			healthInfoHTML += '	<div class="form-group mb-xl-0">';
-			healthInfoHTML += '		<input id="phrValueSystolic" class="form-control mb-2" type="number" placeholder="수축기 혈압 입력">';
-			healthInfoHTML += '		<input id="phrValueDiastolic" class="form-control mb-2" type="number" placeholder="이완기 혈압 입력">';
+			healthInfoHTML += '		<input id="phrValueSystolic" class="form-control mb-2" type="number" placeholder="수축기 혈압 입력" value="120">';
+			healthInfoHTML += '		<input id="phrValueDiastolic" class="form-control mb-2" type="number" placeholder="이완기 혈압 입력" value="80">';
 			healthInfoHTML += '	</div>';
 			healthInfoHTML += '</td>';
 		}
@@ -491,7 +491,7 @@ $(document).ready(function() {
 			healthInfoHTML += '<th>맥박</th>';
 			healthInfoHTML += '<td>';
 			healthInfoHTML += '	<div class="form-group mb-xl-0">';
-			healthInfoHTML += '		<input id="phrValue" class="form-control" type="number" placeholder="맥박 입력">';
+			healthInfoHTML += '		<input id="phrValue" class="form-control" type="number" placeholder="맥박 입력" value="65">';
 			healthInfoHTML += '	</div>';
 			healthInfoHTML += '</td>';
 		}
@@ -499,7 +499,7 @@ $(document).ready(function() {
 			healthInfoHTML += '<th>산소포화도</th>';
 			healthInfoHTML += '<td>';
 			healthInfoHTML += '	<div class="form-group mb-xl-0">';
-			healthInfoHTML += '		<input id="phrValue" class="form-control" type="text" placeholder="산소포화도 입력">';
+			healthInfoHTML += '		<input id="phrValue" class="form-control" type="number" placeholder="산소포화도 입력" value="95">';
 			healthInfoHTML += '	</div>';
 			healthInfoHTML += '</td>';
 		}
@@ -507,7 +507,7 @@ $(document).ready(function() {
 			healthInfoHTML += '<th>혈당</th>';
 			healthInfoHTML += '<td>';
 			healthInfoHTML += '	<div class="form-group mb-xl-0">';
-			healthInfoHTML += '		<input id="phrValue" class="form-control" type="text" placeholder="혈당 입력">';
+			healthInfoHTML += '		<input id="phrValue" class="form-control" type="number" placeholder="혈당 입력" value="120"">';
 			healthInfoHTML += '	</div>';
 			healthInfoHTML += '</td>';
 		}