edit.jsp 44 KB

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