From c62e12756b2bdcd8656bb7580ce49cb4a7d01d30 Mon Sep 17 00:00:00 2001 From: zzc <1761997216@qq.com> Date: Sat, 28 Feb 2026 20:14:47 +0800 Subject: [PATCH] fix: authing-server group audit config --- components/LuckyPopup/LuckyPopup.vue | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/components/LuckyPopup/LuckyPopup.vue b/components/LuckyPopup/LuckyPopup.vue index cb431bf..2bc2617 100644 --- a/components/LuckyPopup/LuckyPopup.vue +++ b/components/LuckyPopup/LuckyPopup.vue @@ -147,6 +147,7 @@ import { ref, getCurrentInstance, computed } from "vue"; import calendar from "@/utils/lunar.js"; import { useUserStore } from "@/stores/user"; +import { onShareAppMessage, onShareTimeline } from "@dcloudio/uni-app"; const { proxy } = getCurrentInstance(); const userStore = useUserStore(); @@ -606,6 +607,13 @@ const onShareMoments = () => { uni.showToast({ title: "请点击右上角分享", icon: "none" }); }; +onShareAppMessage(() => { + return { + title: "开启你的每日好运!", + path: "/pages/index/index", + }; +}); + defineExpose({ open, close });