share.js 385 B

12345678910111213141516171819
  1. export default {
  2. onShareAppMessage: function(){
  3. return {
  4. title: '买高端车认准第一好车',
  5. imageUrl: "../../img/share.jpg",
  6. success: (res) => {
  7. wx.showToast({
  8. title:"转发成功!"
  9. })
  10. },
  11. fail: (res) => {
  12. wx.showToast({
  13. title:"转发失败!",
  14. icon:"none"
  15. })
  16. }
  17. }
  18. }
  19. }