issue_log.php 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {include file="public/frame_head"}
  2. <style type="text/css" media="screen">
  3. td img{width: 35px; height: 35px;}
  4. </style>
  5. <div class="row">
  6. <div class="col-sm-12">
  7. <div class="ibox">
  8. <div class="ibox-content">
  9. <div class="table-responsive">
  10. <table class="table table-striped table-bordered">
  11. <thead>
  12. <tr>
  13. <th class="text-center">用户名</th>
  14. <th class="text-center">用户头像</th>
  15. <th class="text-center">领取时间</th>
  16. </tr>
  17. </thead>
  18. <tbody class="">
  19. {volist name="list" id="vo"}
  20. <tr>
  21. <td class="text-center">{$vo.nickname}</td>
  22. <td class="text-center"><img src="{$vo.avatar}" class="head_image" data-image="{$vo.avatar}" width="35" height="35"></td>
  23. <td class="text-center">{$vo.add_time}</td>
  24. </tr>
  25. {/volist}
  26. </tbody>
  27. </table>
  28. </div>
  29. {include file="public/inner_page"}
  30. </div>
  31. </div>
  32. </div>
  33. <script>
  34. $('td img').on('click',function (e) {
  35. var image = $(this).attr("src");
  36. $eb.openImage(image);
  37. })
  38. </script>
  39. </div>
  40. {include file="public/inner_footer"}