foot.html 744 B

1234567891011121314151617
  1. <!--crmEb-->
  2. <script type="text/javascript">
  3. $(function () {
  4. if(window.overallShare){
  5. var wechat_share=<?php echo isset($overallShareWechat) ? $overallShareWechat : '{}'; ?>,uid=<?php echo isset($userInfo['uid']) && $userInfo['uid'] ? $userInfo['uid'] : 0;?>;
  6. mapleWx($jssdk(), function () {
  7. this.onMenuShareAll({
  8. title:wechat_share.wechat_share_title,
  9. desc: wechat_share.wechat_share_synopsis,
  10. imgUrl: wechat_share.wechat_share_img,
  11. link: location.href.indexOf('?') == -1 ? location.href+'?spread_uid='+uid : location.href + '&spread_uid='+ uid,
  12. });
  13. });
  14. }
  15. })
  16. </script>