fix: help page

This commit is contained in:
zzc
2026-01-28 23:54:15 +08:00
parent 2938ab2a9d
commit 24d9bb1b01
3 changed files with 494 additions and 0 deletions

View File

@@ -196,6 +196,12 @@ const navTo = (page) => {
});
return;
}
if (page === "help") {
uni.navigateTo({
url: "/pages/mine/help",
});
return;
}
uni.showToast({ title: "功能开发中", icon: "none" });
};
</script>