fix: greeting page

This commit is contained in:
zzc
2026-01-28 22:54:40 +08:00
parent 154c038d1d
commit bad07da9ef
2 changed files with 148 additions and 60 deletions

View File

@@ -160,6 +160,12 @@ const handleLogind = async () => {
};
const navTo = (page) => {
if (!isLoggedIn.value) {
loginPopupRef.value.open();
uni.showToast({ title: "请先登录", icon: "none" });
return;
}
if (page === "greetings") {
uni.navigateTo({
url: "/pages/mine/greeting",