user_help.html 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. <{include file="./admin/header.html"}>
  2. <{include file="./admin/left.html"}>
  3. <{include file="./admin/nav.html"}>
  4. <{include file="get_kindeditor.html"}>
  5. <div id="activity_container">
  6. <div class="activity_center">
  7. <{include file="./admin/activity/common_nav.html"}>
  8. <input name="events_id" type="hidden" value="<{$events_Data.events.id}>">
  9. 查看:
  10. <{if $action == 'all'}>
  11. <span class="text-muted">全部</span> &nbsp;
  12. <{else}>
  13. <a href="<{$web_cfg.domain}>/?c=Admin_Activity_UserParticipateLog&a=PageList&events_id=<{$eventData.id}>&action=all">全部</a> &nbsp;
  14. <{/if}>
  15. <{if $action == 'member'}>
  16. <span class="text-muted">用户</span> &nbsp;
  17. <{else}>
  18. <a href="<{$web_cfg.domain}>/?c=Admin_Activity_UserParticipateLog&a=PageList&groupByUid=true&events_id=<{$eventData.id}>&action=member">用户</a> &nbsp;
  19. <{/if}>
  20. <{if $eventData.forms}>
  21. <{if $action == 'form'}>
  22. <span class="text-muted">表单</span> &nbsp;
  23. <{else}>
  24. <a href="<{$web_cfg.domain}>/?c=Admin_Activity_UserParticipateLog&a=PageEventFormData&events_id=<{$eventData.id}>&action=form">表单</a> &nbsp;
  25. <{/if}>
  26. <{/if}>
  27. <{if $isPrizes}>
  28. <{if $action == 'win'}>
  29. <span class="text-muted">中奖</span> &nbsp;
  30. <{else}>
  31. <a href="<{$web_cfg.domain}>/?c=Admin_Activity_UserParticipateLog&a=PageLotteryDataList&events_id=<{$eventData.id}>&action=win">中奖</a> &nbsp;
  32. <{/if}>
  33. <{/if}>
  34. <span class="text-muted">助力排行</span> &nbsp;
  35. <{if $download_url}>
  36. <a href="<{$download_url}>" target="_blank" class="" style="padding:0 10px;margin-left:10px;"><i class="fa fa-download"></i> 导出数据</a>
  37. <{/if}>
  38. <{if $eventData.type==11}>
  39. <a href="<{$web_cfg.domain}>/?c=Admin_Activity_UserParticipateLog&a=ShowResultSet&events_id=<{$eventData.id}>" target="_blank" class="" style="width:; float:right;padding-right: 10px" ><i class="fa fa-download"></i> 问卷报表 </a>
  40. <{/if}>
  41. <div class="block_10"></div>
  42. <div class="panel panel-default">
  43. <div class="panel-body">
  44. <div class="form-group">
  45. <div>
  46. <table class="table table-hover">
  47. <thead>
  48. <tr>
  49. <th>参与人</th>
  50. <th>UID</th>
  51. <th>时间</th>
  52. <th>邀请人次数量</th>
  53. </tr>
  54. </thead>
  55. <tbody>
  56. <{if $helpData}>
  57. <{foreach from=$helpData item=data}>
  58. <tr>
  59. <td>
  60. <{if $userData[$data.uid].headimgurl}>
  61. <img class="img-rounded" width="48" height="48" src="<{$userData[$data.uid].headimgurl}>" />
  62. <{else}>
  63. <img class="img-rounded" width="48" height="48" src="http://news.mydrivers.com/Img/20110518/04481549.png" />
  64. <{/if}>
  65. <{if $userData[$data.uid].nickname}><{$userData[$data.uid].nickname}><{else}>游客<{/if}></td>
  66. <td><{$data.uid}></td>
  67. <td><{"Y-m-d H:i:s"|date:$data.create_time}></td>
  68. <td><{$data.num}></td>
  69. </tr>
  70. <{/foreach}>
  71. <{else}>
  72. <tr>
  73. <td colspan="3" align="center" class="text-muted">无数据</td>
  74. </tr>
  75. <{/if}>
  76. </tbody>
  77. </table>
  78. <div class="page"><{$page_html}></div><p style="float:right" >参与人数:<{$total_num}></p>
  79. </div>
  80. </div>
  81. </div>
  82. </div>
  83. </div>
  84. <{include file="./admin/activity/common_right.html"}>
  85. <div style="clear:both;"></div>
  86. </div>
  87. <script>
  88. KISSY.use('node, io, event', function (S, Node, IO, Event) {
  89. var $ = S.all;
  90. });
  91. </script>
  92. <{include file="./admin/bottom.html"}>