share.js 386 B

12345678910111213141516
  1. export default {
  2. onShareAppMessage(res) { //发送给朋友
  3. return {
  4. title: uni.getStorageSync('tuiguang'),
  5. path:'/pages/index/index',
  6. imageUrl: uni.getStorageSync('tuiguangImg'),
  7. }
  8. },
  9. onShareTimeline(res) { //分享到朋友圈
  10. return {
  11. title: uni.getStorageSync('tuiguang'),
  12. path:'/pages/index/index',
  13. imageUrl: uni.getStorageSync('tuiguangImg'),
  14. }
  15. },
  16. }