You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
809 B
22 lines
809 B
3 months ago
|
export default {
|
||
|
data() {
|
||
|
return {}
|
||
|
},
|
||
|
//1.配置发送给朋友
|
||
|
onShareAppMessage() {
|
||
|
return {
|
||
|
title: '换电云', //分享的标题
|
||
|
path: 'pages/index/index', //点击分享链接之后进入的页面路径
|
||
|
imageUrl: 'https://passengercar.harmontronics.com/service-file/version/2024-05/5be0490c42fe861ed11520985f7f3fb6/123.png' //分享发送的链接图片地址
|
||
|
};
|
||
|
},
|
||
|
//2.配置分享到朋友圈
|
||
|
onShareTimeline(){
|
||
|
return{
|
||
|
title: '换电云', //分享的标题
|
||
|
query: 'pages/index/index', //点击分享链接之后进入的页面路径
|
||
|
imageUrl: 'https://passengercar.harmontronics.com/service-file/version/2024-05/5be0490c42fe861ed11520985f7f3fb6/123.png' //分享发送的链接图片地址
|
||
|
}
|
||
|
},
|
||
|
}
|