Initial commit

This commit is contained in:
ChuXun
2025-12-07 22:53:46 +08:00
commit 5a2d39293d
27 changed files with 3188 additions and 0 deletions

12
app.js Normal file
View File

@@ -0,0 +1,12 @@
// app.js
App({
onLaunch: function () {
console.log('应用启动');
},
globalData: {
selectedEvent: null,
selectedStrategies: [],
currentRound: 0,
maxRounds: 3
}
})