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.
 
 
 
 

134 lines
5.2 KiB

  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>数据统计 - 原创专区 - {$kx.config.sitename}</title>
  6. <link rel="stylesheet" href="{$kx.config.resurl}/template/kxwebno1/author/css/style.css"/>
  7. <link rel="shortcut icon" type="image/ico" href="/favicon.ico"/>
  8. <meta name="author" content="www.ptcms.com">
  9. <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"/>
  10. <meta name="renderer" content="webkit">
  11. <meta name="viewport" content="width=device-width"/>
  12. <meta name="applicable-device" content="pc">
  13. <meta http-equiv="Cache-Control" content="no-siteapp"/>
  14. <meta http-equiv="Cache-Control" content="no-transform"/>
  15. <link rel="canonical" href="{$kx.config.pcurl}__SELF__"/>
  16. <style>
  17. .body ul {
  18. height: 54px;
  19. }
  20. .body ul.label li{
  21. float: left;
  22. width: 130px;
  23. height: 50px;
  24. line-height: 50px;
  25. text-align: center;
  26. background: #E5E5E5;
  27. margin-top: 4px;
  28. }
  29. .body ul.label li.active{
  30. background-color: #fff;
  31. color: #323237;
  32. border-top: 4px solid #f55;
  33. margin-top: 0;
  34. }
  35. .body table {
  36. width: 100%;
  37. text-align: center;
  38. color: #323237;
  39. }
  40. .body table th {
  41. height: 48px;
  42. background-color: #F5F5F7;
  43. text-align: center;
  44. font-weight: 700;
  45. }
  46. .body table thead tr {
  47. border: 1px solid #F5F5F5;
  48. }
  49. .body table td {
  50. height: 48px;
  51. }
  52. .body table tbody tr {
  53. border: 1px solid #E9E9E9;
  54. }
  55. </style>
  56. </head>
  57. <body>
  58. {include file="/author/system/header"}
  59. <div class="body">
  60. {include file="/author/system/left"}
  61. <div class="right h100">
  62. <ul class="label">
  63. <a href="{link=author.income.manage}"><li>提现管理</li></a>
  64. <a href="{link=author.income.guarantee}"><li class="active">收益保障</li></a>
  65. </ul>
  66. <div class="bg-white" style="min-height: 695px;">
  67. <div class="border-b mb30 plr30 ptb30 text-center" style="border-bottom-width: 7px;border-color: #f5f4f5">
  68. <img src="{$kx.config.resurl}/template/kxwebno1/author/images/icon_guarantee{=empty($signingnovels)?:'_active'}.png" alt="收益保障">
  69. <h1 class="size18 color32 bold">尊敬的 {$authorinfo.name}</h1>
  70. <p>您好,很荣幸您能够成为本站的签约作家,以下是您的收益签约协议</p>
  71. </div>
  72. <div class="mlr20 mb20 size14 color32" style="line-height: 32px;">
  73. 为保证双方权益,您需要保证每月持续更新<span class="color2">30</span>章,约<span class="color2">10</span>万字,届时除基本权益之外,方可获额外收益,本也内容仅供参考,不具备法律效益
  74. </div>
  75. <table class="mlr20" style="width: 950px;">
  76. <thead>
  77. <tr>
  78. <th>书籍</th>
  79. <th>千字价格(会员)</th>
  80. <th>千字价格(非会员)</th>
  81. <th>收益比例(会员)</th>
  82. <th>收益比例(非会员)</th>
  83. <th>{$kx.config.user.ticket_caption}兑换比例</th>
  84. <th>{$kx.config.user.money_caption}提现比例</th>
  85. </tr>
  86. </thead>
  87. <tbody>
  88. {loop=$signingnovels}
  89. <tr>
  90. <td>{$loop.novel.name}</td>
  91. <td>{$loop.charge.words_money}</td>
  92. <td>{=$loop.novel.type == \App\Model\Novel\Novel::TYPE_VIP_FREE?0:$loop.charge.words_vip_money}</td>
  93. <td>{$loop.charge.subscription_revenue_ratio}%</td>
  94. <td>{=$loop.novel.type == \App\Model\Novel\Novel::TYPE_VIP_FREE?0:$loop.charge.vip_subscription_revenue_ratio}%</td>
  95. <td>{$kx.config.ticket.author}</td>
  96. <td>{=$kx.config.author.withdraw_ratio>0?1/$kx.config.author.withdraw_ratio:0}</td>
  97. </tr>
  98. {/loop}
  99. </tbody>
  100. </table>
  101. {if $paginate.total>1}
  102. <div class="pt-pages">
  103. <div class="pt30 color5">
  104. {if $paginate.prev}
  105. <a href="{link=author.income.record type=$type page=$paginate.prev}"><span><</span></a>
  106. {else}
  107. <span class="disable"><</span>
  108. {/if}
  109. {loop=paginate.items}
  110. <a href="{link=author.income.record type=$type page=$loop.num}">
  111. <span class="{$loop.status|default='','pt-pages-select'}">{$loop.num}</span>
  112. </a>
  113. {/loop}
  114. {if $paginate.next}
  115. <a href="{link=author.income.record type=$type page=$paginate.next}"><span>></span></a>
  116. {else}
  117. <span class="disable">></span>
  118. {/if}
  119. </div>
  120. </div>
  121. {/if}
  122. </div>
  123. </div>
  124. </div>
  125. {include file="/author/system/footer"}
  126. <script>
  127. </script>
  128. </body>
  129. </html>