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

This commit is contained in:
2026-03-20 22:06:38 +08:00
Unverified
parent c0fc1ea13a
commit 5a8518f6ab
5 changed files with 2274 additions and 0 deletions
+1859
View File
File diff suppressed because it is too large Load Diff
+9
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({