OrderCustemerInfoWeb.html 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. <!DOCTYPE html>
  2. <html lang="ko" xmlns:th="http://www.thymeleaf.org">
  3. <!--
  4. *******************************************************************************
  5. * @source : OrderCustemerInfoWeb.html
  6. * @desc : 고객정보 Page
  7. *============================================================================
  8. * STYLE24
  9. * Copyright(C) 2020 TSIT, All rights reserved.
  10. *============================================================================
  11. * VER DATE AUTHOR DESCRIPTION
  12. * === =========== ========== =============================================
  13. * 1.0 2021.02.01 jsh77b 최초 작성
  14. *******************************************************************************
  15. -->
  16. <div class="fold_head">
  17. <a href="javascript:void(0)">
  18. <div>
  19. <div class="fold_tit">
  20. <span>주문고객</span>
  21. </div>
  22. <div class="data">
  23. <span th:text="${custemerInfo.custNm}"></span>
  24. <span th:text="${custemerInfo.email}"></span>
  25. <span th:text="${custemerInfo.cellPhnno}"></span>
  26. </div>
  27. </div>
  28. </a>
  29. </div>
  30. <div class="fold_cont" style="display: none;">
  31. <input type="hidden" name="custNm" th:value="${custNm}"/>
  32. <input type="hidden" name="email" th:value="${email}"/>
  33. <input type="hidden" name="cellPhnno" th:value="${cellPhnno}"/>
  34. <div class="area_mbinfo">
  35. <dl>
  36. <div>
  37. <dt>
  38. <span class="sr-only">주문자명</span>
  39. </dt>
  40. <dd th:text="${custemerInfo.custNm}"></dd>
  41. </div>
  42. <div>
  43. <dt>
  44. <span class="sr-only">이메일</span>
  45. </dt>
  46. <dd th:text="${custemerInfo.email}">/dd>
  47. </div>
  48. <div>
  49. <dt>
  50. <span class="sr-only">휴대폰 번호</span>
  51. </dt>
  52. <dd>
  53. <span th:text="${custemerInfo.cellPhnno}"></span>
  54. <th:block th:if="${custemerInfo.ci} == null or ${custemerInfo.ci} == ''">
  55. <button type="button" class="btn_popup" id="">
  56. <span>본인인증하기</span>
  57. </button>
  58. </th:block>
  59. </dd>
  60. </div>
  61. </dl>
  62. </div>
  63. </div>
  64. <script th:inline="javascript">
  65. var dispYn = [[${order.dispYn}]]; // 노출여부
  66. //컨텐츠 호출
  67. $(document).ready( function() {
  68. // 화면펼침
  69. if (dispYn == "Y") {
  70. $("#custemerInfo .fold_head").addClass("on");
  71. $("#custemerInfo .fold_cont").css("display", "block");
  72. }
  73. });
  74. </script>
  75. </html>