| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- <div class="loading in" ng-class="{'in': loading}">
- <i></i>
- </div>
- <div class="pane base-info" style="max-height: 500px;overflow: auto;">
- <div class="pane-header">
- 数据传输日志
- <div class="pull-right">
- <a href="log/erp/xls" target="_self" class="text-simple"><i class="fa fa-file-excel-o fa-fw"></i>导出</a>
- </div>
- </div>
- <div class="pane-body">
- <table class="block table table-default table-striped"
- ng-table="erpParams">
- <thead>
- <tr class="header">
- <th width="130">时间</th>
- <th width="130">客户端IP</th>
- <th width="80">操作人员</th>
- <th width="120">请求资源</th>
- <th>请求动作</th>
- <th width="60">数据包</th>
- </tr>
- </thead>
- <tbody>
- <tr ng-repeat="erp in $data">
- <td class="text-center" ng-bind="::erp.time | date:'MM-dd HH:mm:ss'"></td>
- <td class="text-center" ng-bind="::erp.ip"></td>
- <td class="text-center" ng-bind="::erp.user.userName"></td>
- <td class="text-center" ng-bind="::erp.title"></td>
- <td ng-bind="::erp.message"></td>
- <td class="text-center" ng-bind="::erp.total"></td>
- </tr>
- </tbody>
- </table>
- </div>
- </div>
- <div class="pane base-info" style="max-height: 500px;overflow: auto;">
- <div class="pane-header">
- 平台使用日志
- <div class="pull-right">
- <a href="log/usage/xls" target="_self" class="text-simple"><i class="fa fa-file-excel-o fa-fw"></i>导出</a>
- </div>
- </div>
- <div class="pane-body">
- <table class="block table table-default table-striped"
- ng-table="usageParams">
- <thead>
- <tr class="header">
- <th width="130">时间</th>
- <th width="130">客户端IP</th>
- <th width="80">操作人员</th>
- <th width="120">请求资源</th>
- <th>请求动作</th>
- <th>备注</th>
- </tr>
- </thead>
- <tbody>
- <tr ng-repeat="usage in $data">
- <td class="text-center" ng-bind="::usage.time | date:'MM-dd HH:mm:ss'"></td>
- <td class="text-center" ng-bind="::usage.ip"></td>
- <td class="text-center" ng-bind="::usage.user.userName"></td>
- <td class="text-center" ng-bind="::usage.title"></td>
- <td ng-bind="::usage.message"></td>
- <td ng-bind="::usage.detail"></td>
- </tr>
- </tbody>
- </table>
- </div>
- </div>
|