|
|
|
@ -65,6 +65,28 @@ function extractProvince(region) { |
|
|
|
} |
|
|
|
|
|
|
|
Page({ |
|
|
|
// 分享给朋友/群聊
|
|
|
|
onShareAppMessage() { |
|
|
|
const goodsDetail = this.data.goodsDetail || {}; |
|
|
|
const title = goodsDetail.name ? `优质鸡蛋 - ${goodsDetail.name}` : '优质鸡蛋货源'; |
|
|
|
return { |
|
|
|
title: title, |
|
|
|
path: `/pages/goods-detail/goods-detail?productId=${goodsDetail.id || goodsDetail.productId}`, |
|
|
|
imageUrl: goodsDetail.imageUrls && goodsDetail.imageUrls.length > 0 ? goodsDetail.imageUrls[0] : '/images/你有好蛋.png' |
|
|
|
} |
|
|
|
}, |
|
|
|
|
|
|
|
// 分享到朋友圈
|
|
|
|
onShareTimeline() { |
|
|
|
const goodsDetail = this.data.goodsDetail || {}; |
|
|
|
const title = goodsDetail.name ? `优质鸡蛋 - ${goodsDetail.name}` : '优质鸡蛋货源'; |
|
|
|
return { |
|
|
|
title: title, |
|
|
|
query: `productId=${goodsDetail.id || goodsDetail.productId}`, |
|
|
|
imageUrl: goodsDetail.imageUrls && goodsDetail.imageUrls.length > 0 ? goodsDetail.imageUrls[0] : '/images/你有好蛋.png' |
|
|
|
} |
|
|
|
}, |
|
|
|
|
|
|
|
data: { |
|
|
|
goodsDetail: {}, // 当前商品详情
|
|
|
|
showImagePreview: false, // 控制图片预览弹窗显示
|
|
|
|
|