Нет описания

add.html 3.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <link href="./css/bootstrap.min14ed.css?v=3.3.6" rel="stylesheet">
  6. <link href="./css/font-awesome.min93e3.css?v=4.4.0" rel="stylesheet">
  7. <link href="./css/animate.min.css" rel="stylesheet">
  8. <link href="./css/style.min862f.css?v=4.1.0" rel="stylesheet">
  9. <link href="./css/bootstrap-treeview.css" rel="stylesheet">
  10. <link rel="stylesheet" href="./css/layer/skin/default/layer.css" />
  11. <style>
  12. .layui-layer-title {
  13. background-color: #f0ad4e;
  14. }
  15. .form {
  16. margin: auto;
  17. }
  18. .form .formTitle {
  19. position: relative;
  20. left: 0px;
  21. text-align: right;
  22. white-space: nowrap;
  23. font-weight: normal;
  24. width: 90px;
  25. padding-right: 15px;
  26. }
  27. .form .formValue input.form-control {
  28. height: 30px;
  29. line-height: 30px;
  30. padding-top: 0px;
  31. padding-bottom: 0px;
  32. padding-right: 0px;
  33. padding-left: 5px;
  34. resize: none;
  35. border-radius: 0px;
  36. box-shadow: none;
  37. }
  38. .form-control {
  39. display: block;
  40. height: 34px;
  41. padding: 6px 12px;
  42. line-height: 1.42857143;
  43. color: #555;
  44. background-color: #fff;
  45. background-image: none;
  46. border: 1px solid #ddd;
  47. border-radius: 4px;
  48. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  49. box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  50. -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
  51. -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  52. transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  53. display: -webkit-inline-box;
  54. }
  55. .form .formValue {
  56. position: relative;
  57. padding: 5px;
  58. width: auto;
  59. width: 100%;
  60. }
  61. #F_OrganizeId {
  62. width: 100%;
  63. }
  64. #F_FullName {
  65. width: 100%;
  66. }
  67. .ibox-title {
  68. position: relative;
  69. }
  70. .ibox-titles {
  71. background-color: #fff;
  72. border-color: #e7eaec;
  73. -webkit-border-image: none;
  74. -o-border-image: none;
  75. border-image: none;
  76. border-style: solid solid none;
  77. border-width: 4px 0 0;
  78. color: inherit;
  79. margin-bottom: 0;
  80. padding: 14px 15px 7px;
  81. min-height: 48px;
  82. position: absolute;
  83. /*width: 100%;*/
  84. top: 0;
  85. left: 0;
  86. display: none;
  87. }
  88. .ibox-toolss {
  89. display: inline-block;
  90. float: left;
  91. margin-top: 0;
  92. position: relative;
  93. padding: 0;
  94. }
  95. .btn_box {
  96. display: block;
  97. /*margin: auto;*/
  98. text-align: center;
  99. margin-top: 15px;
  100. }
  101. .bh {
  102. text-decoration: none;
  103. cursor: pointer;
  104. }
  105. </style>
  106. </head>
  107. <body>
  108. <div style="padding:20px;">
  109. <table class="form">
  110. <tbody>
  111. <tr>
  112. <th class="formTitle">所属分类</th>
  113. <td class="formValue">
  114. <select id="F_OrganizeId" name="F_OrganizeId" class="form-control required select2-hidden-accessible" tabindex="-1" aria-hidden="true">
  115. <option value="">服务亲和力</option>
  116. <option value="">沟通技巧</option>
  117. <option value="">在线处理</option>
  118. </td>
  119. </tr>
  120. <tr>
  121. <th class="formTitle">分类名称</th>
  122. <td class="formValue">
  123. <input id="F_FullName" name="F_FullName" type="text" class="form-control required">
  124. </td>
  125. </tr>
  126. </tbody>
  127. </table>
  128. <div class="btn_box">
  129. <button class="btn btn-info">确认</button>
  130. <button class="btn btn-danger">取消</button>
  131. </div>
  132. </body>
  133. <script src="./js/jquery.min.js"></script>
  134. <script src="./js/bootstrap.min.js?v=3.3.6"></script>
  135. <script src="./js/content.min.js?v=1.0.0"></script>
  136. <script src="./css/layer/layer.js"></script>
  137. <script>
  138. var index = parent.layer.getFrameIndex(window.name);
  139. var add = $("#F_FullName").val();
  140. $(".btn-info").on("click", function() {
  141. parent.$(".node-selected").html($("#F_FullName").val());
  142. })
  143. </script>
  144. </html>