mirror of
https://gitee.com/beijing_hongye_huicheng/lilishop-uniapp.git
synced 2026-06-21 17:30:13 +08:00
17 lines
271 B
JavaScript
17 lines
271 B
JavaScript
export default {
|
|
onLoad() {
|
|
if (!uni.$u) {
|
|
uni.$u = {}
|
|
}
|
|
uni.$u.mpShare = {
|
|
title: '',
|
|
path: '',
|
|
imageUrl: ''
|
|
}
|
|
this.$u.mpShare = uni.$u.mpShare
|
|
},
|
|
onShareAppMessage() {
|
|
return this.$u.mpShare || uni.$u.mpShare
|
|
}
|
|
}
|