|
|
@@ -93,24 +93,27 @@
|
|
|
else {
|
|
|
console.log('show share modal');
|
|
|
this.isShareFlag = true;
|
|
|
- wx.updateAppMessageShareData({
|
|
|
- title: '语言训练认知图片大全', // 分享标题
|
|
|
- desc: '已有239218领取成功', // 分享描述
|
|
|
- link: '', // 分享链接,该链接域名或路径必须与当前页面对应的公众号JS安全域名一致
|
|
|
- imgUrl: this.headSrc, // 分享图标
|
|
|
- type: 'link', // 分享类型:music | video | link,默认为:link
|
|
|
- dataUrl: '', // 如果type为:music | video,则要提供数据,默认为:空
|
|
|
- success: function(){
|
|
|
- alert('share success')
|
|
|
- this.startCount--;
|
|
|
- if(this.startCount === 0){
|
|
|
- this.isShareFlag = false;
|
|
|
- }
|
|
|
- },
|
|
|
- cancel: function(){
|
|
|
- console.log('share cancel')
|
|
|
- },
|
|
|
+ wx.ready(function () {
|
|
|
+ wx.onMenuShareAppMessage({
|
|
|
+ title: '语言训练认知图片大全', // 分享标题
|
|
|
+ desc: '已有239218领取成功', // 分享描述
|
|
|
+ link: '', // 分享链接,该链接域名或路径必须与当前页面对应的公众号JS安全域名一致
|
|
|
+ imgUrl: this.headSrc, // 分享图标
|
|
|
+ // type: 'link', // 分享类型:music | video | link,默认为:link
|
|
|
+ // dataUrl: '', // 如果type为:music | video,则要提供数据,默认为:空
|
|
|
+ success: function(){
|
|
|
+ alert('share success')
|
|
|
+ this.startCount--;
|
|
|
+ if(this.startCount === 0){
|
|
|
+ this.isShareFlag = false;
|
|
|
+ }
|
|
|
+ },
|
|
|
+ cancel: function(){
|
|
|
+ console.log('share cancel')
|
|
|
+ },
|
|
|
+ })
|
|
|
})
|
|
|
+
|
|
|
}
|
|
|
},
|
|
|
subStrUrlCode: function () {
|
|
|
@@ -165,7 +168,7 @@
|
|
|
nonceStr : param.nonceStr,
|
|
|
signature: param.signature,
|
|
|
jsApiList: [
|
|
|
- 'imagePreview', 'chooseImage', 'uploadImage','onMenuShareAppMessage'
|
|
|
+ 'onMenuShareAppMessage'
|
|
|
]
|
|
|
});
|
|
|
},
|