fix: authing-server group audit config

This commit is contained in:
zzc
2026-02-28 20:14:47 +08:00
parent bc1b95210a
commit c62e12756b

View File

@@ -147,6 +147,7 @@
import { ref, getCurrentInstance, computed } from "vue"; import { ref, getCurrentInstance, computed } from "vue";
import calendar from "@/utils/lunar.js"; import calendar from "@/utils/lunar.js";
import { useUserStore } from "@/stores/user"; import { useUserStore } from "@/stores/user";
import { onShareAppMessage, onShareTimeline } from "@dcloudio/uni-app";
const { proxy } = getCurrentInstance(); const { proxy } = getCurrentInstance();
const userStore = useUserStore(); const userStore = useUserStore();
@@ -606,6 +607,13 @@ const onShareMoments = () => {
uni.showToast({ title: "请点击右上角分享", icon: "none" }); uni.showToast({ title: "请点击右上角分享", icon: "none" });
}; };
onShareAppMessage(() => {
return {
title: "开启你的每日好运!",
path: "/pages/index/index",
};
});
defineExpose({ open, close }); defineExpose({ open, close });
</script> </script>