文件路徑:
uniapp/pages/goods_details/index.vue
代碼:
/**
* 用戶點(diǎn)擊右上角分享-分享到朋友圈
*/
onShareTimeline(){
let that = this;
that.$set(that, "actionSheetHidden", !that.actionSheetHidden);
userShare();
return {
title: that.storeInfo.store_name || "",
imageUrl: that.storeInfo.image || "",
query: "/pages/goods_details/index?id=" + that.id + "&spid=" + that.uid,
}
},
添加位置:
/**
* 用戶點(diǎn)擊右上角分享
*/
// #ifdef MP
onShareAppMessage: function() {
let that = this;
that.$set(that, "actionSheetHidden", !that.actionSheetHidden);
userShare();
return {
title: that.storeInfo.store_name || "",/***名稱,都可寫死*/
imageUrl: that.storeInfo.image || "",/*** 圖片,都可寫死*/
path: "/pages/goods_details/index?id=" + that.id + "&spid=" + that.uid,/*** 打開位置,都可寫死*/
};
},的下方添加上方代碼
如下圖所示: