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/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
| }
| }
| }
|
|