| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <script src="../../Script/Common/huayi.load.js"></script>
- <script src="../../Script/Common/huayi.config.js"></script>
- <link rel="stylesheet" href="../../js/zTree/zTreeStyle.css" />
- <link rel="stylesheet" href="../../css/init.css" />
- <link rel="stylesheet" href="./css/registrationList.css">
- <title>编辑</title>
- <style>
- ul li {
- float: initial;
- list-style: none;
- }
- .wrapper-content{
- padding-right: 60px;
- }
- .common {
- width: 100%;
- text-align: center;
- padding: 10px 15px;
- }
- .common table {
- width: 100%;
- }
- .common table th {
- padding: 5px 8px 5px 0;
- text-align: right;
- }
- .common table td {
- padding: 6px 0 5px 10px;
- text-align: left;
- color: #717171;
- line-height: 200%;
- }
- .common table td textarea {
- width: 100%;
- vertical-align: middle;
- resize: none;
- outline: none;
- }
- .form-group {
- margin-bottom: 0;
- }
- .dropDownTree {
- border: 1px solid #a9a9a9;
- height: 27px;
- width: 55%;
- display: inline-block;
- position: relative;
- vertical-align: middle;
- }
- .dropDownTreeInput {
- width: 100%;
- height: 24px;
- outline: none;
- border: 0;
- border-image-width: 0;
- padding: 0;
- padding-left: 3px;
- }
- .dropDownThreeIcon {
- display: inline-block;
- background: url(../../img/dropDown.png) no-repeat;
- height: 100%;
- background-position: center center;
- width: 20px;
- position: absolute;
- right: 0;
- top: 0px;
- background-color: #f7bc8b;
- cursor: pointer;
- }
-
- .dropDownThreeIcon:hover {
- background-color: #e6d523;
- }
-
- .dropDownThree {
- background: #fff;
- position: absolute;
- width: 100%;
- border: 1px solid darkgrey;
- right: 0;
- top: 26px;
- display: none;
- height: 220px;
- overflow-y: auto;
- z-index: 99;
- }
- </style>
- </head>
- <body class="gray-bg">
- <div class="clearfix wrapper wrapper-content animated fadeInRight">
- <div class="common">
- <table class="customerService">
- <tbody>
- <tr>
- <th>所属部门:</th>
- <td>
- <div class="dropDownTree">
- <input type="text" class="dropDownTreeInput" id="departmentTreeValue" readonly="readonly"/>
- <i class="dropDownThreeIcon dropDownThreeIconDepartment"></i>
- <div class="dropDownThree dropDownThreeListDepartment">
- <ul id="departmentTree" class="ztree">
-
- </ul>
- </div>
- </div>
- </td>
- </tr>
- <tr>
- <td colspan="8" style="text-align: center;">
- <button class="btns customerSubmit">保 存</button>
- </td>
- </tr>
- </tbody>
- </table>
- </div>
- </div>
- <script src="../../js/zTree/jquery.ztree.core.js"></script>
- <script src="../../js/bootstrap-select/js/bootstrap-select.js"></script>
- <script src="../../js/comboSelect/jquery.combo.select.js"></script>
- <script src="../../js/laydate/laydate.js"></script>
- <script src="./js/transfer.js"></script>
- </body>
- </html>
|