events_infos.html 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348
  1. <style>
  2. .button {
  3. cursor: pointer;
  4. }
  5. </style>
  6. <{if $type == 'share'}>
  7. <link rel="stylesheet" type="text/css" href="<{$web_cfg.cdn}>/haili/css/detail.css" />
  8. <section class="profile">
  9. <section class="avatar">
  10. <img src="<{$userSourceInfo.headimgurl}>">
  11. <span><{$userSourceInfo.nickname}></span>
  12. </section>
  13. <dl class="card">
  14. <dd>参与活动 <{$info.events_name}>,邀请您来加油!</dd>
  15. <dt><img src="<{$info.img_url}>"></dt>
  16. </dl>
  17. <section class="button-wrapper">
  18. <{if $uid == $source_user}>
  19. <a class="button yaoqing">邀请好友助力!</a>
  20. <{else}>
  21. <a class="button" href="javascript:;" onclick="help();">为好友助力!</a>
  22. <a class="button" href="<{$info.thisUrl}>">我也要参加!</a>
  23. <{/if}>
  24. </section>
  25. <section class="friends">
  26. <p>已助力好友<span><{$helpDataTotal}></span>人</p>
  27. <{if $helpData}>
  28. <ul>
  29. <{foreach from=$helpData item=v}>
  30. <li><img src="<{$v.headimgurl}>"></li>
  31. <{/foreach}>
  32. </ul>
  33. <{/if}>
  34. </section>
  35. </section>
  36. <section class="applycont">
  37. <{if $info.operationt_tips}>
  38. <h2><{$info.operationt_tips}></h2>
  39. <{/if}>
  40. <section class="summary">
  41. <{$info.events_rules}>
  42. </section>
  43. </section>
  44. <{if $focusData}>
  45. <section class="recommend">
  46. <ul>
  47. <{foreach from=$focusData item=v}>
  48. <li><a href="<{$v.link}>"><img src="<{$v.pic}>" height="128"><span><{$v.name}></span></a></li>
  49. <{/foreach}>
  50. </ul>
  51. </section>
  52. <{/if}>
  53. <{if $ad}>
  54. <section class="ad">
  55. <h2><span>广告</span></h2>
  56. <{$ad}>
  57. </section>
  58. <{/if}>
  59. <script>
  60. share_url = '<{$info.thisUrl}>/share?events_id=<{$info.id}>&help_id=<{$help_id}>&help_session=<{$help_session}>&source_user=<{$source_user}>';
  61. function help()
  62. {
  63. var url = '<{$web_cfg.domain}>/?c=UserHelp&a=apply';
  64. $.getJSON(url, {events_id:'<{$info.id}>', help_id:'<{$help_id}>', help_session:'<{$help_session}>', source_user:'<{$source_user}>'}, function(t)
  65. {
  66. if (t.ok) {
  67. toast('助力成功!');
  68. } else {
  69. toast(t.msg, 1);
  70. }
  71. });
  72. }
  73. </script>
  74. <{elseif $type == 'prize'}>
  75. <{if $userEventsData}>
  76. <section id="tab2" class="tabcont" style="display:block;">
  77. <section class="userlist">
  78. <ul id="lazyLoad">
  79. <{foreach from=$userEventsData item=v}>
  80. <li><img src="<{$v.user.headimgurl}>"><span><{$v.user.mobile}> 的用户 <{$v.user.cdate}> 获得 <{$v.user.events}>活动奖品。</span></li>
  81. <{/foreach}>
  82. </ul>
  83. </section>
  84. </section>
  85. <div class="clear"></div>
  86. <div class="loading">
  87. <img
  88. id="loadPage"
  89. src="<{$web_cfg.cdn}>/public/static/img/loading.gif"
  90. data-ks-lazyload="<{$web_cfg.cdn}>/public/static/img/loading.gif"
  91. data-request-url="<{$info.thisUrl}>/prize?ajax=ajax"
  92. data-page="2"
  93. data-totals="<{$userEventsDataTotals}>"
  94. style="width:0px;"
  95. />
  96. <div class="loader-inner ball-pulse">
  97. <div></div><div></div><div></div><div></div><div></div><div></div>
  98. </div>
  99. </div>
  100. <script>
  101. KISSY.use('node, io, gallery/datalazyload/2.0/index', function (S, Node, IO, Datalazyload) {
  102. var lock = false;
  103. new Datalazyload({
  104. load: function(el){
  105. if (lock) return false;
  106. lock = true;
  107. var requesrUrl = $(el).data('request-url');
  108. var page = Number($(el).data('page'));
  109. var totals = Number($(el).data('totals'));
  110. if (!requesrUrl) {
  111. return false;
  112. }
  113. if (page > totals) {
  114. $('.loading').hide();
  115. return false;
  116. }
  117. IO.get(
  118. requesrUrl
  119. , {page: page}
  120. , function (data) {
  121. if (data.ok) {
  122. var next_page = page + 1;
  123. $('#loadPage').data('page', next_page);
  124. $("#lazyLoad").append(data.msg);
  125. lock = false;
  126. $('.loading').hide();
  127. new Datalazyload();
  128. if (next_page > totals) {
  129. $('.up_icon').hide();
  130. }
  131. }
  132. }
  133. , 'json'
  134. );
  135. }
  136. });
  137. });
  138. //有产品列表时添加整体body背景色
  139. $(body).addClass("bg_white");
  140. </script>
  141. <{/if}>
  142. <{elseif $type == 'feedback'}>
  143. <{if $fdData}>
  144. <section id="tab3" class="tabcont" style="display:block;">
  145. <section class="commentlist">
  146. <ul id="lazyLoad">
  147. <{foreach from=$fdData item=v}>
  148. <li>
  149. <img src="<{$v.user.headimgurl}>">
  150. <div class="dt">
  151. <span><{$v.user.mobile}> 的用户 <{$v.user.cdate}> 评价了 <{$v.user.events}>活动:</span>
  152. <div class="imgs">
  153. <{foreach from=$v.pic item=v1}>
  154. <img src="<{$v1}>">
  155. <{/foreach}>
  156. </div>
  157. <p><{$v.content}></p>
  158. </div>
  159. </li>
  160. <{/foreach}>
  161. </ul>
  162. </section>
  163. </section>
  164. <div class="clear"></div>
  165. <div class="loading">
  166. <img
  167. id="loadPage"
  168. src="<{$web_cfg.cdn}>/public/static/img/loading.gif"
  169. data-ks-lazyload="<{$web_cfg.cdn}>/public/static/img/loading.gif"
  170. data-request-url="<{$info.thisUrl}>/feedback?ajax=ajax"
  171. data-page="2"
  172. data-totals="<{$totals}>"
  173. style="width:0px;"
  174. />
  175. <div class="loader-inner ball-pulse">
  176. <div></div><div></div><div></div><div></div><div></div><div></div>
  177. </div>
  178. </div>
  179. <script>
  180. KISSY.use('node, io, gallery/datalazyload/2.0/index', function (S, Node, IO, Datalazyload) {
  181. var lock = false;
  182. new Datalazyload({
  183. load: function(el){
  184. if (lock) return false;
  185. lock = true;
  186. var requesrUrl = $(el).data('request-url');
  187. var page = Number($(el).data('page'));
  188. var totals = Number($(el).data('totals'));
  189. if (!requesrUrl) {
  190. return false;
  191. }
  192. if (page > totals) {
  193. $('.loading').hide();
  194. return false;
  195. }
  196. IO.get(
  197. requesrUrl
  198. , {page: page}
  199. , function (data) {
  200. if (data.ok) {
  201. var next_page = page + 1;
  202. $('#loadPage').data('page', next_page);
  203. $("#lazyLoad").append(data.msg);
  204. lock = false;
  205. //new Datalazyload();
  206. if (next_page > totals) {
  207. $('.up_icon').hide();
  208. }
  209. }
  210. }
  211. , 'json'
  212. );
  213. }
  214. });
  215. });
  216. //有产品列表时添加整体body背景色
  217. $(body).addClass("bg_white");
  218. </script>
  219. <{/if}>
  220. <{else}>
  221. <section id="tab1" class="tabcont" style="display:block;">
  222. <section class="cardcont">
  223. <dl class="card">
  224. <dd><span class="time"><em class="icon-time"></em>剩余<{$info.rday}>天</span><span>参与<{$info.user_total}>人</span></dd>
  225. </dl>
  226. <section class="article">
  227. <{$info.events_tips}>
  228. </section>
  229. <{if $info.share_button == 2 || $info.buy_button == 2}>
  230. <section class="button-wrapper">
  231. <{if $info.share_button == 2 && $info.type == 4 && $userData && $userData.feedback != 1}>
  232. <a class="button share_buttons" href="<{$info.thisUrl}>/share"><{$info.share_button_tips}></a>
  233. <{elseif $info.share_button == 2}>
  234. <a class="button share_button"><{$info.share_button_tips}></a>
  235. <{/if}>
  236. <{if $info.buy_button == 2}>
  237. <a class="button buy_button" data-weixin="<{$info.buy_button_link}>" data-app="<{$info.buy_button_app}>" href="<{$info.buy_button_link}>"><{$info.buy_button_tips}></a>
  238. <{/if}>
  239. </section>
  240. <{/if}>
  241. </section>
  242. <section class="applycont">
  243. <{if $info.type == 4 || $info.type == 6 || $info.type == 7}>
  244. <{if $info.events_hd_tips}>
  245. <h2><{$info.events_hd_tips}></h2>
  246. <{/if}>
  247. <{include file="events_forms_template_new.html"}>
  248. <{elseif $info.type == 1}>
  249. <{include file="events_turntable_content.html"}>
  250. <{elseif $info.type == 11}>
  251. <{include file="events_survey_content.html"}>
  252. <{elseif $info.type == 5}>
  253. <{include file="events_vote_content.html"}>
  254. <{/if}>
  255. <{if $info.operationt_tips}>
  256. <h2><{$info.operationt_tips}></h2>
  257. <{/if}>
  258. <section class="summary">
  259. <{$info.events_rules}>
  260. </section>
  261. </section>
  262. <{if $focusData}>
  263. <section class="recommend">
  264. <ul>
  265. <{foreach from=$focusData item=v}>
  266. <li><a href="<{$v.link}>"><img src="<{$v.pic}>" height="128"><span><{$v.name}></span></a></li>
  267. <{/foreach}>
  268. </ul>
  269. </section>
  270. <{/if}>
  271. <{if $ad}>
  272. <section class="ad">
  273. <h2><span>广告</span></h2>
  274. <{$ad}>
  275. </section>
  276. <{/if}>
  277. </section>
  278. <{/if}>
  279. <section class="layer" <{if $info.end == 2}>style="display:block"<{/if}>>
  280. <section class="loginbox">
  281. <h3>活动已结束!</h3>
  282. <p>感谢您的关注,期待您参与我们的其他活动</p>
  283. <section class="button-wrapper">
  284. <a class="button border" href="<{$listUrl}>">找找其他福利</a>
  285. <a class="button" href="<{$giftsUrl}>">查看我的奖品</a>
  286. </section>
  287. </section>
  288. </section>
  289. <section class="layer" id="loginbox" style="display:none;">
  290. <section class="loginbox">
  291. <h3>您还没有登录</h3>
  292. <p>请登录后再参与福利活动</p>
  293. <section class="button-wrapper">
  294. <a class="button border" href="<{$listUrl}>">找找其他福利</a>
  295. <a class="button" href="<{$loginUrl}>">马上登录</a>
  296. </section>
  297. </section>
  298. </section>
  299. <{if $info.end == 1 && $info.login == 2}>
  300. <script>
  301. $(function()
  302. {
  303. loadLogin();
  304. })
  305. </script>
  306. <{/if}>