new.jsp 45 KB

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