数据结构优化

This commit is contained in:
李琦
2026-01-20 14:31:39 +08:00
parent 05b315013c
commit 946855bff2
16 changed files with 104045 additions and 157 deletions

View File

@@ -347,7 +347,7 @@ const runCode = async () => {
doc.write(loadingTemplate)
try {
const response = await fetch('http://localhost:8081/api/run', {
const response = await fetch('/api/run', {
method: 'POST',
headers: {
'Content-Type': 'application/json'

View File

@@ -115,7 +115,7 @@ const uploadFile = async (file: File) => {
formData.append('storageType', 'local')
const token = localStorage.getItem('token')
const response = await fetch('http://localhost:8081/api/admin/attachments/upload', {
const response = await fetch('/api/admin/attachments/upload', {
method: 'POST',
headers: {
...(token ? { Authorization: `Bearer ${token}` } : {})

View File

@@ -95,12 +95,16 @@ const drawStars = () => {
}
}
ctx.globalAlpha = star.alpha
ctx.beginPath()
ctx.arc(star.x, star.y, star.radius, 0, Math.PI * 2)
ctx.fill()
if (ctx) {
ctx.globalAlpha = star.alpha
ctx.beginPath()
ctx.arc(star.x, star.y, star.radius, 0, Math.PI * 2)
ctx.fill()
}
})
ctx.globalAlpha = 1
if (ctx) {
ctx.globalAlpha = 1
}
}
// 生成流星