| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="UTF-8">
- <title>座席组管理</title>
- <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 href="../css/Table/table1.css" rel="stylesheet" />
- <link href="../css/init.css" rel="stylesheet" />
- <script src="../js/laydate/laydate.js"></script>
- </head>
- <style>
- .toolBar {
- padding: 15px 0;
- border-bottom: 1px solid #ccc;
- }
-
- .tree {
- height: 400px;
- overflow-y: auto;
- }
-
- .inpBox {
- border: 1px solid #a9a9a9;
- height: 27px;
- width: 172px;
- display: inline-block;
- position: relative;
- vertical-align: middle;
- }
-
- .inps {
- height: 24px;
- width: 172px;
- }
-
- .inps1,
- .inps4,
- .inps1_chg {
- width: 170px;
- height: 24px;
- 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;
- }
- /*.xl:hover{
- background-color: #e6d523;
- }*/
-
- .addTree {
- background: #fff;
- position: absolute;
- width: 100%;
- border: 1px solid darkgrey;
- right: 0;
- top: 26px;
- display: none;
- }
-
- .inpstext {
- resize: none;
- width: 50%;
- height: 70px;
- }
- </style>
- <body class="gray-bg">
- <div class="seatsMsg">
- <ul class="nav nav-tabs">
- <li class="active">
- <input type="hidden" id="ID" />
- </li>
- </ul>
- <div class="add_time">
- <label for="">编号:</label>
- <input type="text" id="Z_Nums" class="photo" />
- <label for="">名称:</label>
- <input type="text" id="Z_Names" class="photo" />
- </div>
- <div class="add_time">
- <label for="">所属地区号:</label>
- <input type="text" id="Z_gsds" class="photo" />
- <label for="">外呼外地前缀:</label>
- <input type="text" id="Z_ws" class="photo" />
- </div>
- <div class="add_time">
- <label for="">外呼本地前缀:</label>
- <input type="text" id="Z_bs" class="photo" />
-
- </div>
- <div class="add_time">
- <label for="">地区:</label>
- <div class="inpBox">
- <input type="text" class="inps inps6" readonly="readonly" />
- <input id="OPID" value="" hidden="hidden">
- <i class="xl xl_three"></i>
- <div class="addTree xlAdd_three">
- <ul id="xlAdd_zxz" class="ztree"></ul>
- </div>
- </div>
- </div>
- <div class="add_time">
- <label for="" class="Pb_sm">描述说明:</label>
- <textarea id="Pbs"></textarea>
- </div>
- <div class="add_time tc">
- <button type="button" class="btn sc_btn " id="tc" onclick="addedit()">保 存</button>
- </div>
- </div>
- <script src="../js/zTree/jquery.ztree.core.js"></script>
- <script src="../js/zTree/jquery.ztree.excheck.min.js"></script>
- <script src="js/editSeatsMess.js"></script>
- </body>
- </html>
|