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

@@ -115,7 +115,12 @@
<script setup>
import { ref, onUnmounted, computed } from "vue";
import { onLoad, onShow, onShareAppMessage } from "@dcloudio/uni-app";
import {
onLoad,
onShow,
onShareAppMessage,
onShareTimeline,
} from "@dcloudio/uni-app";
import { abilityCheck } from "@/api/system.js";
import { drawFortune } from "@/api/fortune.js";
import { getShareReward } from "@/api/system.js";
@@ -171,6 +176,14 @@ onShareAppMessage(async () => {
};
});
onShareTimeline(() => {
return {
title: "新春到,抽灵签!快来测测你的新年运势 🏮",
imageUrl:
"https://file.lihailezzc.com/resource/8dd026d76ef7a63d123b7fd698fb989b.png",
};
});
const handleLogind = async () => {
checkDrawStatus();
};