| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131 |
- <!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" />
- <title>任务管理</title>
- <style type="text/css">
- .xg {
- margin-right: 7px;
- }
-
- .wrap,
- .bottomQ {
- width: 100%;
- padding: 0 10px;
- }
-
- .wrap>div.tbleft {
- float: left;
- width: 35%;
- }
-
- .wrap>div.tbright {
- float: right;
- width: 63%;
- overflow-x: auto;
- }
-
- .anniu .btn {
- margin-bottom: 10px;
- padding: 5px 10px;
- }
-
- .btn:hover {
- color: #fff!important;
- }
-
- .Title_box {
- line-height: 20px;
- border-bottom: 1px solid #ccc;
- padding-bottom: 10px;
- }
-
- .toolBar {
- border: none;
- margin-bottom: 0;
- margin-top: -10px;
- }
- </style>
- </head>
- <body>
- <div class="container-fluid wrapper wrapper-content animated fadeInRight">
- <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>
- <div class='wrap'>
- <div class="tbleft">
- <h4 class="Title_box">任务列表</h4>
- <div class="toolBar clearfix">
- <div class="toolRight pull-left">
- <span>关键字:<input type="text" id="key" /></span>
- <button class="btns" id="sc_btns">搜索</button>
- <button class="btns" onclick="btn_add()">添加任务</button>
- </div>
- </div>
- <div class="tableBox">
- <table id="table1" data-row-style="rowStyle" data-query-params="queryParams" data-pagination="true">
- <thead>
- <tr>
- <th data-field="" data-formatter="setCode" data-align="center">编号</th>
- <th data-field="taskName" data-align="center">任务名</th>
- <th data-field="question1" data-align="center">问题1</th>
- <th data-field="question2" data-align="center">问题2</th>
- <th data-field="question3" data-align="center">问题3</th>
- <th data-field="createBy" data-align="center">创建人</th>
- <th data-field="createTime" data-align="center">创建时间</th>
- <!--<th data-formatter="formatterOperation" data-align="center">操作</th>-->
- </tr>
- </thead>
- </table>
- </div>
- </div>
- <!--右边/-->
- <div class="tbright">
- <h4 class="Title_box">号码列表</h4>
- <div class="toolBar clearfix">
- <div class="toolRight pull-left">
- <button class="Dr btns size-14"><i class="fa fa-plus size-14"></i>号码导入</button>
- <button class="RemoveDr btns size-14"><i class="fa fa-remove size-14"></i>批量删除</button>
- <button class="RemoveCall btns size-14"><i class="fa fa-remove size-14"></i>无呼叫删除</button>
- <button class="exportCall btns size-14"><i class="fa size-14"></i>无呼叫导出</button>
- </div>
- </div>
- <table id="rightTable" data-row-style="rowStyle" data-query-params="queryParams" data-pagination="true">
- <thead>
- <tr>
- <th data-field="state" data-checkbox="true"></th>
- <th data-field="orderNature" data-align="center">目标分类</th>
- <th data-field="salesOffice" data-align="center">营业部</th>
- <th data-field="phone" data-align="center">号码</th>
- <th data-field="broadbandAccount" data-align="center">宽带账号</th>
- <th data-field="address" data-align="center">地址</th>
- <th data-field="accessTime" data-align="center">入网时间</th>
- <th data-field="channel" data-align="center">入网渠道</th>
- <th data-field="service" data-align="center">营服</th>
- <th data-field="package" data-align="center">套餐</th>
- <th data-field="fusion" data-align="center">是否融合</th>
- <th data-field="phoneState" data-align="center">状态</th>
-
- </tr>
- </thead>
- </table>
- </div>
- </div>
- </div>
- <script src="../js/laydate/laydate.js"></script>
- <script src="./js/taskList.js"></script>
- </body>
- </html>
|