按钮
<view class="text-center">
<button class='cu-btn cuIcon bg-green lg' @tap='shareSession' open-type="share">
<text class='cuIcon-weixin' style='font-size: 44upx;'></text>
</button>
<view class="padding-tb">
微信好友
</view>
</view>
<view class="text-center">
<button class='cu-btn cuIcon bg-green lg' @tap='shareTimeline' open-type="share">
<text class='iconfont icon-pengyouquan' style='font-size: 44upx;'></text>
</button>
<view class="padding-tb">
朋友圈
</view>
</view>
js
shareSession() {
uni.share({
provider: "weixin",
scene: "WXSceneSession",
type: 2,
imageUrl: this.imagepath,
success: function(res) {
console.log("success:" + JSON.stringify(res));
},
fail: function(err) {
console.log("fail:" + JSON.stringify(err));
}
});
},
shareTimeline() {
uni.share({
provider: "weixin",
scene: "WXSceneTimeline",
type: 2,
imageUrl: this.imagepath,
success: function(res) {
console.log("success:" + JSON.stringify(res));
},
fail: function(err) {
console.log("fail:" + JSON.stringify(err));
}
});
},