new.jsp 43 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604
  1. <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
  2. <%@ taglib prefix="form" uri="http://www.springframework.org/tags/form"%>
  3. <%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"%>
  4. <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
  5. <jsp:include page="${data._INCLUDE}/header.jsp"></jsp:include>
  6. <script type="text/javascript">
  7. function patientNewInit() {
  8. if( $( "#basalN" ).is( ":checked" ) ) {
  9. $( "td.basalDisease input" ).prop( "disabled", true );
  10. }
  11. $( "label.label-readonly-check" ).each( function( i, v ){
  12. var $this = $(v);
  13. var checkbox = $this.find( "input[type='checkbox']" );
  14. var textbox = $this.find( "input[type='text']" );
  15. if( !checkbox.is(":checked") ){
  16. textbox.prop( "readonly", true );
  17. }
  18. });
  19. };
  20. function setEventHandler(){
  21. //체크yes시 content입력 처리
  22. $( "label.label-readonly-check input[type='checkbox']" ).on( "click", function(){
  23. var $this = $( this );
  24. $this.closest( "label" ).find( "input[type='text']" ).prop( "readonly", $this.is( ":checked" ) === false );
  25. if( $this.is( ":checked" ) === false ) {
  26. $this.closest( "label" ).find( "input[type='text']" ).val( "" );
  27. } else {
  28. $this.closest( "label" ).find( "input[type='text']" ).focus();
  29. };
  30. });
  31. //기저질환유무 처리
  32. $( "input[name='basalDiseaseYn']" ).on( "click", function(){
  33. var $this = $( this );
  34. if( $this.val() == "Y" ){
  35. patientNewInit();
  36. $( ".basalDisease input" ).prop( "disabled", false );
  37. } else {
  38. $( "td.basalDisease input" ).prop( "disabled", true );
  39. $( "td.basalDisease input[type='checkbox']" ).prop( "checked", false );
  40. $( "td.basalDisease input[type='text']" ).val( "" );
  41. }
  42. });
  43. $( "input[name='pregnancyStatus']" ).on( "click", function(){
  44. var $this = $( this );
  45. if ($this.val() == "Y") {
  46. $("#pregnancyWeek").prop("disabled", false);
  47. } else {
  48. $("#pregnancyWeek").prop("disabled", true);
  49. $("#pregnancyWeek").val("");
  50. }
  51. });
  52. //입소일시
  53. $( ".hospitalizationDate" ).on( "change", function(){
  54. var ymd = $( "#hospitalizationDateYmd" ).val();
  55. var hour = $( "#hospitalizationDateHour" ).val();
  56. var min = $( "#hospitalizationDateMin" ).val();
  57. hour = Number(hour) < 10 ? "0" + hour : hour;
  58. min = Number(min) < 10 ? "0" + min : min;
  59. $( "#hospitalizationDate" ).val( ymd + " " + hour + ":" + min + ":00" );
  60. });
  61. //성별 남선택시 임신유무 고정
  62. $( "input[name='gender']" ).on( "click", function(){
  63. var gender = $( this ).val();
  64. console.log( gender );
  65. if( gender == "M" ) {
  66. $( "input[name='pregnancyStatus']:input[value='N']" ).prop( "checked", true );
  67. $( "input[name='pregnancyStatus']:input[value='Y']" ).prop( "disabled", true );
  68. $( "#pregnancyWeek" ).val( "" ).prop( "disabled", true );
  69. } else {
  70. $( "input[name='pregnancyStatus']:input[value='N']" ).prop( "checked", false );
  71. $( "input[name='pregnancyStatus']:input[value='Y']" ).prop( "disabled", false );
  72. }
  73. });
  74. //생년월일
  75. $( ".select-date" ).on( "change", function(){
  76. var $this = $( this );
  77. var wrap = $this.closest( "div.date" );
  78. var dateYear = wrap.find( ".date-year" ).val();
  79. var dateMonth = wrap.find( ".date-month" ).val();
  80. var dateDay = wrap.find( ".date-day" ).val();
  81. dateMonth = Number(dateMonth) < 10 ? "0" + dateMonth : dateMonth;
  82. dateDay = Number(dateDay) < 10 ? "0" + dateDay : dateDay;
  83. wrap.find( "input.error-box" ).val( dateYear + "-" + dateMonth + "-" + dateDay );
  84. });
  85. $( "input.date" ).daterangepicker({
  86. singleDatePicker : true,
  87. showDropdowns : true,
  88. locale : {
  89. format : "YYYY-MM-DD"
  90. }
  91. });
  92. $( "input.date-no-req" ).daterangepicker({
  93. singleDatePicker : true,
  94. showDropdowns : true,
  95. locale : {
  96. format : "YYYY-MM-DD"
  97. },
  98. autoUpdateInput: false
  99. });
  100. $('input.date-no-req').on('apply.daterangepicker', function(ev, picker) {
  101. $(this).val(picker.startDate.format('YYYY-MM-DD'));
  102. });
  103. }
  104. $( function(){
  105. patientNewInit();
  106. setEventHandler();
  107. $( "#patientForm" ).validate({
  108. rules: {
  109. hospitalizationDate : {
  110. dateTime : true
  111. },
  112. patientPhone : {
  113. phoneValid : true
  114. },
  115. guardianPhone : {
  116. phoneValid : true
  117. },
  118. jumin : {
  119. date : true
  120. }
  121. },
  122. messages : {
  123. // jumin : "생년월일을 모두 선택해주세요",
  124. gender: "성별을 선택해주세요",
  125. // wardNumber : "동을 입력해주세요",
  126. roomNumber : "호실을 입력해주세요",
  127. hospitalizationDate : {
  128. dateTime:"입소일시를 선택해주세요"
  129. }
  130. },
  131. onkeyup: function( element, event ) {
  132. $( element ).valid();
  133. },
  134. onfocusout: function (element) {
  135. $( element ).val( $.trim( $( element ).val() ) );
  136. $( element ).valid();
  137. },
  138. errorPlacement: function(error, element) {
  139. if (element.attr("type") == "radio") {
  140. error.insertBefore(element);
  141. } else {
  142. error.insertAfter(element);
  143. }
  144. },
  145. submitHandler: function(form) {
  146. form.submit();
  147. }
  148. });
  149. });
  150. </script>
  151. </head>
  152. <body>
  153. <div class="wrapper">
  154. <jsp:include page="${data._INCLUDE}/sidebar.jsp"></jsp:include>
  155. <div class="main">
  156. <jsp:include page="${data._INCLUDE}/top.jsp"></jsp:include>
  157. <main class="content">
  158. <div class="container-fluid p-0">
  159. <!-- 환자관리 : 신규환자 등록 START -->
  160. <div class="row">
  161. <div class="col-12 col-lg-6">
  162. <h1 class="h3 mb-3">환자정보등록</h1>
  163. </div>
  164. <div class="col-12 col-lg-6 text-right">
  165. <nav aria-label="breadcrumb">
  166. <ol class="breadcrumb">
  167. <li class="breadcrumb-item"><a href="javscript:;">Home</a></li>
  168. <li class="breadcrumb-item">환자관리</li>
  169. <li class="breadcrumb-item active">환자정보 등록</li>
  170. </ol>
  171. </nav>
  172. </div>
  173. </div>
  174. <div class="row">
  175. <div class="col-12">
  176. <div class="card">
  177. <div class="card-body">
  178. <c:if test="${centerCount eq 0}">
  179. <table class="table mobile-table">
  180. <tr>
  181. <th>치료센터</th>
  182. <td class="text-danger">등록된 생활치료센터가 없습니다. <br/>생활치료센터 신규 등록을 해주세요. </td>
  183. </tr>
  184. </table>
  185. </c:if>
  186. <c:if test="${centerCount > 0}">
  187. <c:set var="now" value="<%=new java.util.Date()%>" />
  188. <c:set var="action" value="/patient/new/insert" />
  189. <form id="patientForm" action="${action}" method="post">
  190. <table class="table mobile-table">
  191. <colgroup>
  192. <col style="width:15%">
  193. <col style="width:35%">
  194. <col style="width:15%">
  195. <col style="width:35%">
  196. </colgroup>
  197. <tr>
  198. <th>치료센터</th>
  199. <td><c:out value="${centerName}"/></td>
  200. <th><span class="fix">*</span>입소일시</th>
  201. <td colspan="2">
  202. <div class="form-row">
  203. <!-- 입소일시 -->
  204. <c:set var="sysYmd"><fmt:formatDate value="${now}" pattern="yyyy-MM-dd" /></c:set>
  205. <c:set var="sysHour"><fmt:formatDate value="${now}" pattern="h" /></c:set>
  206. <c:set var="sysMin"><fmt:formatDate value="${now}" pattern="m" /></c:set>
  207. <div class="col-6 calendar-bar">
  208. <input class="form-control date hospitalizationDate" type="text" id="hospitalizationDateYmd">
  209. <i class="align-middle mr-2 fas fa-fw fa-calendar-alt"></i>
  210. </div>
  211. <div class="col-3">
  212. <select class="custom-select hospitalizationDate" id="hospitalizationDateHour">
  213. <option value="" selected="">시</option>
  214. <c:forEach var="h" begin="1" end="24" step="1">
  215. <option value="${h}" <c:if test="${sysHour eq h}">selected="selected"</c:if>>${h} 시</option>
  216. </c:forEach>
  217. </select>
  218. </div>
  219. <div class="col-3">
  220. <select class="custom-select hospitalizationDate" id="hospitalizationDateMin">
  221. <option value="" selected="">분</option>
  222. <c:forEach var="i" begin="0" end="59" step="1">
  223. <option value="${i}" <c:if test="${sysMin eq i}">selected="selected"</c:if>>${i} 분</option>
  224. </c:forEach>
  225. </select>
  226. </div>
  227. <input type="text" id="hospitalizationDate" name="hospitalizationDate" class="error-box" required>
  228. </div>
  229. </td>
  230. </tr>
  231. <tr>
  232. <th><span class="fix">*</span>병동 번호</th>
  233. <td>
  234. <div class="form-check-inline">
  235. <!-- 병동 번호 (동 /호실) -->
  236. <input type="text" class="form-control" name="wardNumber"> <span>동</span>
  237. <input type="text" class="form-control" name="roomNumber" required> <span>호</span>
  238. </div>
  239. </td>
  240. <th><span class="fix">*</span>이름</th>
  241. <td>
  242. <!-- 환자 이름 -->
  243. <input type="text" name="patientName" class="form-control" placeholder="이름을 입력해주세요" required>
  244. </td>
  245. </tr>
  246. <tr>
  247. <th><span class="fix">*</span>성별</th>
  248. <td>
  249. <!-- 성별 -->
  250. <label class="form-check form-check-inline">
  251. <input class="form-check-input" type="radio" name="gender" value="M" required>
  252. <span class="form-check-label">남</span>
  253. </label>
  254. <label class="form-check form-check-inline">
  255. <input class="form-check-input" type="radio" name="gender" value="F" required>
  256. <span class="form-check-label">여</span>
  257. </label>
  258. </td>
  259. <th><span class="fix">*</span>생년월일</th>
  260. <td>
  261. <!-- 생년월일 -->
  262. <div class="form-row date">
  263. <div class="col-4">
  264. <c:set var="sysYear"><fmt:formatDate value="${now}" pattern="yyyy" /></c:set>
  265. <select class="custom-select select-date date-year">
  266. <option value="" selected="">년</option>
  267. <c:forEach var="y" begin="1900" end="${sysYear}" step="1">
  268. <option value="${y}">${y} 년</option>
  269. </c:forEach>
  270. </select>
  271. </div>
  272. <div class="col-4">
  273. <select class="custom-select select-date date-month">
  274. <option value="" selected="">월</option>
  275. <c:forEach var="m" begin="1" end="12" step="1">
  276. <option value="${m}">${m} 월</option>
  277. </c:forEach>
  278. </select>
  279. </div>
  280. <div class="col-4">
  281. <select class="custom-select select-date date-day">
  282. <option value="" selected="">일</option>
  283. <c:forEach var="d" begin="1" end="31" step="1">
  284. <option value="${d}">${d} 일</option>
  285. </c:forEach>
  286. </select>
  287. </div>
  288. <input type="date" class="error-box" id="jumin" name="jumin" required>
  289. </div>
  290. </td>
  291. </tr>
  292. <tr>
  293. <th><span class="fix">*</span>연락처</th>
  294. <td>
  295. <input type="text" name="patientPhone" class="form-control" placeholder="연락처를 입력해주세요" required>
  296. </td>
  297. <th>보호자 연락처</th>
  298. <td>
  299. <input type="text" name="guardianPhone" class="form-control" placeholder="보호자 연락처를 입력해주세요">
  300. </td>
  301. </tr>
  302. <tr>
  303. <th><span class="fix">*</span>증상시작일</th>
  304. <td>
  305. <div class="form-group calendar-bar mb-xl-0">
  306. <input class="form-control date" type="text" name="symptomStartDate">
  307. <i class="align-middle mr-2 fas fa-fw fa-calendar-alt"></i>
  308. </div>
  309. </td>
  310. <th><span class="fix">*</span>확진일</th>
  311. <td>
  312. <div class="form-group calendar-bar mb-xl-0">
  313. <input class="form-control date" type="text" name="confirmationDate">
  314. <i class="align-middle mr-2 fas fa-fw fa-calendar-alt"></i>
  315. </div>
  316. </td>
  317. </tr>
  318. <tr>
  319. <th>격리해제 예정일</th>
  320. <td colspan="3">
  321. <div class="form-group calendar-bar mb-xl-0">
  322. <input class="form-control date-no-req" type="text" name="disisolationDate" autocomplete="off">
  323. <i class="align-middle mr-2 fas fa-fw fa-calendar-alt"></i>
  324. </div>
  325. </td>
  326. </tr>
  327. <tr>
  328. <th>최근약복용<br />(최근 24시간 이내)</th>
  329. <td>
  330. <label class="form-check form-check-inline">
  331. <input class="form-check-input" type="radio" value="N" name="drugYn" onclick="$('#drugContent').attr('readonly', true).val('');">
  332. <span class="form-check-label">미복용</span>
  333. </label>
  334. <label class="form-check form-check-inline">
  335. <input class="form-check-input" type="radio" value="Y" name="drugYn" onclick="$('#drugContent').removeAttr('readonly');">
  336. <span class="form-check-label">복용</span>
  337. </label>
  338. <label class="form-check form-check-inline">
  339. <input type="text" id="drugContent" class="form-control" name="drugContent" placeholder="약명을 입력하세요." readonly>
  340. </label>
  341. </td>
  342. <th>임신</th>
  343. <td>
  344. <label class="form-check form-check-inline">
  345. <input class="form-check-input" type="radio" name="pregnancyStatus" value="N">
  346. <span class="form-check-label">무</span>
  347. </label>
  348. <label class="form-check form-check-inline">
  349. <input class="form-check-input" type="radio" name="pregnancyStatus" value="Y">
  350. <span class="form-check-label">유</span>
  351. </label>
  352. <label class="form-check form-check-inline">
  353. <select class="custom-select" name="pregnancyWeek" id="pregnancyWeek" disabled>
  354. <option value="" selected="">임신 주차</option>
  355. <c:forEach var="p" begin="1" end="40" step="1">
  356. <option value="${p}">${p} 주</option>
  357. </c:forEach>
  358. </select>
  359. </label>
  360. </td>
  361. </tr>
  362. <tr>
  363. <th rowspan="4">기저질환 여부</th>
  364. <td colspan="3">
  365. <label class="form-check form-check-inline">
  366. <input class="form-check-input" type="radio" id="basalY" name="basalDiseaseYn" value="Y">
  367. <span class="form-check-label">예</span>
  368. </label>
  369. <label class="form-check form-check-inline">
  370. <input class="form-check-input" type="radio" id="basalN" name="basalDiseaseYn" value="N">
  371. <span class="form-check-label">아니오</span>
  372. </label>
  373. (예인 경우 하단의 기저질환을 선택하세요)
  374. </td>
  375. </tr>
  376. <tr>
  377. <td colspan="3" class="basalDisease">
  378. <label class="form-check form-check-inline">
  379. <input class="form-check-input" name="highBloodPressureCheck" type="checkbox" value="Y">
  380. <span class="form-check-label">고혈압</span>
  381. </label>
  382. <label class="form-check form-check-inline">
  383. <input class="form-check-input" name="lowBloodPressureCheck" type="checkbox" value="Y">
  384. <span class="form-check-label">저혈압</span>
  385. </label>
  386. <label class="form-check form-check-inline">
  387. <input class="form-check-input" name="organTransplantCheck" type="checkbox" value="Y">
  388. <span class="form-check-label">장기이식(신장, 간 등)</span>
  389. </label>
  390. <label class="form-check form-check-inline">
  391. <input class="form-check-input" name="diabetesCheck" type="checkbox" value="Y">
  392. <span class="form-check-label">당뇨병</span>
  393. </label>
  394. <label class="form-check form-check-inline">
  395. <input class="form-check-input" name="respiratoryDiseaseCheck" type="checkbox" value="Y">
  396. <span class="form-check-label">호흡기 질환</span>
  397. </label>
  398. <label class="form-check form-check-inline">
  399. <input class="form-check-input" name="immunologicalDiseaseCheck" type="checkbox" value="Y">
  400. <span class="form-check-label">면역질환(류마티스 등)</span>
  401. </label>
  402. </td>
  403. </tr>
  404. <tr>
  405. <td colspan="3" class="basalDisease">
  406. <label class="form-check form-check-inline">
  407. <input class="form-check-input" name="heartDisease" type="checkbox" value="Y">
  408. <span class="form-check-label">심장질환</span>
  409. </label>
  410. <label class="form-check form-check-inline">
  411. <input class="form-check-input" name="liverDisease" type="checkbox" value="Y">
  412. <span class="form-check-label">간질환</span>
  413. </label>
  414. <label class="form-check form-check-inline label-readonly-check">
  415. <input class="form-check-input" name="operation" type="checkbox" value="Y">
  416. <!-- ( <input type="text" id="operationContent" name="operationContent" class="form-control form-control-sm w150" name=""> ) -->
  417. <span class="form-check-label">수술</span>
  418. </label>
  419. <label class="form-check form-check-inline">
  420. <input class="form-check-input" name="allergyCheck" type="checkbox" value="Y">
  421. <span class="form-check-label">알레르기</span>
  422. </label>
  423. <label class="form-check form-check-inline">
  424. <input class="form-check-input" name="kidneyDisease" type="checkbox" value="Y">
  425. <span class="form-check-label">신장질환</span>
  426. </label>
  427. </td>
  428. </tr>
  429. <tr>
  430. <td colspan="3" class="basalDisease">
  431. <label class="form-check form-check-inline label-readonly-check">
  432. <input class="form-check-input" name="cancerCheck" type="checkbox" value="Y">
  433. <span class="form-check-label">암 ( <input type="text" name="cancerName" class="form-control form-control-sm w150"> )</span>
  434. </label>
  435. <label class="form-check form-check-inline label-readonly-check">
  436. <input class="form-check-input" name="etcCheckDisease" type="checkbox" value="Y">
  437. <span class="form-check-label">기타 ( <input type="text" name="etcContentDisease" class="form-control form-control-sm w150"> )</span>
  438. </label>
  439. </td>
  440. </tr>
  441. <!-- 현재 증상 (입소 당시) -->
  442. <tr>
  443. <th rowspan="3">현재 증상<br />(입소 당시)</th>
  444. <td colspan="3">
  445. <label class="form-check form-check-inline">
  446. <input class="form-check-input" name="feverCheck" type="checkbox" value="Y">
  447. <span class="form-check-label">열감(열나는 느낌)</span>
  448. </label>
  449. <label class="form-check form-check-inline">
  450. <input class="form-check-input" name="coughCheck" type="checkbox" value="Y">
  451. <span class="form-check-label">기침</span>
  452. </label>
  453. <label class="form-check form-check-inline">
  454. <input class="form-check-input" name="colic" type="checkbox" value="Y">
  455. <span class="form-check-label">복통(배아픔)</span>
  456. </label>
  457. <label class="form-check form-check-inline">
  458. <input class="form-check-input" name="coldFitCheck" type="checkbox" value="Y">
  459. <span class="form-check-label">오한(추운 느낌)</span>
  460. </label>
  461. <label class="form-check form-check-inline">
  462. <input class="form-check-input" name="sputumCheck" type="checkbox" value="Y">
  463. <span class="form-check-label">가래</span>
  464. </label>
  465. <label class="form-check form-check-inline">
  466. <input class="form-check-input" name="ocinCheck" type="checkbox" value="Y">
  467. <span class="form-check-label">오심(구역질)</span>
  468. </label>
  469. <label class="form-check form-check-inline">
  470. <input class="form-check-input" name="chestPain" type="checkbox" value="Y">
  471. <span class="form-check-label">흉통(가슴 통증)</span>
  472. </label>
  473. </td>
  474. </tr>
  475. <tr>
  476. <td colspan="3">
  477. <label class="form-check form-check-inline">
  478. <input class="form-check-input" name="noseCheck" type="checkbox" value="Y">
  479. <span class="form-check-label">콧물 또는 코 막힘</span>
  480. </label>
  481. <label class="form-check form-check-inline">
  482. <input class="form-check-input" name="vomitingCheck" type="checkbox" value="Y">
  483. <span class="form-check-label">구토</span>
  484. </label>
  485. <label class="form-check form-check-inline">
  486. <input class="form-check-input" name="musclePainCheck" type="checkbox" value="Y">
  487. <span class="form-check-label">근육통(몸살)</span>
  488. </label>
  489. <label class="form-check form-check-inline">
  490. <input class="form-check-input" name="soreThroatCheck" type="checkbox" value="Y">
  491. <span class="form-check-label">인후통(목 아픔)</span>
  492. </label>
  493. <label class="form-check form-check-inline">
  494. <input class="form-check-input" name="diarrheaCheck" type="checkbox" value="Y">
  495. <span class="form-check-label">설사</span>
  496. </label>
  497. <label class="form-check form-check-inline">
  498. <input class="form-check-input" name="headacheCheck" type="checkbox" value="Y">
  499. <span class="form-check-label">두통(머리아픔)</span>
  500. </label>
  501. <label class="form-check form-check-inline">
  502. <input class="form-check-input" name="dyspneaCheck" type="checkbox" value="Y">
  503. <span class="form-check-label">호흡곤란(숨가쁨)</span>
  504. </label>
  505. <label class="form-check form-check-inline">
  506. <input class="form-check-input" name="fatigueCheck" type="checkbox" value="Y">
  507. <span class="form-check-label">권태감(피곤함)</span>
  508. </label>
  509. </td>
  510. </tr>
  511. <tr>
  512. <td colspan="3">
  513. <label class="form-check form-check-inline label-readonly-check">
  514. <input class="form-check-input" name="etcCheckSymptom" type="checkbox" value="Y">
  515. <span class="form-check-label">기타 ( <input type="text" name="etcContentSymptom" class="form-control form-control-sm w150"> )</span>
  516. </label>
  517. </td>
  518. </tr>
  519. <tr>
  520. <th>체온</th>
  521. <td>우측 (<input type="text" class="form-control form-control-sm w50" name="feverRight">)℃ / 좌측 (<input type="text" class="form-control form-control-sm w50" name="feverLeft">)℃</td>
  522. <th>맥박수</th>
  523. <td>
  524. (<input type="text" class="form-control form-control-sm w50" name="pulseRate">) 회/분
  525. </td>
  526. </tr>
  527. <tr>
  528. <th>호흡수</th>
  529. <td>
  530. (<input type="text" class="form-control form-control-sm w50" name="respirationRate">) 회/분
  531. </td>
  532. <th>혈압</th>
  533. <td>수축기 (
  534. <input type="text" class="form-control form-control-sm w50" name="bloodPressureLevelCon">)mmHg
  535. / 이완기 (
  536. <input type="text" class="form-control form-control-sm w50" name="bloodPressureLevelRel">)mmHg
  537. </td>
  538. </tr>
  539. <tr>
  540. <th>산소포화도</th>
  541. <td colspan="3">
  542. (<input type="text" class="form-control form-control-sm w50" name="oxygenSaturation">) %
  543. </td>
  544. </tr>
  545. </table>
  546. <div class="row mt-3">
  547. <div class="col-12">
  548. <div class="text-right">
  549. <button type="button" class="btn btn-outline-primary w100" onclick="history.back();">취소</button>
  550. <button type="submit" class="btn btn-primary w100">등록</button>
  551. </div>
  552. </div>
  553. </div>
  554. </form>
  555. </c:if>
  556. </div>
  557. </div>
  558. </div>
  559. </div>
  560. <!-- 환자관리 : 신규환자 등록 END -->
  561. </div>
  562. </main>
  563. <jsp:include page="${data._INCLUDE}/footer.jsp"></jsp:include>
  564. </div>
  565. </div>
  566. </body>
  567. </html>