ui-handlerLog.html 1.2 KB

12345678910111213141516171819202122232425262728
  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:50px">序号</th>
  10. <th class="center" style="width:200px">时间</th>
  11. <th class="center">内容</th>
  12. </tr>
  13. </thead>
  14. <tbody>
  15. <tr ng-repeat="item in model.incident.handlerLogs">
  16. <td class="center">{{$index + 1}}</td>
  17. <td class="center">{{item.opTime|date:'yyyy-MM-dd HH:mm:ss'}}</td>
  18. <td class="center" style="white-space: normal;word-break:break-all">{{item.opValue}}</td>
  19. </tr>
  20. </tbody>
  21. </table>
  22. </div>
  23. </div>
  24. </div>
  25. </div>
  26. <style>
  27. .center{text-align: center!important;}
  28. </style>