| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137 |
- <!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" />
- </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="daoHang clearfix">
- <div class="dhLeft">
- <sapn><i class="syIcon"></i>位置:
- <a href="javaScript:;" id="ReIndex">首页</a>>
- <a href="javaScript:;">话务管理</a>>
- <a href="" style="color: #000;">座席组管理</a>
- </sapn>
- </div>
- <div class="dhRight">
- <a href="#" title="刷新"><i class="fa fa-refresh"></i></a>
- </div>
- </div>
- <div class="wrapper wrapper-content animated fadeInRight">
- <div class="toolBox clearfix">
- <div class="pull-left">
- <div class="form-inline">
- <div class="form-group">
- <input id="Key" type="text" class="form-control" placeholder="输入搜索的内容" />
- </div>
- </div>
- </div>
- <div class="pull-right">
- <a class="sc_btn" id="sc_btns">搜索</a>
- <a class="sc_btn add">添加</a>
- <a class="sc_btn xg">修改</a>
- <a class="sc_btn remove">删除</a>
- </div>
- </div>
- <div style="width: 100%;padding: 10px;">
- <table id="list" data-row-style="rowStyle" data-query-params="queryParams" data-click-to-select="true">
- <thead>
- <tr>
- <th data-field="state" data-checkbox="true"></th>
- <th data-field="F_ZXZCode" data-align="center">坐席组编号</th>
- <th data-field="F_ZXZName" data-align="center">座席组名称</th>
- <!--<th data-field="F_IVRKey" data-align="center">IVR按键</th>-->
- <th data-field="F_WHBDKey" data-align="center">外呼本地前缀</th>
- <th data-field="F_WHWDKey" data-align="center">外呼外地前缀</th>
- <th data-field="F_ZXAtt" data-align="center">座席归属地</th>
- <th data-field="F_Des" data-align="center">描述说明</th>
- </tr>
- </thead>
- <tbody id="tbody"></tbody>
- </table>
- </div>
- </div>
- <script src="../js/zTree/jquery.ztree.core.js"></script>
- <script src="../js/zTree/jquery.ztree.excheck.min.js"></script>
- <script src="js/seatsMess.js"></script>
- </body>
- </html>
|