fix: loadmore

This commit is contained in:
zzc
2026-02-08 18:57:45 +08:00
parent 8fd18b6d8b
commit 2437ed9d2f
14 changed files with 192 additions and 17 deletions

View File

@@ -99,7 +99,7 @@
<script setup>
import { ref } from 'vue'
import { onPullDownRefresh } from '@dcloudio/uni-app'
import { onPullDownRefresh, onShareAppMessage, onShareTimeline } from '@dcloudio/uni-app'
import { getBavBarHeight } from '@/utils/system'
const features = ref([
@@ -171,6 +171,23 @@ const share = () => {
uni.showShareMenu && uni.showShareMenu()
}
onShareAppMessage(() => {
return {
title: "2026 丙午马年,送你一份新春祝福 🎊",
path: "/pages/spring/index",
imageUrl:
"https://file.lihailezzc.com/resource/8dd026d76ef7a63d123b7fd698fb989b.png",
};
});
onShareTimeline(() => {
return {
title: "2026 丙午马年,送你一份新春祝福 🎊",
imageUrl:
"https://file.lihailezzc.com/resource/8dd026d76ef7a63d123b7fd698fb989b.png",
};
});
const createGreeting = () => {
uni.showToast({ title: '去发布祝福~', icon: 'none' })
}