share.js 437 B

12345678910111213141516171819202122
  1. export default {
  2. created() {
  3. //#ifdef MP-WEIXIN
  4. wx.showShareMenu({
  5. withShareTicket: true,
  6. menus: ['shareAppMessage', 'shareTimeline']
  7. })
  8. //#endif
  9. },
  10. onShareAppMessage() {
  11. return {
  12. title: '门墩儿 专注顶尖招聘',
  13. path: '/pages/index/position'
  14. }
  15. },
  16. onShareTimeline() {
  17. return {
  18. title: '门墩儿 专注顶尖招聘',
  19. path: '/pages/index/position'
  20. }
  21. }
  22. }