diff --git a/src/models/wxShare.js b/src/models/wxShare.js index 667502d..41c4c42 100644 --- a/src/models/wxShare.js +++ b/src/models/wxShare.js @@ -33,9 +33,9 @@ Vue.prototype.wxShare = function(params) { //获取“分享给朋友”按钮点击状态及自定义分享内容接口 wx.onMenuShareAppMessage({ // 分享给朋友 - title: '【一号家政】', // 分享标题 + title: shareConfig.title, // 分享标题 desc: shareConfig.desc, // 分享描述 - link: shareConfig.url, // 分享链接 默认以当前链接 + link: shareConfig.url+"?uniqueId=213", // 分享链接 默认以当前链接 imgUrl: shareConfig.img, // 分享图标 success: function(res) {} });