| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <script src="/fwq/js/task/apply_task.js?__inline"></script>
- <div class="container-fluid ">
- <div class="row">
- <form class="form-horizontal">
- <div class="form-group">
- <label for="exampleInputAccount1" class="col-sm-1">稽查日期</label>
- <div class="col-sm-1" style="padding:0;">
- <input type="text" id="start_time" class="form-control form-date" placeholder="开始时间">
- </div>
- <label for="exampleInputAccount1" class="col-sm-1">考核部门</label>
- <div class="col-sm-1" style="padding:0;;width:120px">
- <select class="form-control" id="fsList">
- </select>
- </div>
- <div class="form-group col-sm-3" style="text-align:center">
- <div class="col-sm-4">
- <div class="checkbox">
- <label>
- <input type="checkbox" id="check_ss" > 申诉任务
- </label>
- </div>
- </div>
- <div class="col-sm-4">
- <div class="checkbox">
- <label>
- <input type="checkbox" id="check_zc" checked=true> 正常任务
- </label>
- </div>
- </div>
- </div>
- <div class="col-sm-2">
- <button class="btn btn-info2" style="width:80px;" type="button" onclick="queryUnexaminedTask()">查询</button>
- <div id="agreePatchBtn" style="float:right;display:none;">
- <button class="btn btn-info3" type="button" onclick="agreeApplyTaskPatch()"><i class="icon icon-plus-sign"></i> 一键同意</button>
- </div>
- </div>
- </div>
- </form>
- </div>
- <hr style="margin-top:0px;">
- <div id="unexamined_datatable"></div>
- </div>
- <div id="apply_detail_div" style="display:none;text-align:center;">
- <link rel="import" href="/fwq/view/task/applyDetail.html?__inline">
- </div>
- <script>
- $(document).ready(function() {
- initApplyPage();
- });
- </script>
|