index.html 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <include file="public@header"/>
  2. </head>
  3. <body>
  4. <div class="wrap">
  5. <ul class="nav nav-tabs">
  6. <li class="active"><a>用户操作管理</a></li>
  7. <li><a href="{:url('AdminUserAction/sync')}">同步用户操作</a></li>
  8. </ul>
  9. <form method="post" class="js-ajax-form margin-top-20">
  10. <php>$cycle_types=['0'=>'不限','1'=>'天','2'=>'小时','3'=>'永久']</php>
  11. <table class="table table-hover table-bordered">
  12. <thead>
  13. <tr>
  14. <th>操作</th>
  15. <th>积分更改</th>
  16. <th>金币更改</th>
  17. <th>奖励周期</th>
  18. <th>{:lang('ACTIONS')}</th>
  19. </tr>
  20. </thead>
  21. <tbody>
  22. <foreach name="actions" item="vo">
  23. <php></php>
  24. <tr>
  25. <td>{$vo.name} {$vo.action}</td>
  26. <td>{$vo.score}</td>
  27. <td>{$vo.coin}</td>
  28. <th>
  29. <eq name="vo.cycle_type" value="0">
  30. 不限
  31. <else/>
  32. {$vo.reward_number}次/{$vo.cycle_time}{$cycle_types[$vo['cycle_type']]}
  33. </eq>
  34. </th>
  35. <td>
  36. <a class="btn btn-xs btn-primary" href="{:url('AdminUserAction/edit')}?id={$vo.id}">编辑</a>
  37. </td>
  38. </tr>
  39. </foreach>
  40. </tbody>
  41. </table>
  42. <div class="pagination">{$page}</div>
  43. </form>
  44. </div>
  45. <script src="__STATIC__/js/admin.js"></script>
  46. </body>
  47. </html>