24 lines
539 B
JavaScript
24 lines
539 B
JavaScript
![]() |
export default {
|
||
|
data() {
|
||
|
return {
|
||
|
|
||
|
}
|
||
|
},
|
||
|
// 定义全局分享
|
||
|
// 1.发送给朋友
|
||
|
onShareAppMessage(res) {
|
||
|
return {
|
||
|
title: '蓝岸汽车',
|
||
|
path: '/pages/tabBar/index/index', // 全局分享的路径
|
||
|
imageUrl: '/static/logo.png', // 全局分享的图片(可本地可网络)
|
||
|
}
|
||
|
},
|
||
|
//2.分享到朋友圈
|
||
|
onShareTimeline(res) {
|
||
|
return {
|
||
|
title: '蓝岸汽车',
|
||
|
path: '/pages/tabBar/index/index', // 全局分享的路径
|
||
|
imageUrl: '/static/logo.png', // 全局分享的图片(可本地可网络)
|
||
|
}
|
||
|
},
|
||
|
}
|