17 lines
386 B
JavaScript
17 lines
386 B
JavaScript
export default {
|
|
onShareAppMessage(res) { //发送给朋友
|
|
return {
|
|
title: uni.getStorageSync('tuiguang'),
|
|
path:'/pages/index/index',
|
|
imageUrl: uni.getStorageSync('tuiguangImg'),
|
|
}
|
|
},
|
|
onShareTimeline(res) { //分享到朋友圈
|
|
return {
|
|
title: uni.getStorageSync('tuiguang'),
|
|
path:'/pages/index/index',
|
|
imageUrl: uni.getStorageSync('tuiguangImg'),
|
|
}
|
|
},
|
|
}
|