高新区管委会,以5.0标准版为基准,从双汇项目拷贝

transfer.html 4.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <script src="../../Script/Common/huayi.load.js"></script>
  7. <script src="../../Script/Common/huayi.config.js"></script>
  8. <link rel="stylesheet" href="../../js/zTree/zTreeStyle.css" />
  9. <link rel="stylesheet" href="../../css/init.css" />
  10. <link rel="stylesheet" href="./css/registrationList.css">
  11. <title>编辑</title>
  12. <style>
  13. ul li {
  14. float: initial;
  15. list-style: none;
  16. }
  17. .wrapper-content{
  18. padding-right: 60px;
  19. }
  20. .common {
  21. width: 100%;
  22. text-align: center;
  23. padding: 10px 15px;
  24. }
  25. .common table {
  26. width: 100%;
  27. }
  28. .common table th {
  29. padding: 5px 8px 5px 0;
  30. text-align: right;
  31. }
  32. .common table td {
  33. padding: 6px 0 5px 10px;
  34. text-align: left;
  35. color: #717171;
  36. line-height: 200%;
  37. }
  38. .common table td textarea {
  39. width: 100%;
  40. vertical-align: middle;
  41. resize: none;
  42. outline: none;
  43. }
  44. .form-group {
  45. margin-bottom: 0;
  46. }
  47. .dropDownTree {
  48. border: 1px solid #a9a9a9;
  49. height: 27px;
  50. width: 55%;
  51. display: inline-block;
  52. position: relative;
  53. vertical-align: middle;
  54. }
  55. .dropDownTreeInput {
  56. width: 100%;
  57. height: 24px;
  58. outline: none;
  59. border: 0;
  60. border-image-width: 0;
  61. padding: 0;
  62. padding-left: 3px;
  63. }
  64. .dropDownThreeIcon {
  65. display: inline-block;
  66. background: url(../../img/dropDown.png) no-repeat;
  67. height: 100%;
  68. background-position: center center;
  69. width: 20px;
  70. position: absolute;
  71. right: 0;
  72. top: 0px;
  73. background-color: #f7bc8b;
  74. cursor: pointer;
  75. }
  76. .dropDownThreeIcon:hover {
  77. background-color: #e6d523;
  78. }
  79. .dropDownThree {
  80. background: #fff;
  81. position: absolute;
  82. width: 100%;
  83. border: 1px solid darkgrey;
  84. right: 0;
  85. top: 26px;
  86. display: none;
  87. height: 220px;
  88. overflow-y: auto;
  89. z-index: 99;
  90. }
  91. </style>
  92. </head>
  93. <body class="gray-bg">
  94. <div class="clearfix wrapper wrapper-content animated fadeInRight">
  95. <div class="common">
  96. <table class="customerService">
  97. <tbody>
  98. <tr>
  99. <th>部门:</th>
  100. <td>
  101. <div class="dropDownTree">
  102. <input type="text" class="dropDownTreeInput" id="departmentTreeValue" readonly="readonly"/>
  103. <i class="dropDownThreeIcon dropDownThreeIconDepartment"></i>
  104. <div class="dropDownThree dropDownThreeListDepartment">
  105. <ul id="departmentTree" class="ztree">
  106. </ul>
  107. </div>
  108. </div>
  109. </td>
  110. </tr>
  111. <tr>
  112. <td colspan="8" style="text-align: center;">
  113. <button class="btns customerSubmit">保&nbsp;存</button>
  114. </td>
  115. </tr>
  116. </tbody>
  117. </table>
  118. </div>
  119. </div>
  120. <script src="../../js/zTree/jquery.ztree.core.js"></script>
  121. <script src="../../js/bootstrap-select/js/bootstrap-select.js"></script>
  122. <script src="../../js/comboSelect/jquery.combo.select.js"></script>
  123. <script src="../../js/laydate/laydate.js"></script>
  124. <script src="./js/transfer.js"></script>
  125. </body>
  126. </html>