ui-handlerLog.html 1.3 KB

123456789101112131415161718192021222324252627282930
  1. <div class="row padding-sm no-padding-vr bordered no-border-hr ">
  2. <div class="col-md-12">
  3. <div style="color: #333;">处理日志:</div>
  4. <div class="panel panel-white">
  5. <div class="panel-body">
  6. <table class="table table-striped table-hover" style="table-layout:fixed">
  7. <thead>
  8. <tr>
  9. <th class="center" style="width:10px">#</th>
  10. <th class="center" style="width:100px">处理人</th>
  11. <th class="center" style="width:200px">时间</th>
  12. <th class="center">内容</th>
  13. </tr>
  14. </thead>
  15. <tbody>
  16. <tr ng-repeat="item in model.incident.handlerLogs">
  17. <td class="center">{{$index + 1}}</td>
  18. <td class="center">{{item.userName}}</td>
  19. <td class="center">{{item.opTime|date:'yyyy-MM-dd HH:mm:ss'}}</td>
  20. <td class="center" style="white-space: normal;word-break:break-all">{{item.opValue}}</td>
  21. </tr>
  22. </tbody>
  23. </table>
  24. </div>
  25. </div>
  26. </div>
  27. </div>
  28. <style>
  29. .center{text-align: center!important;}
  30. </style>