Refactor: UI & Feature updates (Calculator, UnitConverter, Privacy, Cleanup)

This commit is contained in:
2026-02-09 01:15:19 +08:00
parent fa1a8e083e
commit 2c5d5b7505
52 changed files with 1351 additions and 2702 deletions

View File

@@ -47,7 +47,7 @@ Component({
},
goToProfile() {
wx.navigateTo({
wx.switchTab({
url: '/pages/profile/profile'
});
},
@@ -64,21 +64,28 @@ Component({
});
},
goToRandomDraw() {
goToDiscount() {
wx.navigateTo({
url: '/pages/random-draw/random-draw'
url: '/pages/discount/discount',
});
},
goToScoreboard() {
goToHistory() {
wx.navigateTo({
url: '/pages/scoreboard/scoreboard'
url: '/pages/history/history',
});
},
goToDateCalc() {
goToAbout() {
wx.navigateTo({
url: '/pages/date-calc/date-calc'
url: '/pages/about/about',
});
},
goToPrivacy() {
wx.navigateTo({
url: '/pages/privacy/privacy',
});
}
}