versionDetail.jsp 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. <%--
  2. Created by IntelliJ IDEA.
  3. User: llh
  4. Date: 2016/1/7
  5. Time: 14:06
  6. To change this template use File | Settings | File Templates.
  7. --%>
  8. <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="utf-8"%>
  9. <%@include file="/WEB-INF/ehr/commons/jsp/commonInclude.jsp" %>
  10. <style type="text/css">
  11. .pane-attribute-toolbar{
  12. display: block;
  13. position: absolute;
  14. bottom: 0;
  15. left: 0;
  16. width: 100%;
  17. height: 50px;
  18. padding: 6px 0 4px;
  19. background-color: #fff;
  20. border-top: 1px solid #ccc;
  21. text-align: right;
  22. }
  23. .close-toolbar{
  24. margin-right: 20px;
  25. }
  26. input{
  27. height: 28px;
  28. width: 240px;
  29. }
  30. .m-form-inline .m-form-group{
  31. padding-bottom:0 !important;
  32. }
  33. </style>
  34. <div id="div_version_info_form" data-role-form class="m-form-inline f-mt20" style="display:none;margin-top: 20px;">
  35. <div class="m-form-group">
  36. <label>适配方案名称:</label>
  37. <div class="l-text-wrapper m-form-control">
  38. <label type="text" class="f-w240 f-pl5" id="txt_schemeNm" style="text-align: left"/>
  39. </div>
  40. </div>
  41. <div class="m-form-group">
  42. <label><span class="red">*&nbsp;</span>适配版本名称:</label>
  43. <div class="l-text-wrapper m-form-control">
  44. <input type="text" class="required f-w240 f-pl5" id="txt_versionNm" name="name">
  45. </div>
  46. </div>
  47. <div class="m-form-group" id="div_add_baseVersion">
  48. <label>基础版本名称:</label>
  49. <div class="m-form-control">
  50. <input type="text" class="f-w240 f-pl5" id="sel_baseVersion" data-type="select" name="baseVersion" style="text-align: left"/>
  51. </div>
  52. </div>
  53. <div class="m-form-bottom">
  54. <div id="btn_close" class="l-button l-button-no">
  55. <span>取消</span>
  56. </div>
  57. <div id="btn_save" class="l-button">
  58. <span>确认</span>
  59. </div>
  60. </div>
  61. <input type="hidden" id="schemeId" name="schemeId"/>
  62. <input type="hidden" id="type" value=""/>
  63. <input type="hidden" id="hd_url" value="${contextRoot}"/>
  64. </div>
  65. <div id="div_see_version_info_form" data-role-form class="m-form-inline f-mt20" style="display:none;">
  66. <div class="m-form-group">
  67. <label>适配方案名称:</label>
  68. <div class="l-text-wrapper m-form-control">
  69. <label type="text" class="f-w240 " id="lbl_schemeNm" style="text-align: left"/>
  70. </div>
  71. </div>
  72. <div class="m-form-group">
  73. <label>适配版本名称:</label>
  74. <div class="l-text-wrapper m-form-control">
  75. <label type="text" class="required f-w240 " id="lbl_versionNm" style="text-align: left"/>
  76. </div>
  77. </div>
  78. <div class="m-form-group">
  79. <label>基础版本名称:</label>
  80. <div class="m-form-control">
  81. <label type="text" class="f-w240 " id="lbl_primaryVersion" style="text-align: left"></label>
  82. </div>
  83. </div>
  84. <div class="m-form-bottom">
  85. <div id="btn_confirm" class="l-button">
  86. <span>确认</span>
  87. </div>
  88. </div>
  89. </div>