1.优化后台测试推送功能页面

2.优化开奖和实时对局页面
This commit is contained in:
2026-04-18 17:16:13 +08:00
parent 5c07967bf9
commit c184fa8a46
14 changed files with 582 additions and 78 deletions

View File

@@ -63,7 +63,7 @@ const logText = computed(() => {
})
function appendLog(line: PushTestLogLine) {
logs.value = [...logs.value, line].slice(-200)
logs.value = [line, ...logs.value].slice(0, 200)
}
function clearLogs() {