bhq@iemsoft.cn
2018-11-27 e2b48dac099e43f4b3243cdf19a7522e4b5eccbe
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
{if $signPackage && $is_weixin}
<script src="http://res.wx.qq.com/open/js/jweixin-1.0.0.js"></script>
 
<script>
  wx.config({
    debug: false,
    appId: '{$signPackage.appId}',
    timestamp: '{$signPackage.timestamp}',
    nonceStr: '{$signPackage.nonceStr}',
    signature: '{$signPackage.signature}',
    jsApiList: [
      // 所有要调用的 API 都要加到这个列表中
      'onMenuShareTimeline','onMenuShareAppMessage','getLocation'
    ]
  });
  wx.ready(function () {    
    
    //分享到朋友圈
    wx.onMenuShareTimeline({
        title: '{$page_title}', // 分享标题
        link: window.location.href, // 分享链接
        imgUrl: 'http://'+window.location.host+'/mobile/{$weixin_info.weixin_logo}', // 分享图标
        <!--{if $is_login}-->
        success: function () { 
            $.post("weixin_share.php?act=mycheck",{'id':'1','uid':'1','show':'1','type':'pengyouquan'},function(data,status){
                 alert('微信分享收益提示:' + status);
            });
        },
        cancel: function () { 
            // 用户取消分享后执行的回调函数
        }
        <!--{/if}-->
    });
    
    //分享给朋友
    wx.onMenuShareAppMessage({
    title: '{$page_title}', // 分享标题
    desc: '{$page_title}', // 分享描述
    link: window.location.href, // 分享链接
    imgUrl: 'http://'+window.location.host+'/mobile/{$weixin_info.weixin_logo}', // 分享图标
    type: '', // 分享类型,music、video或link,不填默认为link
    dataUrl: '', // 如果type是music或video,则要提供数据链接,默认为空
    <!--{if $is_login}-->
    success: function () { 
        // 用户确认分享后执行的回调函数
        $.post("weixin_share.php?act=mycheck",{'id':'1','uid':'1','show':'1','type':'pengyou'},function(data,status){
             alert('微信分享收益提示:' + status);
        });
    },
    cancel: function () { 
        // 用户取消分享后执行的回调函数
    }
    <!--{/if}-->
});
  });
</script>
 
{/if}