doum
14 小时以前 a997c45ed4675d2eb045090fddb933235f4279cd
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: uni.getStorageSync('backgroundImage').userShareBg
      }
    }
  },
  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
    }
  }
}