Merge remote-tracking branch 'origin/master'
¶Ô±ÈÐÂÎļþ |
| | |
| | | export default { |
| | | data() { |
| | | return { |
| | | // å¯å
¨å±è¦ççé»è®¤åæ° |
| | | shareConfig: { |
| | | title: 'éæä¸è¿å¿«ï¼ç¨å·¥æ¥å¾å¿«', |
| | | path: '/pages/index/index', |
| | | imageUrl: '/static/share.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 |
| | | } |
| | | } |
| | | } |