123456789101112131415161718192021222324252627282930 |
- <div class="row padding-sm no-padding-vr bordered no-border-hr ">
- <div class="col-md-12">
- <div style="color: #333;">处理日志:</div>
- <div class="panel panel-white">
- <div class="panel-body">
- <table class="table table-striped table-hover" style="table-layout:fixed">
- <thead>
- <tr>
- <th class="center" style="width:10px">#</th>
- <th class="center" style="width:100px">处理人</th>
- <th class="center" style="width:200px">时间</th>
- <th class="center">内容</th>
- </tr>
- </thead>
- <tbody>
- <tr ng-repeat="item in model.incident.handlerLogs">
- <td class="center">{{$index + 1}}</td>
- <td class="center">{{item.userName}}</td>
- <td class="center">{{item.opTime|date:'yyyy-MM-dd HH:mm:ss'}}</td>
- <td class="center" style="white-space: normal;word-break:break-all">{{item.opValue}}</td>
- </tr>
- </tbody>
- </table>
- </div>
- </div>
- </div>
- </div>
- <style>
- .center{text-align: center!important;}
- </style>
|