ui-handlerLog.html 1.8 KB

12345678910111213141516171819202122232425262728293031323334
  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:200px">沟通时间</th>
  11. <th class="center" style="width:100px">操作人</th>
  12. <th class="center" style="width:200px">沟通电话</th>
  13. <th class="center">沟通成果</th>
  14. <th class="center">操作</th>
  15. </tr>
  16. </thead>
  17. <tbody>
  18. <tr ng-repeat="item in model.incident.handlerLogs">
  19. <td class="center">{{$index + 1}}</td>
  20. <td class="center">{{item.opTime|date:'yyyy-MM-dd HH:mm:ss'}}</td>
  21. <td class="center">{{item.userName}}</td>
  22. <td class="center">{{item.callRecord?item.callRecord.destinationNumber:''}}</td>
  23. <td class="center" style="white-space: normal;word-break:break-all">{{item.opValue}}</td>
  24. <td class="center"><a ng-click="recordcall(item.callRecord)" ng-if="item.callRecord" class="bianjifont">通话录音</a></td>
  25. </tr>
  26. </tbody>
  27. </table>
  28. </div>
  29. </div>
  30. </div>
  31. </div>
  32. <style>
  33. .center{text-align: center!important;}
  34. </style>