首次提交

This commit is contained in:
duan
2024-06-06 11:49:50 +08:00
parent de480ef0a3
commit c5ebf34d7e
274 changed files with 58048 additions and 1 deletions

14
common/share.js Normal file
View File

@@ -0,0 +1,14 @@
export default {
onShareAppMessage(res) { //发送给朋友
return {
title: uni.getStorageSync('tuiguang'),
imageUrl: uni.getStorageSync('tuiguangImg'),
}
},
onShareTimeline(res) { //分享到朋友圈
return {
title: uni.getStorageSync('tuiguang'),
imageUrl: uni.getStorageSync('tuiguangImg'),
}
},
}