12345678910111213141516 |
- 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'),
- }
- },
- }
|