add windows start scripts and update database password in config.yaml

This commit is contained in:
2026-03-20 22:06:38 +08:00
parent c0fc1ea13a
commit 5a8518f6ab
5 changed files with 2274 additions and 0 deletions

1859
frontend/package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

View File

@@ -43,6 +43,15 @@ export function publishScore(id) {
})
}
// 更新成绩
export function updateScore(id, data) {
return request({
url: `/scores/${id}`,
method: 'put',
data
})
}
// 删除成绩
export function deleteScore(id) {
return request({