feat: Add Scoreboard and Date Calc pages, update Calculator with scientific mode and new UI

This commit is contained in:
2026-02-05 16:04:09 +08:00
parent c8a67abdd2
commit 10304c4abf
15 changed files with 1390 additions and 80 deletions

View File

@@ -68,6 +68,18 @@ Component({
wx.navigateTo({
url: '/pages/random-draw/random-draw'
});
},
goToScoreboard() {
wx.navigateTo({
url: '/pages/scoreboard/scoreboard'
});
},
goToDateCalc() {
wx.navigateTo({
url: '/pages/date-calc/date-calc'
});
}
}
})