log.html 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. <div class="loading in" ng-class="{'in': loading}">
  2. <i></i>
  3. </div>
  4. <div class="pane base-info" style="max-height: 500px;overflow: auto;">
  5. <div class="pane-header">
  6. 数据传输日志
  7. <div class="pull-right">
  8. <a href="log/erp/xls" target="_self" class="text-simple"><i class="fa fa-file-excel-o fa-fw"></i>导出</a>
  9. </div>
  10. </div>
  11. <div class="pane-body">
  12. <table class="block table table-default table-striped"
  13. ng-table="erpParams">
  14. <thead>
  15. <tr class="header">
  16. <th width="130">时间</th>
  17. <th width="130">客户端IP</th>
  18. <th width="80">操作人员</th>
  19. <th width="120">请求资源</th>
  20. <th>请求动作</th>
  21. <th width="60">数据包</th>
  22. </tr>
  23. </thead>
  24. <tbody>
  25. <tr ng-repeat="erp in $data">
  26. <td class="text-center" ng-bind="::erp.time | date:'MM-dd HH:mm:ss'"></td>
  27. <td class="text-center" ng-bind="::erp.ip"></td>
  28. <td class="text-center" ng-bind="::erp.user.userName"></td>
  29. <td class="text-center" ng-bind="::erp.title"></td>
  30. <td ng-bind="::erp.message"></td>
  31. <td class="text-center" ng-bind="::erp.total"></td>
  32. </tr>
  33. </tbody>
  34. </table>
  35. </div>
  36. </div>
  37. <div class="pane base-info" style="max-height: 500px;overflow: auto;">
  38. <div class="pane-header">
  39. 平台使用日志
  40. <div class="pull-right">
  41. <a href="log/usage/xls" target="_self" class="text-simple"><i class="fa fa-file-excel-o fa-fw"></i>导出</a>
  42. </div>
  43. </div>
  44. <div class="pane-body">
  45. <table class="block table table-default table-striped"
  46. ng-table="usageParams">
  47. <thead>
  48. <tr class="header">
  49. <th width="130">时间</th>
  50. <th width="130">客户端IP</th>
  51. <th width="80">操作人员</th>
  52. <th width="120">请求资源</th>
  53. <th>请求动作</th>
  54. <th>备注</th>
  55. </tr>
  56. </thead>
  57. <tbody>
  58. <tr ng-repeat="usage in $data">
  59. <td class="text-center" ng-bind="::usage.time | date:'MM-dd HH:mm:ss'"></td>
  60. <td class="text-center" ng-bind="::usage.ip"></td>
  61. <td class="text-center" ng-bind="::usage.user.userName"></td>
  62. <td class="text-center" ng-bind="::usage.title"></td>
  63. <td ng-bind="::usage.message"></td>
  64. <td ng-bind="::usage.detail"></td>
  65. </tr>
  66. </tbody>
  67. </table>
  68. </div>
  69. </div>