123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- $(function () {
-
-
- var wxAppId = $('#wxAppId').val()
- var shareTitle = $('#shareTitle').val()
- var shareDesc = $('#shareDesc').val()
- var shareImage = $('#shareImage').val()
- if (wxAppId) {
- $.ajax({
- url: 'https://miniapi.beibaoyx.com/share/index',
- data: {
- format: 'json',
- wx_app_id: wxAppId,
- share_url: location.href.split('#')[0]
- },
- dataType: 'jsonp',
- success: function (res) {
- if (res.code === 200) {
- wx.config({
-
- appId: res.data.wx_app_id,
- timestamp: res.data.timestamp,
- nonceStr: res.data.noncestr,
- signature: res.data.signature,
-
- jsApiList: ['onMenuShareAppMessage', 'onMenuShareTimeline', 'onMenuShareQQ', 'onMenuShareQZone']
- })
- wx.ready(function () {
- wx.onMenuShareAppMessage({
- title: shareTitle,
- desc: shareDesc,
- link: window.location.href,
- imgUrl: shareImage,
- success: function () {
-
-
- }
- })
- wx.onMenuShareTimeline({
- title : shareTitle,
- link : window.location.href,
- imgUrl : shareImage,
- success: function () {
-
- }
- })
- wx.onMenuShareQQ({
- title: shareTitle,
- desc: shareDesc,
- link: window.location.href,
- imgUrl: shareImage,
- success: function () {
-
- },
- cancel: function () {
-
- }
- })
- wx.onMenuShareQZone({
- title: shareTitle,
- desc: shareDesc,
- link: window.location.href,
- imgUrl: shareImage,
- success: function () {
-
- },
- cancel: function () {
-
- }
- })
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- })
- }
- }
- })
- }
- })
|