| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="UTF-8">
- <script src="../Script/Common/huayi.load.js"></script>
- <script src="../Script/Common/huayi.config.js"></script>
- <link rel="stylesheet" href="../css/init.css" />
- <link rel="stylesheet" href="../js/layui/css/layui.css">
- <link rel="stylesheet" href="../js/zTree/zTreeStyle.css" />
- <title>新版知识库添加</title>
- <style type="text/css">
- .Common {
- width: 100%;
- height: 100%;
- }
- .Common table {
- width: 100%;
- }
- .inpBox {
- border: 1px solid #cccccc;
- height: 34px;
- width: 100%;
- display: inline-block;
- position: relative;
- vertical-align: middle;
- z-index: 111;
- }
- .addTree {
- background: #fff;
- position: absolute;
- width: 100%;
- border: 1px solid darkgrey;
- right: 0;
- top: 32px;
- display: none;
- z-index: 222;
- }
- .xl {
- display: inline-block;
- background: url(../../img/dropDown.png) no-repeat;
- height: 100%;
- background-position: center center;
- width: 20px;
- position: absolute;
- right: 0;
- top: 0px;
- cursor: pointer;
- }
- .ztree li span {
- border: none;
- padding: 0;
- }
- .inps {
- width: 80%;
- height: 32px;
- outline: none;
- border: 0;
- border-image-width: 0;
- padding: 0;
- padding-left: 3px;
- }
- .xl {
- 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;
- }
- .Cleans {
- display: inline-block;
- width: 20px;
- position: absolute;
- right: 21px;
- top: 9px;
- display: none;
- }
- .selDpart1 {
- position: absolute;
- left: 15px;
- top: 34px;
- z-index: 11111;
- width: 220px;
- line-height: 30px;
- background: #ffffff;
- display: none;
- }
- #sponsor {
- width: 218px;
- border: 1px solid #00a1cb;
- margin: 0;
- padding: 0;
- list-style: none;
- max-height: 212px;
- overflow-x: hidden;
- overflow-y: scroll;
- }
- #sponsor li {
- margin: 0;
- padding-left: 10px;
- width: 220px;
- height: 30px;
- line-height: 30px;
- list-style: none;
- }
- #sponsor li:hover {
- background: #00a1cb;
- }
- </style>
- </head>
- <body class="">
- <div class="wrapper wrapper-content animated fadeInRight">
- <form>
- <div>
- <div class="form-group clearfix">
- <span class="col-sm-1">
- 工单编号:
- </span>
- <span class="col-sm-5">
- <input type="text" class="khmc form-control" id="cusname" />
- </span>
- <span class="col-sm-1 Import">
- 部门:
- </span>
- <span class="col-sm-5" style="position: relative">
- <div class="inpBox">
- <input type="text" class="inps" onkeyup="darptSearch()" />
- <input type="hidden" id="PID">
- <i class="Cleans fa fa-close"></i>
- <i class="xl xl_one"></i>
- <div class="addTree xlAdd">
- <ul id="addTreeDemo" class="ztree"></ul>
- </div>
- </div>
- <div class="selDpart1">
- <ul id="sponsor"></ul>
- </div>
- </span>
- </div>
- <div class="form-group clearfix">
- <span class="col-sm-1">
- 考评内容:
- </span>
- <span class="col-sm-2">
- <select name="" id="evaluation" class="form-control">
- <option value="">请选择</option>
- </select>
- </span>
- <span class="col-sm-3">
- <select name="" id="bonusitems" class="form-control">
- <option value="">请选择</option>
- </select>
- </span>
- </div>
- <div class="form-group clearfix">
- <span class="col-sm-1 Import">备注:</span>
- <span class="col-sm-11">
- <input id="remark" class="form-control" type="text" style=" padding: 5px; width: 100%;" />
- </span>
- </div>
- <div class="form-group clearfix">
- </div>
- <div class="form-group clearfix" style="text-align: center">
- <a class="btns addBtn">保存</a>
- </div>
- </div>
- </form>
- </div>
- <script src="../js/layui/layui.js"></script>
- <script src="../js/adjustHeight.js"></script>
- <script src="../css/laydate/laydate.js"></script>
- <script src="../js/zTree/jquery.ztree.core.js"></script>
- <script src="js/addOrEditPerformanceBonus.js"></script>
- </body>
- </html>
|