log.html 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. <style>
  2. .title-div .pull-right{
  3. float: right;
  4. margin-right: 15px;
  5. font-weight: normal;
  6. }
  7. .title-div .pull-right a{
  8. font-weight: normal;
  9. font-size: 14px;
  10. color: #5078cb;
  11. }
  12. #order-detail-list .table-default .header th{
  13. color: #323232;
  14. font-weight: bold;
  15. border-bottom: #e8e8e8 1px solid;
  16. }
  17. #order-detail-list .table>tbody+tbody{
  18. border-top: none;
  19. }
  20. #order-detail-list .table-default td{
  21. border-bottom: #e8e8e8 1px solid;
  22. border-top: none;
  23. }
  24. #order-detail-list .table-default td i{
  25. color: #5078cb;
  26. }
  27. #order-detail-list tbody tr{
  28. height: 60px;
  29. }
  30. #order-detail-list{
  31. padding-bottom: 10px;
  32. }
  33. .pane{
  34. box-shadow: none;
  35. margin-bottom: 0;
  36. border-bottom: 1px solid #e8e8e8;
  37. }
  38. .pane .pane-body{
  39. padding: 0;
  40. }
  41. </style>
  42. <div class="loading in" ng-class="{'in': loading}">
  43. <!--<i></i>-->
  44. <div class="wrap">
  45. <div class="outer"></div>
  46. </div>
  47. </div>
  48. <div class="pane base-info">
  49. <div class="com_head"><span>操作日志</span></div>
  50. <div class="title-div" style="border-bottom: 1px dashed #3f84f6;">
  51. <span class="f14">数据传输日志</span>
  52. <div class="pull-right">
  53. <a href="log/erp/xls" target="_self" class="text-simple"><i class="fa fa-file-text fa-fw"></i>导出</a>
  54. </div>
  55. </div>
  56. <div class="pane-body" id="order-detail-list" style="max-height: 500px;overflow: auto;">
  57. <table class="block table table-default table-striped"
  58. ng-table="erpParams">
  59. <thead>
  60. <tr class="header">
  61. <th width="130">时间</th>
  62. <th width="130">客户端IP</th>
  63. <th width="80">操作人员</th>
  64. <th width="120">请求资源</th>
  65. <th>请求动作</th>
  66. <th width="80">数据包</th>
  67. </tr>
  68. </thead>
  69. <tbody>
  70. <tr ng-repeat="erp in $data">
  71. <td class="text-center" ng-bind="::erp.time | date:'MM-dd HH:mm:ss'"></td>
  72. <td class="text-center" ng-bind="::erp.ip"></td>
  73. <td class="text-center" ng-bind="::erp.user.userName"></td>
  74. <td class="text-center" ng-bind="::erp.title"></td>
  75. <td ng-bind="::erp.message"></td>
  76. <td class="text-center" ng-bind="::erp.total"></td>
  77. </tr>
  78. </tbody>
  79. </table>
  80. </div>
  81. </div>
  82. <div class="pane base-info">
  83. <div class="title-div" style="border-bottom: 1px dashed #3f84f6;">
  84. <span class="f14">平台使用日志</span>
  85. <div class="pull-right">
  86. <a href="log/usage/xls" target="_self" class="text-simple"><i class="fa fa-file-text fa-fw"></i>导出</a>
  87. </div>
  88. </div>
  89. <div class="pane-body" id="order-detail-list" style="max-height: 500px;overflow: auto;">
  90. <table class="block table table-default table-striped"
  91. ng-table="usageParams">
  92. <thead>
  93. <tr class="header">
  94. <th width="130">时间</th>
  95. <th width="130">客户端IP</th>
  96. <th width="80">操作人员</th>
  97. <th width="120">请求资源</th>
  98. <th>请求动作</th>
  99. <th>备注</th>
  100. </tr>
  101. </thead>
  102. <tbody>
  103. <tr ng-repeat="usage in $data">
  104. <td class="text-center" ng-bind="::usage.time | date:'MM-dd HH:mm:ss'"></td>
  105. <td class="text-center" ng-bind="::usage.ip"></td>
  106. <td class="text-center" ng-bind="::usage.user.userName"></td>
  107. <td class="text-center" ng-bind="::usage.title"></td>
  108. <td ng-bind="::usage.message"></td>
  109. <td ng-bind="::usage.detail"></td>
  110. </tr>
  111. </tbody>
  112. </table>
  113. </div>
  114. </div>