fix
Some checks failed
Deploy / deploy (push) Has been cancelled

This commit is contained in:
2025-10-17 20:48:02 +08:00
parent 5127ded7d5
commit d32af7e6e7

View File

@@ -66,7 +66,6 @@ const languageOptions: SelectOption[] = [
async function listSubmissions() {
if (query.page < 1) query.page = 1
const offset = query.limit * (query.page - 1)
try {
const res = await getSubmissions({
...query,
offset,
@@ -76,11 +75,6 @@ async function listSubmissions() {
})
submissions.value = res.data.results
total.value = res.data.total
} catch (error: any) {
if (error.data === "Problem doesn't exist") {
message.error("题目不存在")
}
}
}
async function getTodayCount() {