share_common_weixin.html 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <script src="https://res.wx.qq.com/open/js/jweixin-1.0.0.js"></script>
  2. <script>
  3. wx.config({
  4. debug: false,
  5. appId: '{$signPackage.appId}',
  6. timestamp: {$signPackage.timestamp},
  7. nonceStr: '{$signPackage.nonceStr}',
  8. signature: '{$signPackage.signature}',
  9. jsApiList: [
  10. 'onMenuShareTimeline','onMenuShareAppMessage'
  11. ]
  12. });
  13. wx.ready(function () {
  14. wx.onMenuShareTimeline({
  15. title: '{$indexsharetitle}', // 分享标题
  16. link: '{$url}', // 分享链接
  17. imgUrl: '{$share_logo}', // 分享图标
  18. success: function () {
  19. // 用户确认分享后执行的回调函数
  20. },
  21. cancel: function () {
  22. // 用户取消分享后执行的回调函数
  23. }
  24. });
  25. wx.onMenuShareAppMessage({
  26. title: '{$indexsharetitle}', // 分享标题
  27. desc: '{$indexsharesummary}', // 分享描述
  28. link: '{$url}', // 分享链接
  29. imgUrl: '{$share_logo}', // 分享图标
  30. type: '', // 分享类型,music、video或link,不填默认为link
  31. dataUrl: '', // 如果type是music或video,则要提供数据链接,默认为空
  32. success: function () {
  33. // 用户确认分享后执行的回调函数
  34. },
  35. cancel: function () {
  36. // 用户取消分享后执行的回调函数
  37. }
  38. });
  39. });
  40. </script>