| <%@ page language="java" contentType="text/html; charset=UTF-8" | 
|     pageEncoding="UTF-8"%> | 
|     <%@ include file="../../include/core.jsp" %> | 
| <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> | 
| <html> | 
| <head> | 
| <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> | 
| <title>系统日志</title> | 
|   | 
| <script type="text/javascript" src="${path }/jsFiles/sysLog.js"></script> | 
| <style type="text/css"> | 
| .modal-dialog {  | 
|     position: absolute;  | 
|     top: 0;  | 
|     bottom: 0;  | 
|     left: 0;  | 
|     right: 0;  | 
| }  | 
|   | 
| .modal-content {  | 
|     /*overflow-y: scroll; */  | 
|     position: absolute;  | 
|     top: 0;  | 
|     bottom: 0;  | 
|     height :60%; | 
|     width: 100%;  | 
| }  | 
|   | 
| .modal-body { | 
|     overflow-y: scroll;  | 
|     position: absolute;  | 
|     top: 55px;      | 
|     bottom: 65px;   | 
|     width: 100%;  | 
| }  | 
|   | 
| .modal-header .close {margin-right: 15px;}  | 
|   | 
| .modal-footer { | 
|     position: absolute;  | 
|     width: 100%;  | 
|     bottom: 0;  | 
| } | 
| </style> | 
| </head> | 
| <body> | 
|   | 
| <!-- search --> | 
| <div class="panel panel-default"> | 
|     <div class="panel-body"> | 
|         <form id="conForm" class="form-inline"> | 
|             <input type="text" class="form-control" style="width:10%" id="login_no" name="login_no" placeholder="登录账号"> | 
|             <input type="text" class="form-control" style="width:10%" id="login_name" name="login_name" placeholder="账号名称">             | 
|             <input type="text" class="form-control" style="width:10%" id="machine_ip" name="machine_ip" placeholder="客户端IP"> | 
|             <input type="text" class="form-control" style="width:10%" id="form_no" name="form_no" placeholder="访问API"> | 
|             <input type="text" class="form-control" style="width:10%" id="tts_keyname" name="tts_keyname" placeholder="操作内容"> | 
|             <input type="text" id="begin_date" style="width:15%" name="begin_date" onFocus="WdatePicker({dateFmt:'yyyy-MM-dd HH:mm:ss'})" readonly="readonly" class="form-control form-control-static" placeholder="开始时间"> | 
|             <input type="text" id="end_date" style="width:15%" name="end_date" onFocus="WdatePicker({dateFmt:'yyyy-MM-dd HH:mm:ss'})" readonly="readonly" class="form-control form-control-static" placeholder="结束时间"> | 
|              | 
|             <button type="button" onclick="getSysLogByCon()" class="btn btn-info "> | 
|            <span class="glyphicon glyphicon-search" aria-hidden="true" >  搜索</span></button> | 
|         </form> | 
|     </div> | 
| </div> | 
|   | 
| <table id="test-table" class="table table-hover table-striped table-condensed table-bordered"></table> | 
|   | 
| <!--toolbar  --> | 
| <div id="toolbar" class="btn-toolbar"> | 
| <!--     <button onclick="addLocation()" type="button" class="btn btn-success"> --> | 
| <!--       <span class="glyphicon glyphicon-plus" aria-hidden="true">初始化</span> --> | 
| <!--     </button> --> | 
|     <button id="exportButton" onclick="ExportExcel()" type="button" class="btn btn-success"> | 
|       <span class="glyphicon glyphicon-paste" aria-hidden="true" >导出</span> | 
|     </button> | 
|     <button id="resetButton" type="button" onclick="resetSysLog()" class="btn btn-danger"> | 
|       <span class="glyphicon glyphicon-trash" aria-hidden="true">清空</span> | 
|     </button> | 
| <!--     <button  type="button" onclick="resetLocation()" class="btn btn-warning"> --> | 
| <!--       <span class="glyphicon glyphicon-trash" aria-hidden="true">禁用</span> --> | 
| <!--     </button> --> | 
| </div> | 
|   | 
| </body> | 
| </html> |