This commit is contained in:
ywb
2026-05-27 11:09:06 +08:00
parent 9b8e2e233a
commit c1601c0a85
6 changed files with 26 additions and 12 deletions
+5 -1
View File
@@ -111,7 +111,11 @@ createApp({
this.progress = 0
this.report = null
this.showQrModal = false
await fetch(API + '/api/mission/start', { method: 'POST' })
await fetch(API + '/api/mission/start', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({})
})
this.missionState = 'running'
},
async startSingleStep() {