Files

13 lines
168 B
JavaScript
Raw Permalink Normal View History

2025-08-15 14:05:08 +08:00
Component({
methods: {
onBack() {
wx.navigateBack();
},
onGoHome() {
wx.reLaunch({
url: '/pages/home/home',
});
},
},
});