bottom.html 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176
  1. <section class="toast" style="display:none;">错误信息</section>
  2. <{if !$cutScreenInfo && $display == 1}>
  3. <footer>
  4. <ul>
  5. <li <{if $action != 'gift'}>class="active"<{/if}>><a href="<{$listUrl}>"><i class="icon"><img src="<{$platform.home_img_url}>"></i><span><{$platform.home_img_text}></span></a></li>
  6. <li <{if $action == 'gift'}>class="active"<{/if}>><a href="<{$giftsUrl}>"><i class="icon"><img src="<{$platform.gift_img_url}>"></i><span><{$platform.gift_img_text}></span></a></li>
  7. <{if $platform.zs_img_link}>
  8. <li><a href="<{$platform.zs_img_link}>"><i class="icon"><img src="<{$platform.zs_img_url}>"></i><span><{$platform.zs_img_text}></span></a></li>
  9. <{/if}>
  10. <li class="bottom_follow"><a href="<{$platform.follow_url}>" target="_blank"><i class="icon"><img src="<{$platform.follow_img_url}>"></i><span><{$platform.follow_img_text}></span></a></li>
  11. <li style="display:none"><a class="bottom_share" href="<{$platform.share_url}>" ><i class="icon"><img src="<{$platform.share_img_url}>"></i><span><{$platform.share_img_text}></span></a></li>
  12. </ul>
  13. </footer>
  14. <{/if}>
  15. <script type="text/javascript">
  16. function loadLogin()
  17. {
  18. app = checkApp();
  19. if (app) {
  20. istoken('<{$info.thisUrl}>');
  21. } else {
  22. $('#loginbox').show();
  23. }
  24. }
  25. function toast(content, url)
  26. {
  27. var e = $(".toast");
  28. e.html(content).show();
  29. var func = function(url)
  30. {
  31. e.hide();
  32. if (url == 1) {
  33. return;
  34. } else if (url) {
  35. location.href = url;
  36. } else {
  37. location.reload();
  38. }
  39. };
  40. setTimeout(function(){func(url)}, 1000);
  41. }
  42. function checkApp() {
  43. var u = navigator.userAgent.toLowerCase();
  44. var isApple = /iphone|ipad|ipod|ios/i.test(u);
  45. var isAndroid = /android/i.test(u);
  46. if (isApple || isAndroid) {
  47. return true;
  48. } else {
  49. return false;
  50. }
  51. }
  52. function share_button(e, title, url, img, content) {
  53. console.log(title);
  54. if (checkApp()) {
  55. //e.parent().show();
  56. e.show();
  57. e.click(function()
  58. {
  59. WX_share(url, content, title, img);
  60. })
  61. } else {
  62. //e.parent().hide();
  63. e.hide();
  64. }
  65. }
  66. function buy_button()
  67. {
  68. if ($('.buy_button').length) {
  69. var buy = $('.buy_button');
  70. if (checkApp()) {
  71. buy.attr('href', 'javascript:;');
  72. var app = buy.attr('data-app');
  73. buy.click(function() {
  74. //app内链接
  75. })
  76. } else {
  77. buy.attr('href', buy.attr('data-weixin'));
  78. }
  79. }
  80. }
  81. function yaoqing()
  82. {
  83. if ($(".yaoqing").length) {
  84. var app = checkApp();
  85. if (app) {
  86. $(".yaoqing").addClass('share_button');
  87. } else {
  88. $(".yaoqing").removeClass('share_button');
  89. $(".yaoqing").click(function()
  90. {
  91. toast('点击右上角,分享邀请好友为你加油!', 1);
  92. });
  93. }
  94. }
  95. }
  96. </script>
  97. <{if !$notShowWeixinShare && !$weixinShare.notAllow}>
  98. <script type="text/javascript">
  99. var URL = window.location.href, site;
  100. site = 1;
  101. console.log(share_url);
  102. new brickjs.MShare({
  103. website : 'sg',
  104. site: site,
  105. catalog: "",
  106. sUrl: share_url, //分享地址
  107. title: share_title,
  108. imgUrl: share_img,
  109. imgWidth: "640",
  110. imgHeight: "640",
  111. source_id : 1,
  112. source_table : 'onepage',
  113. desc: share_content,
  114. appKey: {
  115. tsina: "2412621184"
  116. },
  117. ralateUid: '1658402750',
  118. wxGuide: {
  119. imgUrl: share_img,
  120. width: 100,
  121. height: 100,
  122. style: {
  123. right: 0,
  124. top: 0
  125. }
  126. }
  127. });
  128. function init()
  129. {
  130. yaoqing();
  131. buy_button();
  132. if ($('.share_button').length) {
  133. share_button($('.share_button'), share_title, share_url, share_img, share_content);
  134. }
  135. if (checkApp()) {
  136. if ($('.bottom_share').length) {
  137. $('.bottom_follow').hide();
  138. share_button($('.bottom_share'), share_title, share_url, share_img, share_content);
  139. }
  140. }
  141. }
  142. $(function()
  143. {
  144. init();
  145. })
  146. </script>
  147. <{else}>
  148. <script>
  149. //关闭分享按钮
  150. wx.hideOptionMenu();
  151. </script>
  152. <{/if}>
  153. </body>
  154. </html>