SDtpSjdcFollowUpStatisticsPageEdit.html 5.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. <!DOCTYPE html>
  2. <html lang="zh" xmlns:th="http://www.thymeleaf.org" >
  3. <head>
  4. <th:block th:include="include :: header('随访统计表修改')" />
  5. </head>
  6. <body>
  7. <div class="ui-layout-center">
  8. <form id="form-SDtpSjdcFollowUpStatistics-edit" class="customize-search-form">
  9. <div class="customize-form-group-container">
  10. <input type="hidden" id="id" name="id" th:value="${id}">
  11. <div class="customize-form-group">
  12. <label>跟进人:</label>
  13. <input name="follower" placeholder="跟进人" th:value="${follower}" class="styled-input" type="text">
  14. </div>
  15. <div class="customize-form-group">
  16. <label>年龄:</label>
  17. <input name="age" placeholder="年龄" th:value="${age}" class="styled-input" type="text">
  18. </div>
  19. <div class="customize-form-group">
  20. <label>性别:</label>
  21. <input name="gender" placeholder="性别" th:value="${gender}" class="styled-input" type="text">
  22. </div>
  23. <div class="customize-form-group">
  24. <label>适应症:</label>
  25. <input name="indication" placeholder="适应症" th:value="${indication}" class="styled-input" type="text">
  26. </div>
  27. <div class="customize-form-group">
  28. <label>不良反应:</label>
  29. <input name="adverseReaction" placeholder="不良反应" th:value="${adverseReaction}" class="styled-input" type="text">
  30. </div>
  31. <div class="customize-form-group">
  32. <label>用药状态:</label>
  33. <input name="medicationStatus" placeholder="用药状态" th:value="${medicationStatus}" class="styled-input" type="text">
  34. </div>
  35. <div class="customize-form-group">
  36. <label>配合度:</label>
  37. <input name="cooperationLevel" placeholder="配合度" th:value="${cooperationLevel}" class="styled-input" type="text">
  38. </div>
  39. <div class="customize-form-group">
  40. <label>永久停药:</label>
  41. <input name="permanentDiscontinuation" placeholder="永久停药" th:value="${permanentDiscontinuation}" class="styled-input" type="text">
  42. </div>
  43. <div class="customize-form-group">
  44. <label>暂停用药:</label>
  45. <input name="temporarySuspension" placeholder="暂停用药" th:value="${temporarySuspension}" class="styled-input" type="text">
  46. </div>
  47. <div class="customize-form-group">
  48. <label>既往治疗方案:</label>
  49. <input name="previousTreatmentPlan" placeholder="既往治疗方案" th:value="${previousTreatmentPlan}" class="styled-input" type="text">
  50. </div>
  51. <div class="customize-form-group">
  52. <label>目前治疗方案:</label>
  53. <input name="currentTreatmentPlan" placeholder="目前治疗方案" th:value="${currentTreatmentPlan}" class="styled-input" type="text">
  54. </div>
  55. <div class="customize-form-group">
  56. <label>生存期(天):</label>
  57. <input name="survivalPeriod" placeholder="生存期(天)" th:value="${survivalPeriod}" class="styled-input" type="text">
  58. </div>
  59. <div class="customize-form-group">
  60. <label>药品通用名:</label>
  61. <input name="genericName" placeholder="药品通用名" th:value="${genericName}" class="styled-input" type="text">
  62. </div>
  63. <div class="customize-form-group">
  64. <label>患者数:</label>
  65. <input name="patientCount" placeholder="患者数" th:value="${patientCount}" class="styled-input" type="text">
  66. </div>
  67. <div class="customize-form-group">
  68. <label>任务数:</label>
  69. <input name="taskCount" placeholder="任务数" th:value="${taskCount}" class="styled-input" type="text">
  70. </div>
  71. </div>
  72. </form>
  73. </div>
  74. <div class="main-content">
  75. <div class="col-sm-offset-5 col-sm-10">
  76. <button type="button" class="btn btn-sm btn-primary" onclick="submitHandler()"><i class="fa fa-check"></i>保 存</button>&nbsp;
  77. <button type="button" class="btn btn-sm btn-danger" onclick="closeItem()"><i class="fa fa-reply-all"></i>关 闭 </button>
  78. </div>
  79. </div>
  80. <th:block th:include="include :: footer" />
  81. </body>
  82. </html>
  83. <script>
  84. function submitHandler() {
  85. var prefix = ctx + "dtp/sdtpsjdcfollowupstatistics";
  86. if ($.validate.form()) {
  87. var data = $("#form-SDtpSjdcFollowUpStatistics-edit").serializeArray();
  88. $.operate.saveTab(prefix + "/sDtpSjdcFollowUpStatisticsEdit", data);
  89. }
  90. }
  91. </script>