export default { data() { return { // 可全局覆盖的默认参数 shareConfig: { title: '鼎元农机商城', path: '/pages/index/index', imageUrl: '/static/icon/default2.png' } } }, 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 } } }