You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

93 lines
3.9 KiB

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>我的评分 - 用户中心 - {$kx.config.sitename}</title>
  6. <link rel="stylesheet" href="{$kx.config.resurl}/template/kxwebno1/css/global.css"/>
  7. <link rel="stylesheet" href="{$kx.config.resurl}/template/kxwebno1/css/style.css"/>
  8. </head>
  9. <body>
  10. <!-- 头部 -->
  11. {include file="/system/header"}
  12. <!-- 内容 -->
  13. <div class="pt-content">
  14. <!-- 面包屑 -->
  15. <div class="pt-crumb">
  16. <img src="{$kx.config.resurl}/template/kxwebno1/images/crumb_icon.png" class="pt-crumb-icon">
  17. <span class="color5">
  18. <a href="{$kx.config.siteurl}">{$kx.config.sitename}</a> > <a href="{link=user.index.index}" class="color5">用户中心</a> > <a href="{link=user.star.index}">我的评分</a>
  19. </span>
  20. </div>
  21. <!-- 一楼 -->
  22. <div class="pt-floor1">
  23. {include file="/system/userleft"}
  24. <div class="relative pt-rank">
  25. <div class="pt-rank-head">
  26. <span class="size18 color2 mr10">评分记录</span>
  27. </div>
  28. <div class="pt-user-table" style="padding-top:20px">
  29. {block method="pagination" name="paginate" page=$page limit=$pagesize count=$userinfo.data.star_num maxpage=50 section=3}
  30. {block method="user.starList" name=starList userid=$userinfo.id page=$page}
  31. <table>
  32. <thead>
  33. <tr>
  34. <th>时间</th>
  35. <th>小说</th>
  36. <th>评分</th>
  37. <th>{$kx.config.user.exp_caption}奖励</th>
  38. <th>{$kx.config.user.point_caption}奖励</th>
  39. </tr>
  40. </thead>
  41. <tbody>
  42. {if empty($starList)}
  43. <tr>
  44. <td colspan="5">您似乎来到了没有数据存在的荒原~~~</td>
  45. </tr>
  46. {else}
  47. {section loop=$starList item=$loop}
  48. <tr>
  49. <td>{$loop.datetime|date="Y-m-d H:i:s"}</td>
  50. <td>《<a href="{link=novel.novel.index novelid=$loop.novel.novel.id pinyin=$loop.novel.novel.pinyin}">{$loop.novel.novel.name}</a>》</td>
  51. <td>{$loop.num}</td>
  52. <td>{$loop.exp}</td>
  53. <td>{$loop.point}</td>
  54. </tr>
  55. {/section}
  56. {/if}
  57. </tbody>
  58. </table>
  59. </div>
  60. <!-- 分页 -->
  61. <div class="pt-pages">
  62. {if !empty($starList) && $paginate.total>1}
  63. <div class="pt30 color5">
  64. {if $paginate.prev}
  65. <a href="{link=user.star.index page=$paginate.prev}"><span><</span></a>
  66. {else}
  67. <span class="disable"><</span>
  68. {/if}
  69. {loop=paginate.items}
  70. <a href="{link=user.star.index page=$loop.num}">
  71. <span class="{$loop.status|default='','pt-pages-select'}">{$loop.num}</span>
  72. </a>
  73. {/loop}
  74. {if $paginate.next}
  75. <a href="{link=user.star.index page=$paginate.next}"><span>></span></a>
  76. {else}
  77. <span class="disable">></span>
  78. {/if}
  79. </div>
  80. {/if}
  81. </div>
  82. </div>
  83. </div>
  84. </div>
  85. <!-- 底部版权-->
  86. {include file="/system/footer"}
  87. <!-- js-->
  88. <script src="{$kx.config.resurl}/template/kxwebno1/js/rankdetail.js"></script>
  89. </body>
  90. </html>