lanan-old/detection-user/utils/share.js
愉快的大福 7dc28dc701 init
2024-07-17 14:16:22 +08:00

32 lines
720 B
JavaScript

export default {
data() {
return {
//设置默认的分享参数
share: {
title: '机动车管家',
path: '/pages/detection/detection',
}
}
},
onShareAppMessage(res) {
return {
title: this.share.title,
path: this.share.path,
success(res) {
uni.showToast({
title: '分享成功'
})
},
fail(res) {
uni.showToast({
title: '分享失败',
icon: 'none'
})
}
}
},
onShareTimeline() {},
}