doum
15 小时以前 3756eeaca02872fb88caa7282dd83fdb5a9bc357
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
export default {
  data() {
    return {
      // 可全局覆盖的默认参数
      shareConfig: {
        title: '鼎元农机商城',
        path: '/pages/index/index',
        imageUrl: '/static/images/share.jpg'
      }
    }
  },
  onShareAppMessage() {
    return { 
      title: this.shareConfig.title,
      path: `${this.shareConfig.path}?ref=${Date.now()}`,
      imageUrl: this.shareConfig.imageUrl
    }
  },
  onShareTimeline() {
    return { 
      title: this.shareConfig.title,
      query: `ref=${Date.now()}`,
      imageUrl: this.shareConfig.imageUrl
    }
  }
}