fix: daily page

This commit is contained in:
zzc
2026-03-01 22:35:20 +08:00
parent a7cc9babac
commit 8110e209c7
3 changed files with 615 additions and 0 deletions

View File

@@ -504,6 +504,10 @@ const navTo = (url) => {
};
const navToMake = (item) => {
if (item.scene === "daily") {
uni.navigateTo({ url: "/pages/greeting/daily" });
return;
}
uni.navigateTo({ url: `/pages/make/index?scene=${item.scene}` });
};