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.
 
 
 
 

100 rivejä
5.0 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>
  19. </span>
  20. </div>
  21. <!-- 一楼 -->
  22. <div class="pt-floor1">
  23. {include file="/system/userleft"}
  24. <div class="relative pt-rank pt-user text-center" style="padding: 0">
  25. {block method=user.isvip userid=$userinfo.id name=$isvip}
  26. <img src="{$kx.config.resurl}/template/kxwebno1/images/vip1{=$isvip?'_active':''}.png" alt="{$userinfo.name}" class="mt50" style="width: 80px;height: 80px;">
  27. {if $isvip}
  28. <h1 class="size18 color32">尊敬的VIP会员您好</h1>
  29. <p>您的VIP于{$userinfo.vip_expire_time|date='Y-m-d'}日到期,请您及时续费,以便给您带来不便</p>
  30. {else}
  31. <h1 class="size18 color32">尊敬的用户您好</h1>
  32. <p>您还未开通超级VIP</p>
  33. {/if}
  34. <a href="{link=user.pay.vip}" class="inline-block plr25 ptb10 bg-red color1 mtb20">{=$isvip?'续费VIP':'立即开通VIP'}</a>
  35. <div class="mt50 border-t pt35" style="height: 100px;text-align: left">
  36. <img class="ml40 mr20" style="vertical-align: middle" src="{$kx.config.resurl}/template/kxwebno1/images/vip_privilege.png" alt="VIP特权">
  37. <span class="size16 color62 ml40 mr20">
  38. <img src="{$kx.config.resurl}/template/kxwebno1/images/vip_benefit_1.png" alt="首次充值立赠经验" style="vertical-align: middle;">
  39. 首次充值立赠经验
  40. </span>
  41. <span class="size16 color62 ml40 mr20">
  42. <img src="{$kx.config.resurl}/template/kxwebno1/images/vip_benefit_2.png" alt="章节订阅更多折扣" style="vertical-align: middle;">
  43. 章节订阅更多折扣
  44. </span>
  45. <span class="size16 color62 ml40">
  46. <img src="{$kx.config.resurl}/template/kxwebno1/images/vip_benefit_3.png" alt="海量书籍免费阅读" style="vertical-align: middle;">
  47. 海量书籍免费阅读
  48. </span>
  49. </div>
  50. </div>
  51. <div class="relative pt-user-table mt10">
  52. <div style="line-height: 18px;margin-bottom:30px;">
  53. <span class="size18 color32 mr10 bold">VIP免费阅读</span>
  54. </div>
  55. <div>
  56. <table>
  57. <thead>
  58. <tr>
  59. <th style="width: 150px;">书籍</th>
  60. <th style="width: 60px;">作者</th>
  61. <th style="width: 60px;">分类</th>
  62. <th style="width: 250px;">章节</th>
  63. <th style="width: 65px;">字数</th>
  64. <th style="width: 50px;">状态</th>
  65. <th style="width: 65px;">详情</th>
  66. </tr>
  67. </thead>
  68. <tbody class="color32">
  69. {block method="novel.list" name=novellist userid=$userinfo.id num=10 type=2}
  70. {if empty($novellist)}
  71. <tr class="empty">
  72. <td colspan="7">您似乎来到了没有数据存在的荒原~~~</td>
  73. </tr>
  74. {else}
  75. {section loop=$novellist item=$loop}
  76. <tr>
  77. <td>{$loop.novel.name}</td>
  78. <td>{$loop.author.name}</td>
  79. <td>{$loop.category.name}</td>
  80. <td>{$loop.last.name}</td>
  81. <td>{$loop.data.words}万</td>
  82. <td>{=$loop.is_over?'已完结':'连载中'}</td>
  83. <td><a class="color2" href="{link=novel.novel.index novelid=$loop.novel.id pinyin=$loop.novel.pinyin}">立即阅读</a></td>
  84. </tr>
  85. {/section}
  86. {/if}
  87. </tbody>
  88. </table>
  89. </div>
  90. </div>
  91. </div>
  92. </div>
  93. <!-- 底部版权-->
  94. {include file="/system/footer"}
  95. <!-- js-->
  96. <script src="{$kx.config.resurl}/template/kxwebno1/js/rankdetail.js"></script>
  97. </body>
  98. </html>