dev #2

Merged
wangzhongjie merged 77 commits from dev into main 2025-10-28 17:49:09 +08:00
Showing only changes of commit 09096d8d6c - Show all commits

View File

@ -91,12 +91,11 @@ async function InitExam(dirName: string) {
// 写过程数据
async function WriteProcessData(type: ProcessDataEnumType, data: string) {
let result: LogWorkerMessage = JSON.parse(data)
if (type === ProcessDataEnumType.WuxiExam) {
writeQueue.push({ type, data: result.data || "" });
} else {
writeQueue.push({ type, data });
}
// if (type === ProcessDataEnumType.WuxiExam) {
// writeQueue.push({ type, data });
// } else {
writeQueue.push({ type, data });
// }
if (!isProcessing) {
processQueue();
}