commentlists.html 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <include file="public@header"/>
  2. <style>
  3. .comment_lists_table{
  4. border: 0;
  5. width: 100%;
  6. }
  7. .comment_lists_table td{
  8. border:0;
  9. }
  10. </style>
  11. </head>
  12. <body>
  13. <div class="wrap">
  14. <form method="post" class="js-ajax-form">
  15. <if condition="!empty($lists)">
  16. <table class="table table-hover table-bordered">
  17. <tbody>
  18. <foreach name="lists" item="vo">
  19. <tr>
  20. <td align="center">
  21. <table class="table table-hover table-bordered comment_lists_table">
  22. <tbody>
  23. <tr>
  24. <if condition="$vo.type eq '0'">
  25. <td width="70%">{$vo['content']}</td>
  26. <else />
  27. <td width="70%">
  28. <audio src="{$vo.voice}" controls="controls">
  29. <source src="{$vo.voice}" >
  30. 您浏览器不支持此音频类型
  31. </audio>
  32. </td>
  33. </if>
  34. <td width="30%">{$vo['user_nicename']}({$vo['uid']})</td>
  35. </tr>
  36. <tr>
  37. <td>评论时间 : {:date('Y-m-d H:i:s',$vo['addtime'])}</td>
  38. <td>获赞数:{$vo['likes']}</td>
  39. </tr>
  40. </tbody>
  41. </table>
  42. </td>
  43. </tr>
  44. </foreach>
  45. </tbody>
  46. </table>
  47. <else />
  48. <table style="border: none;width: 100%;">
  49. <tbody>
  50. <tr>
  51. <td style="border: none;height: 50px;line-height: 50px;text-align: center;">暂无评论数据~</td>
  52. </tr>
  53. </tbody>
  54. </table>
  55. </if>
  56. <div class="pagination">{$page}</div>
  57. </form>
  58. </div>
  59. <script src="__STATIC__/js/admin.js"></script>
  60. </body>
  61. </html>