Explorar o código

feat: 下载优化:单窗口多任务

zhangjie hai 11 meses
pai
achega
f753f8e46d

+ 47 - 0
electron/db/modelApi/trackTask.ts

@@ -141,6 +141,35 @@ export async function getUnfinishTrackTaskDetail(trackTaskId: number) {
   return task.dataValues;
 }
 
+export async function getUnfinishTrackTaskDetails(
+  trackTaskId: number,
+  count = 10
+) {
+  const limitCount = Math.max(10, Math.min(100, count));
+  const rows = await TrackTaskDetail.findAll({
+    where: { status: TRACK_TASK_DETAIL_STATUS.INIT, trackTaskId },
+    limit: limitCount,
+  }).catch((err) => {
+    console.dir(err);
+  });
+  if (!rows || !rows.length) return null;
+
+  await TrackTaskDetail.update(
+    {
+      status: TRACK_TASK_DETAIL_STATUS.RUNNING,
+    },
+    {
+      where: {
+        id: {
+          [Op.in]: rows.map((row) => row.dataValues.id),
+        },
+      },
+    }
+  );
+
+  return rows.map((row) => row.dataValues);
+}
+
 export async function updateTrackTaskDetailStatus(data: {
   id: number;
   status: TrackTaskDetailStatusKey;
@@ -170,3 +199,21 @@ export async function releaseAllRunningTaskDetail(trackTaskId: number) {
     }
   );
 }
+
+export async function releaseAllRunningTaskDetailByIds(
+  trackTaskDetailIds: number[]
+) {
+  await TrackTaskDetail.update(
+    {
+      status: TRACK_TASK_DETAIL_STATUS.INIT,
+    },
+    {
+      where: {
+        status: TRACK_TASK_DETAIL_STATUS.RUNNING,
+        id: {
+          [Op.in]: trackTaskDetailIds,
+        },
+      },
+    }
+  );
+}

+ 6 - 1
electron/preload/api.ts

@@ -44,6 +44,11 @@ function cropImage(imgPath: string): Promise<string> {
   });
 }
 
+function writeData(content: string) {
+  const outpath = path.join(getTempPath(), 'task.txt');
+  fs.writeFileSync(outpath, content, { flag: 'a' });
+}
+
 function drawTrack(
   imgPath: string,
   drawTrackList: DrawTrackItem[],
@@ -52,7 +57,6 @@ function drawTrack(
   return new Promise((resolve, reject) => {
     const bname = path.basename(outpath);
     log.info(`开始绘制:${bname}`);
-
     const gmObj = gmInst(imgPath);
 
     makeDirSync(path.dirname(outpath));
@@ -216,6 +220,7 @@ const commonApi = {
   imagesToPdf,
   logger,
   getConfigData,
+  writeData,
 };
 
 export type CommonApi = typeof commonApi;

+ 4 - 0
electron/preload/apiDb.ts

@@ -10,6 +10,8 @@ import {
   updateTrackTaskDetailStatus,
   finishAllUnfinishTask,
   releaseAllRunningTaskDetail,
+  getUnfinishTrackTaskDetails,
+  releaseAllRunningTaskDetailByIds,
 } from '../db/modelApi/trackTask';
 
 createDb();
@@ -26,6 +28,8 @@ const dbApi = {
   updateTrackTaskDetailStatus,
   finishAllUnfinishTask,
   releaseAllRunningTaskDetail,
+  getUnfinishTrackTaskDetails,
+  releaseAllRunningTaskDetailByIds,
 };
 
 export type DbApi = typeof dbApi;

+ 7 - 6
src/views/base/track-export/taskProgress.vue

@@ -193,12 +193,13 @@
     updateProgress();
 
     // 开启导出进程
-    let downloadProcessCount = 1;
-    if (total.value >= 10) {
-      const appConfig = window.api.getConfigData({});
-      downloadProcessCount = appConfig.downloadProcessCount;
-    }
-    window.electron.startWinProcess(downloadProcessCount, getExportUrl());
+    // let downloadProcessCount = 2;
+    // if (total.value >= 10) {
+    //   const appConfig = window.api.getConfigData({});
+    //   downloadProcessCount = appConfig.downloadProcessCount;
+    // }
+    // window.electron.startWinProcess(downloadProcessCount, getExportUrl());
+    window.electron.startWinProcess(1, getExportUrl());
   }
 
   function updateTaskFilerInfo(data: FilterDataType | null) {

+ 463 - 0
src/views/base/track-export/test/main-log.txt

@@ -0,0 +1,463 @@
+# 8个任务,16张图,pdf,并发2 ======> 平均耗时:5000ms
+[2024-07-16 10:52:16.471] [info]  win:2 00-开启进程
+[2024-07-16 10:52:16.478] [info]  win:2 [543372074027057152] 01-开始任务
+[2024-07-16 10:52:16.478] [info]  win:2 [543374858424156160] 01-开始任务
+[2024-07-16 10:52:16.657] [info]  win:2 [543374858424156160] 02-获取任务数据成功
+[2024-07-16 10:52:16.662] [info]  win:2 [543372074027057152] 02-获取任务数据成功
+[2024-07-16 10:52:16.714] [info]  win:2 [543374858424156160] 02-1-图片下载成功
+[2024-07-16 10:52:16.716] [info]  win:2 [543374858424156160] 03-解析绘制数据成功
+[2024-07-16 10:52:16.717] [info]  开始绘制:070905-大米0709005-1.jpg
+[2024-07-16 10:52:16.721] [info]  开始绘制:070905-大米0709005-2.jpg
+[2024-07-16 10:52:16.732] [info]  win:2 [543372074027057152] 02-1-图片下载成功
+[2024-07-16 10:52:16.733] [info]  win:2 [543372074027057152] 03-解析绘制数据成功
+[2024-07-16 10:52:16.733] [info]  开始绘制:070902-大米0709002-1.jpg
+[2024-07-16 10:52:16.734] [info]  开始绘制:070902-大米0709002-2.jpg
+[2024-07-16 10:52:18.050] [info]  绘制完成:070902-大米0709002-2.jpg
+[2024-07-16 10:52:18.394] [info]  绘制完成:070902-大米0709002-1.jpg
+[2024-07-16 10:52:18.394] [info]  win:2 [543372074027057152] 04-绘制成功
+[2024-07-16 10:52:18.401] [info]  绘制完成:070905-大米0709005-2.jpg
+[2024-07-16 10:52:18.402] [info]  win:2 [543372074027057152] 05-生成pdf成功
+[2024-07-16 10:52:18.403] [info]  win:2 [543372074027057152] 09-任务结束
+[2024-07-16 10:52:18.403] [info]  win:2 [543374858487070720] 01-开始任务
+[2024-07-16 10:52:18.465] [info]  绘制完成:070905-大米0709005-1.jpg
+[2024-07-16 10:52:18.465] [info]  win:2 [543374858424156160] 04-绘制成功
+[2024-07-16 10:52:18.468] [info]  win:2 [543374858424156160] 05-生成pdf成功
+[2024-07-16 10:52:18.469] [info]  win:2 [543374858424156160] 09-任务结束
+[2024-07-16 10:52:18.469] [info]  win:2 [543396931624239104] 01-开始任务
+[2024-07-16 10:52:18.520] [info]  win:2 [543374858487070720] 02-获取任务数据成功
+[2024-07-16 10:52:18.552] [info]  win:2 [543374858487070720] 02-1-图片下载成功
+[2024-07-16 10:52:18.553] [info]  win:2 [543374858487070720] 03-解析绘制数据成功
+[2024-07-16 10:52:18.553] [info]  开始绘制:070906-大米0709006-1.jpg
+[2024-07-16 10:52:18.554] [info]  开始绘制:070906-大米0709006-2.jpg
+[2024-07-16 10:52:18.578] [info]  win:2 [543396931624239104] 02-获取任务数据成功
+[2024-07-16 10:52:18.633] [info]  win:2 [543396931624239104] 02-1-图片下载成功
+[2024-07-16 10:52:18.633] [info]  win:2 [543396931624239104] 03-解析绘制数据成功
+[2024-07-16 10:52:18.633] [info]  开始绘制:070907-大米0709007-1.jpg
+[2024-07-16 10:52:18.634] [info]  开始绘制:070907-大米0709007-2.jpg
+[2024-07-16 10:52:19.057] [info]  绘制完成:070906-大米0709006-2.jpg
+[2024-07-16 10:52:19.095] [info]  绘制完成:070906-大米0709006-1.jpg
+[2024-07-16 10:52:19.095] [info]  win:2 [543374858487070720] 04-绘制成功
+[2024-07-16 10:52:19.099] [info]  win:2 [543374858487070720] 05-生成pdf成功
+[2024-07-16 10:52:19.100] [info]  win:2 [543374858487070720] 09-任务结束
+[2024-07-16 10:52:19.100] [info]  win:2 [543396931666182144] 01-开始任务
+[2024-07-16 10:52:19.129] [info]  绘制完成:070907-大米0709007-2.jpg
+[2024-07-16 10:52:19.159] [info]  绘制完成:070907-大米0709007-1.jpg
+[2024-07-16 10:52:19.159] [info]  win:2 [543396931624239104] 04-绘制成功
+[2024-07-16 10:52:19.163] [info]  win:2 [543396931624239104] 05-生成pdf成功
+[2024-07-16 10:52:19.164] [info]  win:2 [543396931624239104] 09-任务结束
+[2024-07-16 10:52:19.164] [info]  win:2 [543396931745873920] 01-开始任务
+[2024-07-16 10:52:19.198] [info]  win:2 [543396931666182144] 02-获取任务数据成功
+[2024-07-16 10:52:19.231] [info]  win:2 [543396931666182144] 02-1-图片下载成功
+[2024-07-16 10:52:19.231] [info]  win:2 [543396931666182144] 03-解析绘制数据成功
+[2024-07-16 10:52:19.232] [info]  开始绘制:070908-大米0709008-1.jpg
+[2024-07-16 10:52:19.233] [info]  开始绘制:070908-大米0709008-2.jpg
+[2024-07-16 10:52:19.288] [info]  win:2 [543396931745873920] 02-获取任务数据成功
+[2024-07-16 10:52:19.323] [info]  win:2 [543396931745873920] 02-1-图片下载成功
+[2024-07-16 10:52:19.324] [info]  win:2 [543396931745873920] 03-解析绘制数据成功
+[2024-07-16 10:52:19.324] [info]  开始绘制:070910-大米0709010-1.jpg
+[2024-07-16 10:52:19.332] [info]  开始绘制:070910-大米0709010-2.jpg
+[2024-07-16 10:52:20.558] [info]  绘制完成:070910-大米0709010-2.jpg
+[2024-07-16 10:52:20.651] [info]  绘制完成:070910-大米0709010-1.jpg
+[2024-07-16 10:52:20.651] [info]  win:2 [543396931745873920] 04-绘制成功
+[2024-07-16 10:52:20.654] [info]  win:2 [543396931745873920] 05-生成pdf成功
+[2024-07-16 10:52:20.655] [info]  win:2 [543396931745873920] 09-任务结束
+[2024-07-16 10:52:20.655] [info]  win:2 [543396931787816960] 01-开始任务
+[2024-07-16 10:52:20.672] [info]  绘制完成:070908-大米0709008-2.jpg
+[2024-07-16 10:52:20.712] [info]  绘制完成:070908-大米0709008-1.jpg
+[2024-07-16 10:52:20.712] [info]  win:2 [543396931666182144] 04-绘制成功
+[2024-07-16 10:52:20.714] [info]  win:2 [543396931666182144] 05-生成pdf成功
+[2024-07-16 10:52:20.716] [info]  win:2 [543396931666182144] 09-任务结束
+[2024-07-16 10:52:20.716] [info]  win:2 [543372074081583104] 01-开始任务
+[2024-07-16 10:52:20.763] [info]  win:2 [543396931787816960] 02-获取任务数据成功
+[2024-07-16 10:52:20.795] [info]  win:2 [543396931787816960] 02-1-图片下载成功
+[2024-07-16 10:52:20.795] [info]  win:2 [543396931787816960] 03-解析绘制数据成功
+[2024-07-16 10:52:20.795] [info]  开始绘制:070911-大米0709011-1.jpg
+[2024-07-16 10:52:20.796] [info]  开始绘制:070911-大米0709011-2.jpg
+[2024-07-16 10:52:20.816] [info]  win:2 [543372074081583104] 02-获取任务数据成功
+[2024-07-16 10:52:20.869] [info]  win:2 [543372074081583104] 02-1-图片下载成功
+[2024-07-16 10:52:20.870] [info]  win:2 [543372074081583104] 03-解析绘制数据成功
+[2024-07-16 10:52:20.870] [info]  开始绘制:1272-大米72-1.jpg
+[2024-07-16 10:52:20.871] [info]  开始绘制:1272-大米72-2.jpg
+[2024-07-16 10:52:21.279] [info]  绘制完成:070911-大米0709011-2.jpg
+[2024-07-16 10:52:21.367] [info]  绘制完成:1272-大米72-1.jpg
+[2024-07-16 10:52:21.367] [info]  绘制完成:070911-大米0709011-1.jpg
+[2024-07-16 10:52:21.367] [info]  win:2 [543396931787816960] 04-绘制成功
+[2024-07-16 10:52:21.371] [info]  win:2 [543396931787816960] 05-生成pdf成功
+[2024-07-16 10:52:21.372] [info]  win:2 [543396931787816960] 09-任务结束
+[2024-07-16 10:52:21.381] [info]  绘制完成:1272-大米72-2.jpg
+[2024-07-16 10:52:21.381] [info]  win:2 [543372074081583104] 04-绘制成功
+[2024-07-16 10:52:21.383] [info]  win:2 [543372074081583104] 05-生成pdf成功
+[2024-07-16 10:52:21.384] [info]  win:2 [543372074081583104] 09-任务结束
+[2024-07-16 10:52:21.385] [info]  win:2 00-无任务
+[2024-07-16 10:52:22.391] [info]  win:2 99-结束进程
+# 耗时: 4914ms
+
+[2024-07-16 10:58:45.170] [info]  win:2 00-开启进程
+[2024-07-16 10:58:45.175] [info]  win:2 [543372074027057152] 01-开始任务
+[2024-07-16 10:58:45.176] [info]  win:2 [543374858424156160] 01-开始任务
+[2024-07-16 10:58:45.289] [info]  win:2 [543374858424156160] 02-获取任务数据成功
+[2024-07-16 10:58:45.291] [info]  win:2 [543372074027057152] 02-获取任务数据成功
+[2024-07-16 10:58:45.339] [info]  win:2 [543374858424156160] 02-1-图片下载成功
+[2024-07-16 10:58:45.340] [info]  win:2 [543374858424156160] 03-解析绘制数据成功
+[2024-07-16 10:58:45.340] [info]  开始绘制:070905-大米0709005-1.jpg
+[2024-07-16 10:58:45.343] [info]  开始绘制:070905-大米0709005-2.jpg
+[2024-07-16 10:58:45.361] [info]  win:2 [543372074027057152] 02-1-图片下载成功
+[2024-07-16 10:58:45.361] [info]  win:2 [543372074027057152] 03-解析绘制数据成功
+[2024-07-16 10:58:45.362] [info]  开始绘制:070902-大米0709002-1.jpg
+[2024-07-16 10:58:45.363] [info]  开始绘制:070902-大米0709002-2.jpg
+[2024-07-16 10:58:49.766] [info]  绘制完成:070902-大米0709002-1.jpg
+[2024-07-16 10:58:49.839] [info]  绘制完成:070905-大米0709005-2.jpg
+[2024-07-16 10:58:49.859] [info]  绘制完成:070902-大米0709002-2.jpg
+[2024-07-16 10:58:49.860] [info]  win:2 [543372074027057152] 04-绘制成功
+[2024-07-16 10:58:49.867] [info]  win:2 [543372074027057152] 05-生成pdf成功
+[2024-07-16 10:58:49.869] [info]  win:2 [543372074027057152] 09-任务结束
+[2024-07-16 10:58:49.869] [info]  win:2 [543374858487070720] 01-开始任务
+[2024-07-16 10:58:49.881] [info]  绘制完成:070905-大米0709005-1.jpg
+[2024-07-16 10:58:49.881] [info]  win:2 [543374858424156160] 04-绘制成功
+[2024-07-16 10:58:49.883] [info]  win:2 [543374858424156160] 05-生成pdf成功
+[2024-07-16 10:58:49.884] [info]  win:2 [543374858424156160] 09-任务结束
+[2024-07-16 10:58:49.884] [info]  win:2 [543396931624239104] 01-开始任务
+[2024-07-16 10:58:49.994] [info]  win:2 [543374858487070720] 02-获取任务数据成功
+[2024-07-16 10:58:50.021] [info]  win:2 [543396931624239104] 02-获取任务数据成功
+[2024-07-16 10:58:50.028] [info]  win:2 [543374858487070720] 02-1-图片下载成功
+[2024-07-16 10:58:50.029] [info]  win:2 [543374858487070720] 03-解析绘制数据成功
+[2024-07-16 10:58:50.029] [info]  开始绘制:070906-大米0709006-1.jpg
+[2024-07-16 10:58:50.030] [info]  开始绘制:070906-大米0709006-2.jpg
+[2024-07-16 10:58:50.086] [info]  win:2 [543396931624239104] 02-1-图片下载成功
+[2024-07-16 10:58:50.086] [info]  win:2 [543396931624239104] 03-解析绘制数据成功
+[2024-07-16 10:58:50.087] [info]  开始绘制:070907-大米0709007-1.jpg
+[2024-07-16 10:58:50.091] [info]  开始绘制:070907-大米0709007-2.jpg
+[2024-07-16 10:58:50.508] [info]  绘制完成:070906-大米0709006-2.jpg
+[2024-07-16 10:58:50.592] [info]  绘制完成:070906-大米0709006-1.jpg
+[2024-07-16 10:58:50.592] [info]  win:2 [543374858487070720] 04-绘制成功
+[2024-07-16 10:58:50.596] [info]  win:2 [543374858487070720] 05-生成pdf成功
+[2024-07-16 10:58:50.597] [info]  win:2 [543374858487070720] 09-任务结束
+[2024-07-16 10:58:50.597] [info]  win:2 [543396931666182144] 01-开始任务
+[2024-07-16 10:58:50.611] [info]  绘制完成:070907-大米0709007-2.jpg
+[2024-07-16 10:58:50.646] [info]  绘制完成:070907-大米0709007-1.jpg
+[2024-07-16 10:58:50.646] [info]  win:2 [543396931624239104] 04-绘制成功
+[2024-07-16 10:58:50.652] [info]  win:2 [543396931624239104] 05-生成pdf成功
+[2024-07-16 10:58:50.653] [info]  win:2 [543396931624239104] 09-任务结束
+[2024-07-16 10:58:50.653] [info]  win:2 [543396931745873920] 01-开始任务
+[2024-07-16 10:58:50.696] [info]  win:2 [543396931666182144] 02-获取任务数据成功
+[2024-07-16 10:58:50.729] [info]  win:2 [543396931666182144] 02-1-图片下载成功
+[2024-07-16 10:58:50.729] [info]  win:2 [543396931666182144] 03-解析绘制数据成功
+[2024-07-16 10:58:50.729] [info]  开始绘制:070908-大米0709008-1.jpg
+[2024-07-16 10:58:50.731] [info]  开始绘制:070908-大米0709008-2.jpg
+[2024-07-16 10:58:50.748] [info]  win:2 [543396931745873920] 02-获取任务数据成功
+[2024-07-16 10:58:50.805] [info]  win:2 [543396931745873920] 02-1-图片下载成功
+[2024-07-16 10:58:50.806] [info]  win:2 [543396931745873920] 03-解析绘制数据成功
+[2024-07-16 10:58:50.806] [info]  开始绘制:070910-大米0709010-1.jpg
+[2024-07-16 10:58:50.818] [info]  开始绘制:070910-大米0709010-2.jpg
+[2024-07-16 10:58:54.331] [info]  绘制完成:070910-大米0709010-2.jpg
+[2024-07-16 10:58:54.617] [info]  绘制完成:070910-大米0709010-1.jpg
+[2024-07-16 10:58:54.617] [info]  win:2 [543396931745873920] 04-绘制成功
+[2024-07-16 10:58:54.621] [info]  win:2 [543396931745873920] 05-生成pdf成功
+[2024-07-16 10:58:54.622] [info]  win:2 [543396931745873920] 09-任务结束
+[2024-07-16 10:58:54.622] [info]  win:2 [543396931787816960] 01-开始任务
+[2024-07-16 10:58:54.660] [info]  绘制完成:070908-大米0709008-2.jpg
+[2024-07-16 10:58:54.687] [info]  绘制完成:070908-大米0709008-1.jpg
+[2024-07-16 10:58:54.687] [info]  win:2 [543396931666182144] 04-绘制成功
+[2024-07-16 10:58:54.690] [info]  win:2 [543396931666182144] 05-生成pdf成功
+[2024-07-16 10:58:54.691] [info]  win:2 [543396931666182144] 09-任务结束
+[2024-07-16 10:58:54.691] [info]  win:2 [543372074081583104] 01-开始任务
+[2024-07-16 10:58:54.727] [info]  win:2 [543396931787816960] 02-获取任务数据成功
+[2024-07-16 10:58:54.759] [info]  win:2 [543396931787816960] 02-1-图片下载成功
+[2024-07-16 10:58:54.759] [info]  win:2 [543396931787816960] 03-解析绘制数据成功
+[2024-07-16 10:58:54.759] [info]  开始绘制:070911-大米0709011-1.jpg
+[2024-07-16 10:58:54.760] [info]  开始绘制:070911-大米0709011-2.jpg
+[2024-07-16 10:58:54.816] [info]  win:2 [543372074081583104] 02-获取任务数据成功
+[2024-07-16 10:58:54.848] [info]  win:2 [543372074081583104] 02-1-图片下载成功
+[2024-07-16 10:58:54.848] [info]  win:2 [543372074081583104] 03-解析绘制数据成功
+[2024-07-16 10:58:54.848] [info]  开始绘制:1272-大米72-1.jpg
+[2024-07-16 10:58:54.849] [info]  开始绘制:1272-大米72-2.jpg
+[2024-07-16 10:58:55.206] [info]  绘制完成:070911-大米0709011-2.jpg
+[2024-07-16 10:58:55.261] [info]  绘制完成:070911-大米0709011-1.jpg
+[2024-07-16 10:58:55.261] [info]  win:2 [543396931787816960] 04-绘制成功
+[2024-07-16 10:58:55.265] [info]  win:2 [543396931787816960] 05-生成pdf成功
+[2024-07-16 10:58:55.266] [info]  win:2 [543396931787816960] 09-任务结束
+[2024-07-16 10:58:55.272] [info]  绘制完成:1272-大米72-1.jpg
+[2024-07-16 10:58:55.277] [info]  绘制完成:1272-大米72-2.jpg
+[2024-07-16 10:58:55.277] [info]  win:2 [543372074081583104] 04-绘制成功
+[2024-07-16 10:58:55.279] [info]  win:2 [543372074081583104] 05-生成pdf成功
+[2024-07-16 10:58:55.280] [info]  win:2 [543372074081583104] 09-任务结束
+[2024-07-16 10:58:55.281] [info]  win:2 00-无任务
+[2024-07-16 10:58:56.284] [info]  win:2 99-结束进程
+
+
+[2024-07-16 10:59:27.194] [info]  win:3 00-开启进程
+[2024-07-16 10:59:27.200] [info]  win:3 [543372074027057152] 01-开始任务
+[2024-07-16 10:59:27.200] [info]  win:3 [543374858424156160] 01-开始任务
+[2024-07-16 10:59:27.302] [info]  win:3 [543374858424156160] 02-获取任务数据成功
+[2024-07-16 10:59:27.331] [info]  win:3 [543372074027057152] 02-获取任务数据成功
+[2024-07-16 10:59:27.338] [info]  win:3 [543374858424156160] 02-1-图片下载成功
+[2024-07-16 10:59:27.340] [info]  win:3 [543374858424156160] 03-解析绘制数据成功
+[2024-07-16 10:59:27.341] [info]  开始绘制:070905-大米0709005-1.jpg
+[2024-07-16 10:59:27.345] [info]  开始绘制:070905-大米0709005-2.jpg
+[2024-07-16 10:59:27.368] [info]  win:3 [543372074027057152] 02-1-图片下载成功
+[2024-07-16 10:59:27.369] [info]  win:3 [543372074027057152] 03-解析绘制数据成功
+[2024-07-16 10:59:27.369] [info]  开始绘制:070902-大米0709002-1.jpg
+[2024-07-16 10:59:27.378] [info]  开始绘制:070902-大米0709002-2.jpg
+[2024-07-16 10:59:29.177] [info]  绘制完成:070902-大米0709002-2.jpg
+[2024-07-16 10:59:29.570] [info]  绘制完成:070902-大米0709002-1.jpg
+[2024-07-16 10:59:29.570] [info]  win:3 [543372074027057152] 04-绘制成功
+[2024-07-16 10:59:29.576] [info]  绘制完成:070905-大米0709005-2.jpg
+[2024-07-16 10:59:29.577] [info]  win:3 [543372074027057152] 05-生成pdf成功
+[2024-07-16 10:59:29.578] [info]  win:3 [543372074027057152] 09-任务结束
+[2024-07-16 10:59:29.578] [info]  win:3 [543374858487070720] 01-开始任务
+[2024-07-16 10:59:29.628] [info]  绘制完成:070905-大米0709005-1.jpg
+[2024-07-16 10:59:29.628] [info]  win:3 [543374858424156160] 04-绘制成功
+[2024-07-16 10:59:29.631] [info]  win:3 [543374858424156160] 05-生成pdf成功
+[2024-07-16 10:59:29.632] [info]  win:3 [543374858424156160] 09-任务结束
+[2024-07-16 10:59:29.632] [info]  win:3 [543396931624239104] 01-开始任务
+[2024-07-16 10:59:29.683] [info]  win:3 [543374858487070720] 02-获取任务数据成功
+[2024-07-16 10:59:29.715] [info]  win:3 [543374858487070720] 02-1-图片下载成功
+[2024-07-16 10:59:29.716] [info]  win:3 [543374858487070720] 03-解析绘制数据成功
+[2024-07-16 10:59:29.716] [info]  开始绘制:070906-大米0709006-1.jpg
+[2024-07-16 10:59:29.717] [info]  开始绘制:070906-大米0709006-2.jpg
+[2024-07-16 10:59:29.724] [info]  win:3 [543396931624239104] 02-获取任务数据成功
+[2024-07-16 10:59:29.788] [info]  win:3 [543396931624239104] 02-1-图片下载成功
+[2024-07-16 10:59:29.788] [info]  win:3 [543396931624239104] 03-解析绘制数据成功
+[2024-07-16 10:59:29.788] [info]  开始绘制:070907-大米0709007-1.jpg
+[2024-07-16 10:59:29.789] [info]  开始绘制:070907-大米0709007-2.jpg
+[2024-07-16 10:59:30.213] [info]  绘制完成:070906-大米0709006-2.jpg
+[2024-07-16 10:59:30.277] [info]  绘制完成:070906-大米0709006-1.jpg
+[2024-07-16 10:59:30.277] [info]  win:3 [543374858487070720] 04-绘制成功
+[2024-07-16 10:59:30.279] [info]  win:3 [543374858487070720] 05-生成pdf成功
+[2024-07-16 10:59:30.280] [info]  win:3 [543374858487070720] 09-任务结束
+[2024-07-16 10:59:30.280] [info]  win:3 [543396931666182144] 01-开始任务
+[2024-07-16 10:59:30.355] [info]  绘制完成:070907-大米0709007-2.jpg
+[2024-07-16 10:59:30.374] [info]  绘制完成:070907-大米0709007-1.jpg
+[2024-07-16 10:59:30.374] [info]  win:3 [543396931624239104] 04-绘制成功
+[2024-07-16 10:59:30.378] [info]  win:3 [543396931624239104] 05-生成pdf成功
+[2024-07-16 10:59:30.379] [info]  win:3 [543396931624239104] 09-任务结束
+[2024-07-16 10:59:30.379] [info]  win:3 [543396931745873920] 01-开始任务
+[2024-07-16 10:59:30.380] [info]  win:3 [543396931666182144] 02-获取任务数据成功
+[2024-07-16 10:59:30.418] [info]  win:3 [543396931666182144] 02-1-图片下载成功
+[2024-07-16 10:59:30.418] [info]  win:3 [543396931666182144] 03-解析绘制数据成功
+[2024-07-16 10:59:30.418] [info]  开始绘制:070908-大米0709008-1.jpg
+[2024-07-16 10:59:30.419] [info]  开始绘制:070908-大米0709008-2.jpg
+[2024-07-16 10:59:30.522] [info]  win:3 [543396931745873920] 02-获取任务数据成功
+[2024-07-16 10:59:30.558] [info]  win:3 [543396931745873920] 02-1-图片下载成功
+[2024-07-16 10:59:30.558] [info]  win:3 [543396931745873920] 03-解析绘制数据成功
+[2024-07-16 10:59:30.558] [info]  开始绘制:070910-大米0709010-1.jpg
+[2024-07-16 10:59:30.560] [info]  开始绘制:070910-大米0709010-2.jpg
+[2024-07-16 10:59:30.968] [info]  绘制完成:070910-大米0709010-2.jpg
+[2024-07-16 10:59:30.991] [info]  绘制完成:070908-大米0709008-2.jpg
+[2024-07-16 10:59:31.036] [info]  绘制完成:070908-大米0709008-1.jpg
+[2024-07-16 10:59:31.036] [info]  win:3 [543396931666182144] 04-绘制成功
+[2024-07-16 10:59:31.039] [info]  win:3 [543396931666182144] 05-生成pdf成功
+[2024-07-16 10:59:31.039] [info]  win:3 [543396931666182144] 09-任务结束
+[2024-07-16 10:59:31.040] [info]  win:3 [543396931787816960] 01-开始任务
+[2024-07-16 10:59:31.051] [info]  绘制完成:070910-大米0709010-1.jpg
+[2024-07-16 10:59:31.051] [info]  win:3 [543396931745873920] 04-绘制成功
+[2024-07-16 10:59:31.054] [info]  win:3 [543396931745873920] 05-生成pdf成功
+[2024-07-16 10:59:31.054] [info]  win:3 [543396931745873920] 09-任务结束
+[2024-07-16 10:59:31.055] [info]  win:3 [543372074081583104] 01-开始任务
+[2024-07-16 10:59:31.139] [info]  win:3 [543396931787816960] 02-获取任务数据成功
+[2024-07-16 10:59:31.165] [info]  win:3 [543372074081583104] 02-获取任务数据成功
+[2024-07-16 10:59:31.174] [info]  win:3 [543396931787816960] 02-1-图片下载成功
+[2024-07-16 10:59:31.174] [info]  win:3 [543396931787816960] 03-解析绘制数据成功
+[2024-07-16 10:59:31.174] [info]  开始绘制:070911-大米0709011-1.jpg
+[2024-07-16 10:59:31.176] [info]  开始绘制:070911-大米0709011-2.jpg
+[2024-07-16 10:59:31.199] [info]  win:3 [543372074081583104] 02-1-图片下载成功
+[2024-07-16 10:59:31.199] [info]  win:3 [543372074081583104] 03-解析绘制数据成功
+[2024-07-16 10:59:31.199] [info]  开始绘制:1272-大米72-1.jpg
+[2024-07-16 10:59:31.200] [info]  开始绘制:1272-大米72-2.jpg
+[2024-07-16 10:59:31.873] [info]  绘制完成:070911-大米0709011-1.jpg
+[2024-07-16 10:59:31.962] [info]  绘制完成:1272-大米72-2.jpg
+[2024-07-16 10:59:31.964] [info]  绘制完成:1272-大米72-1.jpg
+[2024-07-16 10:59:31.964] [info]  win:3 [543372074081583104] 04-绘制成功
+[2024-07-16 10:59:31.969] [info]  win:3 [543372074081583104] 05-生成pdf成功
+[2024-07-16 10:59:31.970] [info]  win:3 [543372074081583104] 09-任务结束
+[2024-07-16 10:59:32.072] [info]  绘制完成:070911-大米0709011-2.jpg
+[2024-07-16 10:59:32.072] [info]  win:3 [543396931787816960] 04-绘制成功
+[2024-07-16 10:59:32.075] [info]  win:3 [543396931787816960] 05-生成pdf成功
+[2024-07-16 10:59:32.076] [info]  win:3 [543396931787816960] 09-任务结束
+[2024-07-16 10:59:32.077] [info]  win:3 00-无任务
+[2024-07-16 10:59:33.082] [info]  win:3 99-结束进程
+# 耗时:4882ms
+
+[2024-07-16 11:00:06.173] [info]  win:4 00-开启进程
+[2024-07-16 11:00:06.179] [info]  win:4 [543372074027057152] 01-开始任务
+[2024-07-16 11:00:06.180] [info]  win:4 [543374858424156160] 01-开始任务
+[2024-07-16 11:00:06.280] [info]  win:4 [543372074027057152] 02-获取任务数据成功
+[2024-07-16 11:00:06.282] [info]  win:4 [543374858424156160] 02-获取任务数据成功
+[2024-07-16 11:00:06.325] [info]  win:4 [543372074027057152] 02-1-图片下载成功
+[2024-07-16 11:00:06.326] [info]  win:4 [543372074027057152] 03-解析绘制数据成功
+[2024-07-16 11:00:06.326] [info]  开始绘制:070902-大米0709002-1.jpg
+[2024-07-16 11:00:06.329] [info]  开始绘制:070902-大米0709002-2.jpg
+[2024-07-16 11:00:06.346] [info]  win:4 [543374858424156160] 02-1-图片下载成功
+[2024-07-16 11:00:06.347] [info]  win:4 [543374858424156160] 03-解析绘制数据成功
+[2024-07-16 11:00:06.347] [info]  开始绘制:070905-大米0709005-1.jpg
+[2024-07-16 11:00:06.349] [info]  开始绘制:070905-大米0709005-2.jpg
+[2024-07-16 11:00:08.419] [info]  绘制完成:070905-大米0709005-1.jpg
+[2024-07-16 11:00:09.031] [info]  绘制完成:070902-大米0709002-1.jpg
+[2024-07-16 11:00:09.035] [info]  绘制完成:070905-大米0709005-2.jpg
+[2024-07-16 11:00:09.036] [info]  win:4 [543374858424156160] 04-绘制成功
+[2024-07-16 11:00:09.043] [info]  win:4 [543374858424156160] 05-生成pdf成功
+[2024-07-16 11:00:09.044] [info]  win:4 [543374858424156160] 09-任务结束
+[2024-07-16 11:00:09.044] [info]  win:4 [543374858487070720] 01-开始任务
+[2024-07-16 11:00:09.074] [info]  绘制完成:070902-大米0709002-2.jpg
+[2024-07-16 11:00:09.074] [info]  win:4 [543372074027057152] 04-绘制成功
+[2024-07-16 11:00:09.077] [info]  win:4 [543372074027057152] 05-生成pdf成功
+[2024-07-16 11:00:09.078] [info]  win:4 [543372074027057152] 09-任务结束
+[2024-07-16 11:00:09.078] [info]  win:4 [543396931624239104] 01-开始任务
+[2024-07-16 11:00:09.149] [info]  win:4 [543374858487070720] 02-获取任务数据成功
+[2024-07-16 11:00:09.176] [info]  win:4 [543396931624239104] 02-获取任务数据成功
+[2024-07-16 11:00:09.183] [info]  win:4 [543374858487070720] 02-1-图片下载成功
+[2024-07-16 11:00:09.184] [info]  win:4 [543374858487070720] 03-解析绘制数据成功
+[2024-07-16 11:00:09.184] [info]  开始绘制:070906-大米0709006-1.jpg
+[2024-07-16 11:00:09.185] [info]  开始绘制:070906-大米0709006-2.jpg
+[2024-07-16 11:00:09.236] [info]  win:4 [543396931624239104] 02-1-图片下载成功
+[2024-07-16 11:00:09.237] [info]  win:4 [543396931624239104] 03-解析绘制数据成功
+[2024-07-16 11:00:09.237] [info]  开始绘制:070907-大米0709007-1.jpg
+[2024-07-16 11:00:09.244] [info]  开始绘制:070907-大米0709007-2.jpg
+[2024-07-16 11:00:09.687] [info]  绘制完成:070906-大米0709006-2.jpg
+[2024-07-16 11:00:09.743] [info]  绘制完成:070906-大米0709006-1.jpg
+[2024-07-16 11:00:09.743] [info]  win:4 [543374858487070720] 04-绘制成功
+[2024-07-16 11:00:09.746] [info]  win:4 [543374858487070720] 05-生成pdf成功
+[2024-07-16 11:00:09.747] [info]  win:4 [543374858487070720] 09-任务结束
+[2024-07-16 11:00:09.747] [info]  win:4 [543396931666182144] 01-开始任务
+[2024-07-16 11:00:09.844] [info]  win:4 [543396931666182144] 02-获取任务数据成功
+[2024-07-16 11:00:09.878] [info]  win:4 [543396931666182144] 02-1-图片下载成功
+[2024-07-16 11:00:09.878] [info]  win:4 [543396931666182144] 03-解析绘制数据成功
+[2024-07-16 11:00:09.879] [info]  开始绘制:070908-大米0709008-1.jpg
+[2024-07-16 11:00:09.880] [info]  开始绘制:070908-大米0709008-2.jpg
+[2024-07-16 11:00:09.889] [info]  绘制完成:070907-大米0709007-2.jpg
+[2024-07-16 11:00:09.955] [info]  绘制完成:070907-大米0709007-1.jpg
+[2024-07-16 11:00:09.955] [info]  win:4 [543396931624239104] 04-绘制成功
+[2024-07-16 11:00:09.959] [info]  win:4 [543396931624239104] 05-生成pdf成功
+[2024-07-16 11:00:09.960] [info]  win:4 [543396931624239104] 09-任务结束
+[2024-07-16 11:00:09.960] [info]  win:4 [543396931745873920] 01-开始任务
+[2024-07-16 11:00:10.070] [info]  win:4 [543396931745873920] 02-获取任务数据成功
+[2024-07-16 11:00:10.104] [info]  win:4 [543396931745873920] 02-1-图片下载成功
+[2024-07-16 11:00:10.104] [info]  win:4 [543396931745873920] 03-解析绘制数据成功
+[2024-07-16 11:00:10.104] [info]  开始绘制:070910-大米0709010-1.jpg
+[2024-07-16 11:00:10.105] [info]  开始绘制:070910-大米0709010-2.jpg
+[2024-07-16 11:00:10.270] [info]  绘制完成:070908-大米0709008-2.jpg
+[2024-07-16 11:00:10.319] [info]  绘制完成:070908-大米0709008-1.jpg
+[2024-07-16 11:00:10.319] [info]  win:4 [543396931666182144] 04-绘制成功
+[2024-07-16 11:00:10.322] [info]  win:4 [543396931666182144] 05-生成pdf成功
+[2024-07-16 11:00:10.324] [info]  win:4 [543396931666182144] 09-任务结束
+[2024-07-16 11:00:10.324] [info]  win:4 [543396931787816960] 01-开始任务
+[2024-07-16 11:00:10.394] [info]  绘制完成:070910-大米0709010-2.jpg
+[2024-07-16 11:00:10.418] [info]  win:4 [543396931787816960] 02-获取任务数据成功
+[2024-07-16 11:00:10.450] [info]  win:4 [543396931787816960] 02-1-图片下载成功
+[2024-07-16 11:00:10.450] [info]  win:4 [543396931787816960] 03-解析绘制数据成功
+[2024-07-16 11:00:10.450] [info]  开始绘制:070911-大米0709011-1.jpg
+[2024-07-16 11:00:10.451] [info]  开始绘制:070911-大米0709011-2.jpg
+[2024-07-16 11:00:10.460] [info]  绘制完成:070910-大米0709010-1.jpg
+[2024-07-16 11:00:10.461] [info]  win:4 [543396931745873920] 04-绘制成功
+[2024-07-16 11:00:10.465] [info]  win:4 [543396931745873920] 05-生成pdf成功
+[2024-07-16 11:00:10.466] [info]  win:4 [543396931745873920] 09-任务结束
+[2024-07-16 11:00:10.467] [info]  win:4 [543372074081583104] 01-开始任务
+[2024-07-16 11:00:10.566] [info]  win:4 [543372074081583104] 02-获取任务数据成功
+[2024-07-16 11:00:10.598] [info]  win:4 [543372074081583104] 02-1-图片下载成功
+[2024-07-16 11:00:10.598] [info]  win:4 [543372074081583104] 03-解析绘制数据成功
+[2024-07-16 11:00:10.598] [info]  开始绘制:1272-大米72-1.jpg
+[2024-07-16 11:00:10.599] [info]  开始绘制:1272-大米72-2.jpg
+[2024-07-16 11:00:10.902] [info]  绘制完成:070911-大米0709011-2.jpg
+[2024-07-16 11:00:11.056] [info]  绘制完成:070911-大米0709011-1.jpg
+[2024-07-16 11:00:11.056] [info]  win:4 [543396931787816960] 04-绘制成功
+[2024-07-16 11:00:11.059] [info]  win:4 [543396931787816960] 05-生成pdf成功
+[2024-07-16 11:00:11.060] [info]  win:4 [543396931787816960] 09-任务结束
+[2024-07-16 11:00:11.095] [info]  绘制完成:1272-大米72-1.jpg
+[2024-07-16 11:00:11.133] [info]  绘制完成:1272-大米72-2.jpg
+[2024-07-16 11:00:11.133] [info]  win:4 [543372074081583104] 04-绘制成功
+[2024-07-16 11:00:11.135] [info]  win:4 [543372074081583104] 05-生成pdf成功
+[2024-07-16 11:00:11.136] [info]  win:4 [543372074081583104] 09-任务结束
+[2024-07-16 11:00:11.137] [info]  win:4 00-无任务
+[2024-07-16 11:00:12.141] [info]  win:4 99-结束进程
+# 耗时: 4964ms
+[2024-07-16 11:02:58.504] [info]  win:5 00-开启进程
+[2024-07-16 11:02:58.510] [info]  win:5 [543372074027057152] 01-开始任务
+[2024-07-16 11:02:58.511] [info]  win:5 [543374858424156160] 01-开始任务
+[2024-07-16 11:02:58.608] [info]  win:5 [543374858424156160] 02-获取任务数据成功
+[2024-07-16 11:02:58.636] [info]  win:5 [543372074027057152] 02-获取任务数据成功
+[2024-07-16 11:02:58.645] [info]  win:5 [543374858424156160] 02-1-图片下载成功
+[2024-07-16 11:02:58.646] [info]  win:5 [543374858424156160] 03-解析绘制数据成功
+[2024-07-16 11:02:58.646] [info]  开始绘制:070905-大米0709005-1.jpg
+[2024-07-16 11:02:58.649] [info]  开始绘制:070905-大米0709005-2.jpg
+[2024-07-16 11:02:58.676] [info]  win:5 [543372074027057152] 02-1-图片下载成功
+[2024-07-16 11:02:58.676] [info]  win:5 [543372074027057152] 03-解析绘制数据成功
+[2024-07-16 11:02:58.676] [info]  开始绘制:070902-大米0709002-1.jpg
+[2024-07-16 11:02:58.680] [info]  开始绘制:070902-大米0709002-2.jpg
+[2024-07-16 11:02:59.399] [info]  绘制完成:070905-大米0709005-2.jpg
+[2024-07-16 11:02:59.665] [info]  绘制完成:070902-大米0709002-1.jpg
+[2024-07-16 11:02:59.708] [info]  绘制完成:070902-大米0709002-2.jpg
+[2024-07-16 11:02:59.708] [info]  win:5 [543372074027057152] 04-绘制成功
+[2024-07-16 11:02:59.716] [info]  win:5 [543372074027057152] 05-生成pdf成功
+[2024-07-16 11:02:59.717] [info]  win:5 [543372074027057152] 09-任务结束
+[2024-07-16 11:02:59.717] [info]  win:5 [543374858487070720] 01-开始任务
+[2024-07-16 11:02:59.756] [info]  绘制完成:070905-大米0709005-1.jpg
+[2024-07-16 11:02:59.756] [info]  win:5 [543374858424156160] 04-绘制成功
+[2024-07-16 11:02:59.759] [info]  win:5 [543374858424156160] 05-生成pdf成功
+[2024-07-16 11:02:59.760] [info]  win:5 [543374858424156160] 09-任务结束
+[2024-07-16 11:02:59.760] [info]  win:5 [543396931624239104] 01-开始任务
+[2024-07-16 11:02:59.813] [info]  win:5 [543374858487070720] 02-获取任务数据成功
+[2024-07-16 11:02:59.846] [info]  win:5 [543374858487070720] 02-1-图片下载成功
+[2024-07-16 11:02:59.846] [info]  win:5 [543374858487070720] 03-解析绘制数据成功
+[2024-07-16 11:02:59.846] [info]  开始绘制:070906-大米0709006-1.jpg
+[2024-07-16 11:02:59.848] [info]  开始绘制:070906-大米0709006-2.jpg
+[2024-07-16 11:02:59.857] [info]  win:5 [543396931624239104] 02-获取任务数据成功
+[2024-07-16 11:02:59.910] [info]  win:5 [543396931624239104] 02-1-图片下载成功
+[2024-07-16 11:02:59.911] [info]  win:5 [543396931624239104] 03-解析绘制数据成功
+[2024-07-16 11:02:59.912] [info]  开始绘制:070907-大米0709007-1.jpg
+[2024-07-16 11:02:59.915] [info]  开始绘制:070907-大米0709007-2.jpg
+[2024-07-16 11:03:00.285] [info]  绘制完成:070906-大米0709006-2.jpg
+[2024-07-16 11:03:00.331] [info]  绘制完成:070906-大米0709006-1.jpg
+[2024-07-16 11:03:00.331] [info]  win:5 [543374858487070720] 04-绘制成功
+[2024-07-16 11:03:00.334] [info]  win:5 [543374858487070720] 05-生成pdf成功
+[2024-07-16 11:03:00.335] [info]  win:5 [543374858487070720] 09-任务结束
+[2024-07-16 11:03:00.335] [info]  win:5 [543396931666182144] 01-开始任务
+[2024-07-16 11:03:00.378] [info]  绘制完成:070907-大米0709007-2.jpg
+[2024-07-16 11:03:00.403] [info]  绘制完成:070907-大米0709007-1.jpg
+[2024-07-16 11:03:00.403] [info]  win:5 [543396931624239104] 04-绘制成功
+[2024-07-16 11:03:00.408] [info]  win:5 [543396931624239104] 05-生成pdf成功
+[2024-07-16 11:03:00.409] [info]  win:5 [543396931624239104] 09-任务结束
+[2024-07-16 11:03:00.409] [info]  win:5 [543396931745873920] 01-开始任务
+[2024-07-16 11:03:00.433] [info]  win:5 [543396931666182144] 02-获取任务数据成功
+[2024-07-16 11:03:00.467] [info]  win:5 [543396931666182144] 02-1-图片下载成功
+[2024-07-16 11:03:00.467] [info]  win:5 [543396931666182144] 03-解析绘制数据成功
+[2024-07-16 11:03:00.467] [info]  开始绘制:070908-大米0709008-1.jpg
+[2024-07-16 11:03:00.468] [info]  开始绘制:070908-大米0709008-2.jpg
+[2024-07-16 11:03:00.522] [info]  win:5 [543396931745873920] 02-获取任务数据成功
+[2024-07-16 11:03:00.562] [info]  win:5 [543396931745873920] 02-1-图片下载成功
+[2024-07-16 11:03:00.562] [info]  win:5 [543396931745873920] 03-解析绘制数据成功
+[2024-07-16 11:03:00.563] [info]  开始绘制:070910-大米0709010-1.jpg
+[2024-07-16 11:03:00.564] [info]  开始绘制:070910-大米0709010-2.jpg
+[2024-07-16 11:03:00.883] [info]  绘制完成:070910-大米0709010-2.jpg
+[2024-07-16 11:03:00.913] [info]  绘制完成:070908-大米0709008-2.jpg
+[2024-07-16 11:03:00.953] [info]  绘制完成:070908-大米0709008-1.jpg
+[2024-07-16 11:03:00.953] [info]  win:5 [543396931666182144] 04-绘制成功
+[2024-07-16 11:03:00.955] [info]  win:5 [543396931666182144] 05-生成pdf成功
+[2024-07-16 11:03:00.956] [info]  win:5 [543396931666182144] 09-任务结束
+[2024-07-16 11:03:00.956] [info]  win:5 [543396931787816960] 01-开始任务
+[2024-07-16 11:03:00.962] [info]  绘制完成:070910-大米0709010-1.jpg
+[2024-07-16 11:03:00.962] [info]  win:5 [543396931745873920] 04-绘制成功
+[2024-07-16 11:03:00.964] [info]  win:5 [543396931745873920] 05-生成pdf成功
+[2024-07-16 11:03:00.965] [info]  win:5 [543396931745873920] 09-任务结束
+[2024-07-16 11:03:00.965] [info]  win:5 [543372074081583104] 01-开始任务
+[2024-07-16 11:03:01.053] [info]  win:5 [543396931787816960] 02-获取任务数据成功
+[2024-07-16 11:03:01.079] [info]  win:5 [543372074081583104] 02-获取任务数据成功
+[2024-07-16 11:03:01.087] [info]  win:5 [543396931787816960] 02-1-图片下载成功
+[2024-07-16 11:03:01.087] [info]  win:5 [543396931787816960] 03-解析绘制数据成功
+[2024-07-16 11:03:01.087] [info]  开始绘制:070911-大米0709011-1.jpg
+[2024-07-16 11:03:01.088] [info]  开始绘制:070911-大米0709011-2.jpg
+[2024-07-16 11:03:01.113] [info]  win:5 [543372074081583104] 02-1-图片下载成功
+[2024-07-16 11:03:01.113] [info]  win:5 [543372074081583104] 03-解析绘制数据成功
+[2024-07-16 11:03:01.113] [info]  开始绘制:1272-大米72-1.jpg
+[2024-07-16 11:03:01.115] [info]  开始绘制:1272-大米72-2.jpg
+[2024-07-16 11:03:02.893] [info]  绘制完成:1272-大米72-1.jpg
+[2024-07-16 11:03:02.965] [info]  绘制完成:1272-大米72-2.jpg
+[2024-07-16 11:03:02.965] [info]  win:5 [543372074081583104] 04-绘制成功
+[2024-07-16 11:03:02.970] [info]  win:5 [543372074081583104] 05-生成pdf成功
+[2024-07-16 11:03:02.971] [info]  win:5 [543372074081583104] 09-任务结束
+[2024-07-16 11:03:03.141] [info]  绘制完成:070911-大米0709011-2.jpg
+[2024-07-16 11:03:03.177] [info]  绘制完成:070911-大米0709011-1.jpg
+[2024-07-16 11:03:03.177] [info]  win:5 [543396931787816960] 04-绘制成功
+[2024-07-16 11:03:03.179] [info]  win:5 [543396931787816960] 05-生成pdf成功
+[2024-07-16 11:03:03.180] [info]  win:5 [543396931787816960] 09-任务结束
+[2024-07-16 11:03:03.181] [info]  win:5 00-无任务
+[2024-07-16 11:03:04.185] [info]  win:5 99-结束进程

+ 68 - 22
src/views/base/track-export/trackTaskExport.vue

@@ -7,10 +7,15 @@
   import { useRoute } from 'vue-router';
 
   import { UserState } from '@/store/modules/user/types';
+  import { TrackConfigType } from '@/store/modules/app/types';
   import { useUserStore, useAppStore } from '@/store';
   import useTimeout from '@/hooks/timout';
+  import { usePQueue } from '@/hooks/p-queue';
   import useDraw from './useDraw';
 
+  import { TrackTaskData } from '../../../../electron/db/models/trackTask';
+  import { TrackTaskDetailData } from '../../../../electron/db/models/trackTaskDetail';
+
   defineOptions({
     name: 'TrackTaskExport',
   });
@@ -26,38 +31,71 @@
   userStore.setInfo(userInfo);
   const appStore = useAppStore();
 
-  const { runTask, getTrackTask, getTrackTaskDetail, addLog } = useDraw(winId);
   const { addSetTimeout, clearSetTimeout } = useTimeout();
 
   const stop = ref(false);
+  const task = ref({} as TrackTaskData);
+  const trackConfig = ref({} as TrackConfigType);
+  const downloadProcessCount = ref(2);
+  const groupCount = 20;
+
+  function addLog(content: string, type?: 'info' | 'error') {
+    window.api.logger(`win:${winId} ${content}`, type);
+  }
 
-  async function getTask() {
+  async function startGroupTask() {
     clearSetTimeout(TASK_KEY);
     if (stop.value) {
       stopTask();
       return;
     }
 
-    const res = await getTrackTaskDetail();
+    const res = await window.db.getUnfinishTrackTaskDetails(
+      task.value.id,
+      groupCount
+    );
     if (!res) {
       addLog(`00-无任务`);
-      addSetTimeout(TASK_KEY, getTask, 1 * 1000);
+      addSetTimeout(TASK_KEY, startGroupTask, 1 * 1000);
       return;
     }
 
-    let result = true;
-    await runTask().catch(() => {
-      result = false;
+    await runGroupTask(res).catch(() => {});
+
+    addSetTimeout(TASK_KEY, startGroupTask, 0);
+  }
+
+  async function runGroupTask(datas: TrackTaskDetailData[]) {
+    const { buildQueue, stopQueue } = usePQueue({
+      concurrency: downloadProcessCount.value,
     });
 
-    const status = result ? 'FINISH' : 'INIT';
-    await window.db.updateTrackTaskDetailStatus({
-      id: res.id,
-      status,
+    const runItemTask = async (itemTask: TrackTaskDetailData) => {
+      const { runTask } = useDraw({
+        domain: appStore.domain,
+        task: task.value,
+        taskDetail: itemTask,
+        trackConfig: trackConfig.value,
+        winId,
+      });
+
+      await runTask().catch(() => {});
+
+      if (stop.value) {
+        stopQueue();
+        addLog(`00-任务终止`);
+      }
+    };
+
+    const fetchFuncs = datas.map((item) => {
+      return () => runItemTask(item);
     });
-    addLog(`[${res.studentId}] 09-任务结束`);
+    await buildQueue(fetchFuncs);
 
-    addSetTimeout(TASK_KEY, getTask, 0);
+    // 队列中存在未及时更新任务状态的数据
+    await window.db.releaseAllRunningTaskDetailByIds(
+      datas.map((item) => item.id)
+    );
   }
 
   function stopTask() {
@@ -71,22 +109,30 @@
     });
   }
 
-  async function startTask() {
+  async function initTask() {
     const domain = await window.db.getDict('domain');
     appStore.setInfo({ domain });
 
     addLog(`00-开启进程`);
     registEvent();
-    let result = true;
-    await getTrackTask(userStore.curSchoolInfo.id).catch((error) => {
-      addLog(`00-${error.message || '获取任务错误'}`, 'error');
-      result = false;
-    });
-    if (!result) return;
-    getTask();
+
+    const appConfig = window.api.getConfigData({});
+    downloadProcessCount.value = appConfig.downloadProcessCount;
+
+    const res = await window.db
+      .getUnfinishTrackTask(userStore.curSchoolInfo.id)
+      .catch(() => {
+        addLog(`00-获取任务错误`, 'error');
+      });
+    if (!res) return;
+
+    task.value = res;
+    trackConfig.value = JSON.parse(res.trackConfig) as TrackConfigType;
+
+    startGroupTask();
   }
 
   onMounted(() => {
-    startTask();
+    initTask();
   });
 </script>

+ 47 - 44
src/views/base/track-export/useDraw.ts

@@ -1,5 +1,3 @@
-import { ref } from 'vue';
-
 import {
   getSingleStudentTaskOfStudentTrack,
   studentObjectiveConfirmData,
@@ -9,7 +7,6 @@ import { Task, Track, SpecialTag, Question } from '@/api/types/task';
 import { TrackConfigType } from '@/store/modules/app/types';
 import { PictureTypeEnum, PICTURE_TYPE } from '@/constants/enumerate';
 import { calcSum, deepCopy, maxNum, strGbLen } from '@/utils/utils';
-import { useAppStore } from '@/store';
 
 import { DrawTrackItem } from '../../../../electron/preload/types';
 import { TrackTaskData } from '../../../../electron/db/models/trackTask';
@@ -117,63 +114,64 @@ interface PaperRecogData {
   }>;
 }
 
-export default function useDraw(winId: number) {
-  const curWinId = winId;
+interface DrawConfig {
+  domain: string;
+  task: TrackTaskData;
+  taskDetail: TrackTaskDetailData;
+  trackConfig: TrackConfigType;
+  winId: number;
+}
+
+export default function useDraw(drawConfig: DrawConfig) {
+  const { domain, task, taskDetail, trackConfig, winId } = drawConfig;
+
   let answerMap = {} as AnswerMap;
   let cardData = [] as CardDataItem[];
   let recogDatas: string[] = [];
   let rawTask = {} as Task;
   let trackData = [] as TrackItemType[];
   let originImgs = [] as ImageItem[];
-  let isOnlyOrigin = false;
-  let hasPdf = false;
   let curStudentId = '';
+  const isOnlyOrigin = checkOnlyOrigin();
+  const hasPdf = trackConfig.pictureType.includes('pdf');
+
   const defaultColorConfig = {
     track: ['red', 'blue', 'gray'],
     head: 'green',
   };
   let colorConfig = { track: ['red', 'blue', 'gray'], head: 'green' };
-  const task = ref({} as TrackTaskData);
-  const taskDetail = ref({} as TrackTaskDetailData);
-  const trackConfig = ref({} as TrackConfigType);
-  const appStore = useAppStore();
 
   function updateColorConfig() {
-    if (trackConfig.value.trackColorType === 'ALL_RED') {
+    if (trackConfig.trackColorType === 'ALL_RED') {
       colorConfig.head = 'red';
       colorConfig.track = ['red', 'red', 'red'];
     } else {
       colorConfig = deepCopy(defaultColorConfig);
     }
   }
+  updateColorConfig();
 
   function addLog(content: string, type?: 'info' | 'error') {
-    window.api.logger(`win:${curWinId} ${content}`, type);
+    window.api.logger(`win:${winId} ${content}`, type);
   }
 
-  async function getTrackTask(schoolId: string) {
-    const res = await window.db.getUnfinishTrackTask(schoolId);
-    if (!res) return Promise.reject(new Error('无任务'));
-    task.value = res;
-    trackConfig.value = JSON.parse(res.trackConfig) as TrackConfigType;
-    isOnlyOrigin = checkOnlyOrigin();
-    hasPdf = trackConfig.value.pictureType.includes('pdf');
-    updateColorConfig();
-    return res.id;
-  }
-
-  async function getTrackTaskDetail() {
-    const res = await window.db.getUnfinishTrackTaskDetail(task.value.id);
-    if (!res) return null;
-    taskDetail.value = res;
-    return taskDetail.value;
-  }
+  // async function getTrackTask(schoolId: string) {
+  //   const res = await window.db.getUnfinishTrackTask(schoolId);
+  //   if (!res) return Promise.reject(new Error('无任务'));
+  //   task.value = res;
+  //   trackConfig.value = JSON.parse(res.trackConfig) as TrackConfigType;
+  //   isOnlyOrigin = checkOnlyOrigin();
+  //   hasPdf = trackConfig.value.pictureType.includes('pdf');
+  //   updateColorConfig();
+  //   return res.id;
+  // }
 
   async function runTask() {
     initData();
-    curStudentId = taskDetail.value.studentId;
+    curStudentId = taskDetail.studentId;
     addLog(`[${curStudentId}] 01-开始任务`);
 
+    let result = true;
     try {
       await getTaskData(curStudentId);
       addLog(`[${curStudentId}] 02-获取任务数据成功`);
@@ -203,8 +201,16 @@ export default function useDraw(winId: number) {
         }`,
         'error'
       );
-      return Promise.reject(error);
+      result = false;
     }
+
+    const status = result ? 'FINISH' : 'INIT';
+    await window.db.updateTrackTaskDetailStatus({
+      id: taskDetail.id,
+      status,
+    });
+
+    addLog(`[${curStudentId}] 09-任务结束`);
     return true;
   }
 
@@ -220,8 +226,8 @@ export default function useDraw(winId: number) {
 
   function checkOnlyOrigin() {
     return (
-      trackConfig.value.pictureType.length === 1 &&
-      trackConfig.value.pictureType[0] === 'origin'
+      trackConfig.pictureType.length === 1 &&
+      trackConfig.pictureType[0] === 'origin'
     );
   }
 
@@ -267,7 +273,7 @@ export default function useDraw(winId: number) {
    */
   function getOutputPath(type: PictureTypeEnum, index?: number) {
     let filename =
-      trackConfig.value.studentFileRule === 'CODE_NAME'
+      trackConfig.studentFileRule === 'CODE_NAME'
         ? `${rawTask.studentCode}-${rawTask.studentName}`
         : rawTask.studentCode;
 
@@ -276,12 +282,12 @@ export default function useDraw(winId: number) {
     }
     filename += type === 'pdf' ? '.pdf' : '.jpg';
     const paths = [
-      trackConfig.value.curOutputDir,
-      task.value.semesterName,
-      task.value.examName,
+      trackConfig.curOutputDir,
+      task.semesterName,
+      task.examName,
       `${rawTask.courseName}(${rawTask.courseCode})`,
       rawTask.paperNumber,
-      taskDetail.value.className,
+      taskDetail.className,
       PICTURE_TYPE[type],
       filename,
     ];
@@ -293,7 +299,7 @@ export default function useDraw(winId: number) {
     for (let i = 0; i < urls.length; i++) {
       let url = urls[i];
       if (!url.startsWith('http://') && !url.startsWith('https://')) {
-        url = `${appStore.domain}/${url}`;
+        url = `${domain}/${url}`;
       }
       downloads.push(
         window.api.downloadImage(url, getOutputPath('origin', i + 1))
@@ -358,7 +364,7 @@ export default function useDraw(winId: number) {
     if (!trackData.length) return [];
 
     const tasks = trackData.map((item, index) => {
-      const outpath = getOutputPath('track', index);
+      const outpath = getOutputPath('track', index + 1);
 
       return {
         imgItem: {
@@ -953,8 +959,5 @@ export default function useDraw(winId: number) {
 
   return {
     runTask,
-    getTrackTask,
-    getTrackTaskDetail,
-    addLog,
   };
 }

+ 0 - 0
src/views/base/track-export/readme.md → src/views/base/track-export/z-readme.md


+ 32 - 0
src/views/login/test-page/index.vue

@@ -5,6 +5,7 @@
     <a-button type="primary" @click="toDownloadFile">下载文件</a-button>
     <a-button type="primary" @click="toDrawCircle('circle')">绘制圆圈</a-button>
     <a-button type="primary" @click="toDrawCircle('line')">绘制长线</a-button>
+    <a-button type="primary" @click="toTextGm">测试gm</a-button>
     <br />
     <img v-if="originImg" :src="originImg" alt="原图" />
     <br />
@@ -14,6 +15,10 @@
 
 <script setup lang="ts">
   import { ref } from 'vue';
+  import { usePQueue } from '@/hooks/p-queue';
+  import taskData from './task.json';
+
+  import { DrawTrackItem } from '../../../../electron/preload/types';
 
   defineOptions({
     name: 'TestPage',
@@ -63,4 +68,31 @@
     );
     cropImg.value = `local://${outpath}`;
   }
+
+  interface ImageItem {
+    url: string;
+    width: number;
+    height: number;
+  }
+  interface TaskItem {
+    imgItem: ImageItem;
+    outpath: string;
+    drawTrackList: DrawTrackItem[];
+  }
+
+  async function toTextGm() {
+    const { buildQueue } = usePQueue({ concurrency: 3 });
+    const tasks = (taskData as TaskItem[][]).flat();
+
+    const fetchFuncs = tasks.map((item) => {
+      return async () => {
+        await window.api.drawTrack(
+          item.imgItem.url,
+          item.drawTrackList,
+          item.outpath
+        );
+      };
+    });
+    await buildQueue(fetchFuncs);
+  }
 </script>

+ 99 - 0
src/views/login/test-page/main.gm-remote-test.txt

@@ -0,0 +1,99 @@
+[2024-07-16 09:42:39.437] [info]  开始绘制:070902-大米0709002-0.jpg
+[2024-07-16 09:42:39.445] [info]  开始绘制:070902-大米0709002-1.jpg
+[2024-07-16 09:42:39.449] [info]  开始绘制:070905-大米0709005-0.jpg
+[2024-07-16 09:42:39.452] [info]  开始绘制:070905-大米0709005-1.jpg
+[2024-07-16 09:42:39.454] [info]  开始绘制:070907-大米0709007-0.jpg
+[2024-07-16 09:42:39.457] [info]  开始绘制:070907-大米0709007-1.jpg
+[2024-07-16 09:42:44.502] [info]  绘制完成:070905-大米0709005-1.jpg
+[2024-07-16 09:42:44.503] [info]  开始绘制:070906-大米0709006-0.jpg
+[2024-07-16 09:42:44.760] [info]  绘制完成:070907-大米0709007-0.jpg
+[2024-07-16 09:42:44.761] [info]  开始绘制:070906-大米0709006-1.jpg
+[2024-07-16 09:42:44.861] [info]  绘制完成:070907-大米0709007-1.jpg
+[2024-07-16 09:42:44.864] [info]  开始绘制:070908-大米0709008-0.jpg
+[2024-07-16 09:42:44.967] [info]  绘制完成:070902-大米0709002-1.jpg
+[2024-07-16 09:42:44.968] [info]  开始绘制:070908-大米0709008-1.jpg
+[2024-07-16 09:42:45.210] [info]  绘制完成:070902-大米0709002-0.jpg
+[2024-07-16 09:42:45.210] [info]  开始绘制:070910-大米0709010-0.jpg
+[2024-07-16 09:42:45.237] [info]  绘制完成:070906-大米0709006-0.jpg
+[2024-07-16 09:42:45.237] [info]  开始绘制:070910-大米0709010-1.jpg
+[2024-07-16 09:42:45.428] [info]  绘制完成:070905-大米0709005-0.jpg
+[2024-07-16 09:42:45.428] [info]  开始绘制:070911-大米0709011-0.jpg
+[2024-07-16 09:42:45.434] [info]  绘制完成:070906-大米0709006-1.jpg
+[2024-07-16 09:42:45.434] [info]  开始绘制:070911-大米0709011-1.jpg
+[2024-07-16 09:42:45.688] [info]  绘制完成:070908-大米0709008-0.jpg
+[2024-07-16 09:42:45.689] [info]  开始绘制:1272-大米72-0.jpg
+[2024-07-16 09:42:45.753] [info]  绘制完成:070908-大米0709008-1.jpg
+[2024-07-16 09:42:45.753] [info]  开始绘制:1272-大米72-1.jpg
+[2024-07-16 09:42:45.770] [info]  绘制完成:070910-大米0709010-1.jpg
+[2024-07-16 09:42:45.770] [info]  开始绘制:18101907-罗元祥-0.jpg
+[2024-07-16 09:42:45.909] [info]  绘制完成:070910-大米0709010-0.jpg
+[2024-07-16 09:42:45.909] [info]  开始绘制:18101907-罗元祥-1.jpg
+[2024-07-16 09:42:46.139] [info]  绘制完成:070911-大米0709011-1.jpg
+[2024-07-16 09:42:46.139] [info]  开始绘制:18101631-史仁烨-0.jpg
+[2024-07-16 09:42:46.153] [info]  绘制完成:070911-大米0709011-0.jpg
+[2024-07-16 09:42:46.154] [info]  开始绘制:18101631-史仁烨-1.jpg
+[2024-07-16 09:42:46.247] [info]  绘制完成:1272-大米72-0.jpg
+[2024-07-16 09:42:46.247] [info]  开始绘制:18101934-崔丽峰-0.jpg
+[2024-07-16 09:42:46.373] [info]  绘制完成:18101907-罗元祥-1.jpg
+[2024-07-16 09:42:46.373] [info]  开始绘制:18101934-崔丽峰-1.jpg
+[2024-07-16 09:42:46.448] [info]  绘制完成:1272-大米72-1.jpg
+[2024-07-16 09:42:46.449] [info]  开始绘制:18101911-刘英明-0.jpg
+[2024-07-16 09:42:46.677] [info]  绘制完成:18101631-史仁烨-1.jpg
+[2024-07-16 09:42:46.677] [info]  开始绘制:18101911-刘英明-1.jpg
+[2024-07-16 09:42:46.880] [info]  绘制完成:18101934-崔丽峰-1.jpg
+[2024-07-16 09:42:47.003] [info]  绘制完成:18101907-罗元祥-0.jpg
+[2024-07-16 09:42:47.027] [info]  绘制完成:18101631-史仁烨-0.jpg
+[2024-07-16 09:42:47.101] [info]  绘制完成:18101911-刘英明-1.jpg
+[2024-07-16 09:42:47.166] [info]  绘制完成:18101934-崔丽峰-0.jpg
+[2024-07-16 09:42:47.373] [info]  绘制完成:18101911-刘英明-0.jpg
+# 并发====6  end 耗时:7936ms,平均:330.6ms
+
+[2024-07-16 10:08:38.305] [info]  开始绘制:070902-大米0709002-0.jpg
+[2024-07-16 10:08:38.317] [info]  开始绘制:070902-大米0709002-1.jpg
+[2024-07-16 10:08:38.319] [info]  开始绘制:070905-大米0709005-0.jpg
+[2024-07-16 10:08:38.954] [info]  绘制完成:070902-大米0709002-1.jpg
+[2024-07-16 10:08:38.954] [info]  开始绘制:070905-大米0709005-1.jpg
+[2024-07-16 10:08:38.965] [info]  绘制完成:070902-大米0709002-0.jpg
+[2024-07-16 10:08:38.966] [info]  开始绘制:070907-大米0709007-0.jpg
+[2024-07-16 10:08:39.052] [info]  绘制完成:070905-大米0709005-0.jpg
+[2024-07-16 10:08:39.053] [info]  开始绘制:070907-大米0709007-1.jpg
+[2024-07-16 10:08:39.334] [info]  绘制完成:070905-大米0709005-1.jpg
+[2024-07-16 10:08:39.335] [info]  开始绘制:070906-大米0709006-0.jpg
+[2024-07-16 10:08:39.459] [info]  绘制完成:070907-大米0709007-0.jpg
+[2024-07-16 10:08:39.459] [info]  开始绘制:070906-大米0709006-1.jpg
+[2024-07-16 10:08:39.475] [info]  绘制完成:070907-大米0709007-1.jpg
+[2024-07-16 10:08:39.475] [info]  开始绘制:070908-大米0709008-0.jpg
+[2024-07-16 10:08:39.931] [info]  绘制完成:070906-大米0709006-0.jpg
+[2024-07-16 10:08:39.931] [info]  开始绘制:070908-大米0709008-1.jpg
+[2024-07-16 10:08:40.067] [info]  绘制完成:070906-大米0709006-1.jpg
+[2024-07-16 10:08:40.067] [info]  开始绘制:070910-大米0709010-0.jpg
+[2024-07-16 10:08:40.142] [info]  绘制完成:070908-大米0709008-0.jpg
+[2024-07-16 10:08:40.142] [info]  开始绘制:070910-大米0709010-1.jpg
+[2024-07-16 10:08:40.527] [info]  绘制完成:070908-大米0709008-1.jpg
+[2024-07-16 10:08:40.527] [info]  开始绘制:070911-大米0709011-0.jpg
+[2024-07-16 10:08:40.647] [info]  绘制完成:070910-大米0709010-1.jpg
+[2024-07-16 10:08:40.647] [info]  开始绘制:070911-大米0709011-1.jpg
+[2024-07-16 10:08:40.670] [info]  绘制完成:070910-大米0709010-0.jpg
+[2024-07-16 10:08:40.671] [info]  开始绘制:1272-大米72-0.jpg
+[2024-07-16 10:08:41.017] [info]  绘制完成:070911-大米0709011-0.jpg
+[2024-07-16 10:08:41.018] [info]  开始绘制:1272-大米72-1.jpg
+[2024-07-16 10:08:41.042] [info]  绘制完成:070911-大米0709011-1.jpg
+[2024-07-16 10:08:41.042] [info]  开始绘制:18101907-罗元祥-0.jpg
+[2024-07-16 10:08:41.051] [info]  绘制完成:1272-大米72-0.jpg
+[2024-07-16 10:08:41.051] [info]  开始绘制:18101907-罗元祥-1.jpg
+[2024-07-16 10:08:41.360] [info]  绘制完成:18101907-罗元祥-1.jpg
+[2024-07-16 10:08:41.361] [info]  开始绘制:18101631-史仁烨-0.jpg
+[2024-07-16 10:08:41.444] [info]  绘制完成:1272-大米72-1.jpg
+[2024-07-16 10:08:41.445] [info]  开始绘制:18101631-史仁烨-1.jpg
+[2024-07-16 10:08:41.763] [info]  绘制完成:18101631-史仁烨-1.jpg
+[2024-07-16 10:08:41.763] [info]  开始绘制:18101934-崔丽峰-0.jpg
+[2024-07-16 10:08:41.805] [info]  绘制完成:18101907-罗元祥-0.jpg
+[2024-07-16 10:08:41.805] [info]  开始绘制:18101934-崔丽峰-1.jpg
+[2024-07-16 10:08:41.902] [info]  绘制完成:18101631-史仁烨-0.jpg
+[2024-07-16 10:08:41.902] [info]  开始绘制:18101911-刘英明-0.jpg
+[2024-07-16 10:08:42.126] [info]  绘制完成:18101934-崔丽峰-1.jpg
+[2024-07-16 10:08:42.127] [info]  开始绘制:18101911-刘英明-1.jpg
+[2024-07-16 10:08:42.350] [info]  绘制完成:18101934-崔丽峰-0.jpg
+[2024-07-16 10:08:42.411] [info]  绘制完成:18101911-刘英明-1.jpg
+[2024-07-16 10:08:42.589] [info]  绘制完成:18101911-刘英明-0.jpg
+# 并发====3  end 耗时:4284ms,平均:174ms

+ 300 - 0
src/views/login/test-page/main.gm-test.txt

@@ -0,0 +1,300 @@
+# 并发====1 
+[2024-07-16 09:13:10.677] [info]  开始绘制:070902-大米0709002-0.jpg
+[2024-07-16 09:13:10.961] [info]  绘制完成:070902-大米0709002-0.jpg
+[2024-07-16 09:13:10.962] [info]  开始绘制:070902-大米0709002-1.jpg
+[2024-07-16 09:13:11.232] [info]  绘制完成:070902-大米0709002-1.jpg
+[2024-07-16 09:13:11.232] [info]  开始绘制:070905-大米0709005-0.jpg
+[2024-07-16 09:13:11.512] [info]  绘制完成:070905-大米0709005-0.jpg
+[2024-07-16 09:13:11.512] [info]  开始绘制:070905-大米0709005-1.jpg
+[2024-07-16 09:13:11.748] [info]  绘制完成:070905-大米0709005-1.jpg
+[2024-07-16 09:13:11.749] [info]  开始绘制:070907-大米0709007-0.jpg
+[2024-07-16 09:13:12.032] [info]  绘制完成:070907-大米0709007-0.jpg
+[2024-07-16 09:13:12.033] [info]  开始绘制:070907-大米0709007-1.jpg
+[2024-07-16 09:13:12.287] [info]  绘制完成:070907-大米0709007-1.jpg
+[2024-07-16 09:13:12.287] [info]  开始绘制:070906-大米0709006-0.jpg
+[2024-07-16 09:13:12.567] [info]  绘制完成:070906-大米0709006-0.jpg
+[2024-07-16 09:13:12.567] [info]  开始绘制:070906-大米0709006-1.jpg
+[2024-07-16 09:13:12.808] [info]  绘制完成:070906-大米0709006-1.jpg
+[2024-07-16 09:13:12.808] [info]  开始绘制:070908-大米0709008-0.jpg
+[2024-07-16 09:13:13.106] [info]  绘制完成:070908-大米0709008-0.jpg
+[2024-07-16 09:13:13.106] [info]  开始绘制:070908-大米0709008-1.jpg
+[2024-07-16 09:13:13.377] [info]  绘制完成:070908-大米0709008-1.jpg
+[2024-07-16 09:13:13.378] [info]  开始绘制:070910-大米0709010-0.jpg
+[2024-07-16 09:13:13.627] [info]  绘制完成:070910-大米0709010-0.jpg
+[2024-07-16 09:13:13.627] [info]  开始绘制:070910-大米0709010-1.jpg
+[2024-07-16 09:13:13.820] [info]  绘制完成:070910-大米0709010-1.jpg
+[2024-07-16 09:13:13.820] [info]  开始绘制:070911-大米0709011-0.jpg
+[2024-07-16 09:13:14.115] [info]  绘制完成:070911-大米0709011-0.jpg
+[2024-07-16 09:13:14.116] [info]  开始绘制:070911-大米0709011-1.jpg
+[2024-07-16 09:13:14.367] [info]  绘制完成:070911-大米0709011-1.jpg
+[2024-07-16 09:13:14.367] [info]  开始绘制:1272-大米72-0.jpg
+[2024-07-16 09:13:14.612] [info]  绘制完成:1272-大米72-0.jpg
+[2024-07-16 09:13:14.612] [info]  开始绘制:1272-大米72-1.jpg
+[2024-07-16 09:13:14.862] [info]  绘制完成:1272-大米72-1.jpg
+[2024-07-16 09:13:14.862] [info]  开始绘制:18101907-罗元祥-0.jpg
+[2024-07-16 09:13:15.319] [info]  绘制完成:18101907-罗元祥-0.jpg
+[2024-07-16 09:13:15.319] [info]  开始绘制:18101907-罗元祥-1.jpg
+[2024-07-16 09:13:15.477] [info]  绘制完成:18101907-罗元祥-1.jpg
+[2024-07-16 09:13:15.477] [info]  开始绘制:18101631-史仁烨-0.jpg
+[2024-07-16 09:13:15.837] [info]  绘制完成:18101631-史仁烨-0.jpg
+[2024-07-16 09:13:15.837] [info]  开始绘制:18101631-史仁烨-1.jpg
+[2024-07-16 09:13:16.025] [info]  绘制完成:18101631-史仁烨-1.jpg
+[2024-07-16 09:13:16.025] [info]  开始绘制:18101934-崔丽峰-0.jpg
+[2024-07-16 09:13:16.404] [info]  绘制完成:18101934-崔丽峰-0.jpg
+[2024-07-16 09:13:16.404] [info]  开始绘制:18101934-崔丽峰-1.jpg
+[2024-07-16 09:13:16.583] [info]  绘制完成:18101934-崔丽峰-1.jpg
+[2024-07-16 09:13:16.583] [info]  开始绘制:18101911-刘英明-0.jpg
+[2024-07-16 09:13:17.065] [info]  绘制完成:18101911-刘英明-0.jpg
+[2024-07-16 09:13:17.065] [info]  开始绘制:18101911-刘英明-1.jpg
+[2024-07-16 09:13:17.244] [info]  绘制完成:18101911-刘英明-1.jpg
+# 并发====1  end 耗时:6567ms,平均:273.625ms
+# 并发====2
+[2024-07-16 09:10:31.464] [info]  开始绘制:070902-大米0709002-0.jpg
+[2024-07-16 09:10:31.473] [info]  开始绘制:070902-大米0709002-1.jpg
+[2024-07-16 09:10:31.951] [info]  绘制完成:070902-大米0709002-0.jpg
+[2024-07-16 09:10:31.952] [info]  开始绘制:070905-大米0709005-0.jpg
+[2024-07-16 09:10:31.983] [info]  绘制完成:070902-大米0709002-1.jpg
+[2024-07-16 09:10:31.983] [info]  开始绘制:070905-大米0709005-1.jpg
+[2024-07-16 09:10:32.270] [info]  绘制完成:070905-大米0709005-1.jpg
+[2024-07-16 09:10:32.270] [info]  开始绘制:070907-大米0709007-0.jpg
+[2024-07-16 09:10:32.311] [info]  绘制完成:070905-大米0709005-0.jpg
+[2024-07-16 09:10:32.312] [info]  开始绘制:070907-大米0709007-1.jpg
+[2024-07-16 09:10:32.627] [info]  绘制完成:070907-大米0709007-0.jpg
+[2024-07-16 09:10:32.627] [info]  开始绘制:070906-大米0709006-0.jpg
+[2024-07-16 09:10:32.632] [info]  绘制完成:070907-大米0709007-1.jpg
+[2024-07-16 09:10:32.632] [info]  开始绘制:070906-大米0709006-1.jpg
+[2024-07-16 09:10:33.004] [info]  绘制完成:070906-大米0709006-1.jpg
+[2024-07-16 09:10:33.004] [info]  开始绘制:070908-大米0709008-0.jpg
+[2024-07-16 09:10:33.037] [info]  绘制完成:070906-大米0709006-0.jpg
+[2024-07-16 09:10:33.037] [info]  开始绘制:070908-大米0709008-1.jpg
+[2024-07-16 09:10:33.359] [info]  绘制完成:070908-大米0709008-0.jpg
+[2024-07-16 09:10:33.359] [info]  开始绘制:070910-大米0709010-0.jpg
+[2024-07-16 09:10:33.379] [info]  绘制完成:070908-大米0709008-1.jpg
+[2024-07-16 09:10:33.379] [info]  开始绘制:070910-大米0709010-1.jpg
+[2024-07-16 09:10:33.611] [info]  绘制完成:070910-大米0709010-1.jpg
+[2024-07-16 09:10:33.611] [info]  开始绘制:070911-大米0709011-0.jpg
+[2024-07-16 09:10:33.671] [info]  绘制完成:070910-大米0709010-0.jpg
+[2024-07-16 09:10:33.671] [info]  开始绘制:070911-大米0709011-1.jpg
+[2024-07-16 09:10:33.983] [info]  绘制完成:070911-大米0709011-0.jpg
+[2024-07-16 09:10:33.983] [info]  开始绘制:1272-大米72-0.jpg
+[2024-07-16 09:10:33.995] [info]  绘制完成:070911-大米0709011-1.jpg
+[2024-07-16 09:10:33.995] [info]  开始绘制:1272-大米72-1.jpg
+[2024-07-16 09:10:34.324] [info]  绘制完成:1272-大米72-0.jpg
+[2024-07-16 09:10:34.324] [info]  开始绘制:18101907-罗元祥-0.jpg
+[2024-07-16 09:10:34.337] [info]  绘制完成:1272-大米72-1.jpg
+[2024-07-16 09:10:34.337] [info]  开始绘制:18101907-罗元祥-1.jpg
+[2024-07-16 09:10:34.605] [info]  绘制完成:18101907-罗元祥-1.jpg
+[2024-07-16 09:10:34.605] [info]  开始绘制:18101631-史仁烨-0.jpg
+[2024-07-16 09:10:34.981] [info]  绘制完成:18101907-罗元祥-0.jpg
+[2024-07-16 09:10:34.982] [info]  开始绘制:18101631-史仁烨-1.jpg
+[2024-07-16 09:10:35.037] [info]  绘制完成:18101631-史仁烨-0.jpg
+[2024-07-16 09:10:35.038] [info]  开始绘制:18101934-崔丽峰-0.jpg
+[2024-07-16 09:10:35.198] [info]  绘制完成:18101631-史仁烨-1.jpg
+[2024-07-16 09:10:35.199] [info]  开始绘制:18101934-崔丽峰-1.jpg
+[2024-07-16 09:10:35.423] [info]  绘制完成:18101934-崔丽峰-1.jpg
+[2024-07-16 09:10:35.423] [info]  开始绘制:18101911-刘英明-0.jpg
+[2024-07-16 09:10:35.478] [info]  绘制完成:18101934-崔丽峰-0.jpg
+[2024-07-16 09:10:35.479] [info]  开始绘制:18101911-刘英明-1.jpg
+[2024-07-16 09:10:35.698] [info]  绘制完成:18101911-刘英明-1.jpg
+[2024-07-16 09:10:35.963] [info]  绘制完成:18101911-刘英明-0.jpg
+# 并发====2  end 耗时:4499ms,平均:187.45ms
+# 并发====3
+[2024-07-16 09:21:00.809] [info]  开始绘制:070902-大米0709002-0.jpg
+[2024-07-16 09:21:00.819] [info]  开始绘制:070902-大米0709002-1.jpg
+[2024-07-16 09:21:00.822] [info]  开始绘制:070905-大米0709005-0.jpg
+[2024-07-16 09:21:01.950] [info]  绘制完成:070902-大米0709002-0.jpg
+[2024-07-16 09:21:01.951] [info]  开始绘制:070905-大米0709005-1.jpg
+[2024-07-16 09:21:02.022] [info]  绘制完成:070902-大米0709002-1.jpg
+[2024-07-16 09:21:02.022] [info]  开始绘制:070907-大米0709007-0.jpg
+[2024-07-16 09:21:02.063] [info]  绘制完成:070905-大米0709005-0.jpg
+[2024-07-16 09:21:02.063] [info]  开始绘制:070907-大米0709007-1.jpg
+[2024-07-16 09:21:02.301] [info]  绘制完成:070905-大米0709005-1.jpg
+[2024-07-16 09:21:02.302] [info]  开始绘制:070906-大米0709006-0.jpg
+[2024-07-16 09:21:02.433] [info]  绘制完成:070907-大米0709007-0.jpg
+[2024-07-16 09:21:02.434] [info]  开始绘制:070906-大米0709006-1.jpg
+[2024-07-16 09:21:02.452] [info]  绘制完成:070907-大米0709007-1.jpg
+[2024-07-16 09:21:02.452] [info]  开始绘制:070908-大米0709008-0.jpg
+[2024-07-16 09:21:02.724] [info]  绘制完成:070906-大米0709006-0.jpg
+[2024-07-16 09:21:02.724] [info]  开始绘制:070908-大米0709008-1.jpg
+[2024-07-16 09:21:02.813] [info]  绘制完成:070906-大米0709006-1.jpg
+[2024-07-16 09:21:02.813] [info]  开始绘制:070910-大米0709010-0.jpg
+[2024-07-16 09:21:02.887] [info]  绘制完成:070908-大米0709008-0.jpg
+[2024-07-16 09:21:02.887] [info]  开始绘制:070910-大米0709010-1.jpg
+[2024-07-16 09:21:03.119] [info]  绘制完成:070908-大米0709008-1.jpg
+[2024-07-16 09:21:03.120] [info]  开始绘制:070911-大米0709011-0.jpg
+[2024-07-16 09:21:03.152] [info]  绘制完成:070910-大米0709010-1.jpg
+[2024-07-16 09:21:03.153] [info]  开始绘制:070911-大米0709011-1.jpg
+[2024-07-16 09:21:03.195] [info]  绘制完成:070910-大米0709010-0.jpg
+[2024-07-16 09:21:03.195] [info]  开始绘制:1272-大米72-0.jpg
+[2024-07-16 09:21:03.514] [info]  绘制完成:070911-大米0709011-1.jpg
+[2024-07-16 09:21:03.514] [info]  开始绘制:1272-大米72-1.jpg
+[2024-07-16 09:21:03.530] [info]  绘制完成:1272-大米72-0.jpg
+[2024-07-16 09:21:03.531] [info]  开始绘制:18101907-罗元祥-0.jpg
+[2024-07-16 09:21:03.538] [info]  绘制完成:070911-大米0709011-0.jpg
+[2024-07-16 09:21:03.539] [info]  开始绘制:18101907-罗元祥-1.jpg
+[2024-07-16 09:21:03.821] [info]  绘制完成:18101907-罗元祥-1.jpg
+[2024-07-16 09:21:03.822] [info]  开始绘制:18101631-史仁烨-0.jpg
+[2024-07-16 09:21:03.913] [info]  绘制完成:1272-大米72-1.jpg
+[2024-07-16 09:21:03.913] [info]  开始绘制:18101631-史仁烨-1.jpg
+[2024-07-16 09:21:04.187] [info]  绘制完成:18101631-史仁烨-1.jpg
+[2024-07-16 09:21:04.188] [info]  开始绘制:18101934-崔丽峰-0.jpg
+[2024-07-16 09:21:04.251] [info]  绘制完成:18101907-罗元祥-0.jpg
+[2024-07-16 09:21:04.251] [info]  开始绘制:18101934-崔丽峰-1.jpg
+[2024-07-16 09:21:04.341] [info]  绘制完成:18101631-史仁烨-0.jpg
+[2024-07-16 09:21:04.341] [info]  开始绘制:18101911-刘英明-0.jpg
+[2024-07-16 09:21:04.533] [info]  绘制完成:18101934-崔丽峰-1.jpg
+[2024-07-16 09:21:04.533] [info]  开始绘制:18101911-刘英明-1.jpg
+[2024-07-16 09:21:04.730] [info]  绘制完成:18101934-崔丽峰-0.jpg
+[2024-07-16 09:21:04.791] [info]  绘制完成:18101911-刘英明-1.jpg
+[2024-07-16 09:21:04.985] [info]  绘制完成:18101911-刘英明-0.jpg
+# 并发====3  end 耗时:4176ms,平均:174ms
+# 并发====4  
+[2024-07-16 09:23:57.195] [info]  开始绘制:070902-大米0709002-0.jpg
+[2024-07-16 09:23:57.205] [info]  开始绘制:070902-大米0709002-1.jpg
+[2024-07-16 09:23:57.208] [info]  开始绘制:070905-大米0709005-0.jpg
+[2024-07-16 09:23:57.211] [info]  开始绘制:070905-大米0709005-1.jpg
+[2024-07-16 09:23:59.035] [info]  绘制完成:070902-大米0709002-1.jpg
+[2024-07-16 09:23:59.036] [info]  开始绘制:070907-大米0709007-0.jpg
+[2024-07-16 09:23:59.353] [info]  绘制完成:070905-大米0709005-1.jpg
+[2024-07-16 09:23:59.353] [info]  开始绘制:070907-大米0709007-1.jpg
+[2024-07-16 09:23:59.372] [info]  绘制完成:070902-大米0709002-0.jpg
+[2024-07-16 09:23:59.372] [info]  开始绘制:070906-大米0709006-0.jpg
+[2024-07-16 09:23:59.495] [info]  绘制完成:070905-大米0709005-0.jpg
+[2024-07-16 09:23:59.495] [info]  开始绘制:070906-大米0709006-1.jpg
+[2024-07-16 09:23:59.619] [info]  绘制完成:070907-大米0709007-0.jpg
+[2024-07-16 09:23:59.619] [info]  开始绘制:070908-大米0709008-0.jpg
+[2024-07-16 09:23:59.845] [info]  绘制完成:070907-大米0709007-1.jpg
+[2024-07-16 09:23:59.845] [info]  开始绘制:070908-大米0709008-1.jpg
+[2024-07-16 09:23:59.907] [info]  绘制完成:070906-大米0709006-0.jpg
+[2024-07-16 09:23:59.907] [info]  开始绘制:070910-大米0709010-0.jpg
+[2024-07-16 09:23:59.950] [info]  绘制完成:070906-大米0709006-1.jpg
+[2024-07-16 09:23:59.950] [info]  开始绘制:070910-大米0709010-1.jpg
+[2024-07-16 09:24:00.135] [info]  绘制完成:070908-大米0709008-0.jpg
+[2024-07-16 09:24:00.136] [info]  开始绘制:070911-大米0709011-0.jpg
+[2024-07-16 09:24:00.287] [info]  绘制完成:070910-大米0709010-1.jpg
+[2024-07-16 09:24:00.288] [info]  开始绘制:070911-大米0709011-1.jpg
+[2024-07-16 09:24:00.384] [info]  绘制完成:070908-大米0709008-1.jpg
+[2024-07-16 09:24:00.385] [info]  开始绘制:1272-大米72-0.jpg
+[2024-07-16 09:24:00.388] [info]  绘制完成:070910-大米0709010-0.jpg
+[2024-07-16 09:24:00.388] [info]  开始绘制:1272-大米72-1.jpg
+[2024-07-16 09:24:00.705] [info]  绘制完成:070911-大米0709011-0.jpg
+[2024-07-16 09:24:00.705] [info]  开始绘制:18101907-罗元祥-0.jpg
+[2024-07-16 09:24:00.822] [info]  绘制完成:070911-大米0709011-1.jpg
+[2024-07-16 09:24:00.822] [info]  开始绘制:18101907-罗元祥-1.jpg
+[2024-07-16 09:24:00.884] [info]  绘制完成:1272-大米72-0.jpg
+[2024-07-16 09:24:00.885] [info]  开始绘制:18101631-史仁烨-0.jpg
+[2024-07-16 09:24:00.967] [info]  绘制完成:1272-大米72-1.jpg
+[2024-07-16 09:24:00.967] [info]  开始绘制:18101631-史仁烨-1.jpg
+[2024-07-16 09:24:01.109] [info]  绘制完成:18101907-罗元祥-1.jpg
+[2024-07-16 09:24:01.110] [info]  开始绘制:18101934-崔丽峰-0.jpg
+[2024-07-16 09:24:01.308] [info]  绘制完成:18101631-史仁烨-1.jpg
+[2024-07-16 09:24:01.309] [info]  开始绘制:18101934-崔丽峰-1.jpg
+[2024-07-16 09:24:01.760] [info]  绘制完成:18101631-史仁烨-0.jpg
+[2024-07-16 09:24:01.761] [info]  开始绘制:18101911-刘英明-0.jpg
+[2024-07-16 09:24:01.775] [info]  绘制完成:18101907-罗元祥-0.jpg
+[2024-07-16 09:24:01.775] [info]  开始绘制:18101911-刘英明-1.jpg
+[2024-07-16 09:24:01.939] [info]  绘制完成:18101934-崔丽峰-1.jpg
+[2024-07-16 09:24:02.064] [info]  绘制完成:18101934-崔丽峰-0.jpg
+[2024-07-16 09:24:02.218] [info]  绘制完成:18101911-刘英明-1.jpg
+[2024-07-16 09:24:02.533] [info]  绘制完成:18101911-刘英明-0.jpg
+# 并发====4  end 耗时:5338ms,平均:222.416ms
+# 并发====5 
+[2024-07-16 09:25:33.311] [info]  开始绘制:070902-大米0709002-0.jpg
+[2024-07-16 09:25:33.321] [info]  开始绘制:070902-大米0709002-1.jpg
+[2024-07-16 09:25:33.324] [info]  开始绘制:070905-大米0709005-0.jpg
+[2024-07-16 09:25:33.327] [info]  开始绘制:070905-大米0709005-1.jpg
+[2024-07-16 09:25:33.329] [info]  开始绘制:070907-大米0709007-0.jpg
+[2024-07-16 09:25:35.318] [info]  绘制完成:070905-大米0709005-1.jpg
+[2024-07-16 09:25:35.319] [info]  开始绘制:070907-大米0709007-1.jpg
+[2024-07-16 09:25:36.158] [info]  绘制完成:070907-大米0709007-1.jpg
+[2024-07-16 09:25:36.159] [info]  开始绘制:070906-大米0709006-0.jpg
+[2024-07-16 09:25:36.968] [info]  绘制完成:070905-大米0709005-0.jpg
+[2024-07-16 09:25:36.969] [info]  开始绘制:070906-大米0709006-1.jpg
+[2024-07-16 09:25:37.063] [info]  绘制完成:070906-大米0709006-0.jpg
+[2024-07-16 09:25:37.064] [info]  开始绘制:070908-大米0709008-0.jpg
+[2024-07-16 09:25:37.611] [info]  绘制完成:070906-大米0709006-1.jpg
+[2024-07-16 09:25:37.611] [info]  开始绘制:070908-大米0709008-1.jpg
+[2024-07-16 09:25:37.939] [info]  绘制完成:070908-大米0709008-0.jpg
+[2024-07-16 09:25:37.939] [info]  开始绘制:070910-大米0709010-0.jpg
+[2024-07-16 09:25:38.283] [info]  绘制完成:070908-大米0709008-1.jpg
+[2024-07-16 09:25:38.283] [info]  开始绘制:070910-大米0709010-1.jpg
+[2024-07-16 09:25:38.504] [info]  绘制完成:070910-大米0709010-0.jpg
+[2024-07-16 09:25:38.504] [info]  开始绘制:070911-大米0709011-0.jpg
+[2024-07-16 09:25:38.617] [info]  绘制完成:070902-大米0709002-1.jpg
+[2024-07-16 09:25:38.617] [info]  开始绘制:070911-大米0709011-1.jpg
+[2024-07-16 09:25:38.629] [info]  绘制完成:070910-大米0709010-1.jpg
+[2024-07-16 09:25:38.630] [info]  开始绘制:1272-大米72-0.jpg
+[2024-07-16 09:25:38.737] [info]  绘制完成:070902-大米0709002-0.jpg
+[2024-07-16 09:25:38.738] [info]  开始绘制:1272-大米72-1.jpg
+[2024-07-16 09:25:38.940] [info]  绘制完成:070907-大米0709007-0.jpg
+[2024-07-16 09:25:38.940] [info]  开始绘制:18101907-罗元祥-0.jpg
+[2024-07-16 09:25:39.221] [info]  绘制完成:1272-大米72-0.jpg
+[2024-07-16 09:25:39.222] [info]  开始绘制:18101907-罗元祥-1.jpg
+[2024-07-16 09:25:39.227] [info]  绘制完成:070911-大米0709011-0.jpg
+[2024-07-16 09:25:39.227] [info]  开始绘制:18101631-史仁烨-0.jpg
+[2024-07-16 09:25:39.242] [info]  绘制完成:070911-大米0709011-1.jpg
+[2024-07-16 09:25:39.243] [info]  开始绘制:18101631-史仁烨-1.jpg
+[2024-07-16 09:25:39.507] [info]  绘制完成:1272-大米72-1.jpg
+[2024-07-16 09:25:39.508] [info]  开始绘制:18101934-崔丽峰-0.jpg
+[2024-07-16 09:25:39.924] [info]  绘制完成:18101907-罗元祥-1.jpg
+[2024-07-16 09:25:39.924] [info]  开始绘制:18101934-崔丽峰-1.jpg
+[2024-07-16 09:25:39.950] [info]  绘制完成:18101907-罗元祥-0.jpg
+[2024-07-16 09:25:39.950] [info]  开始绘制:18101911-刘英明-0.jpg
+[2024-07-16 09:25:39.993] [info]  绘制完成:18101631-史仁烨-1.jpg
+[2024-07-16 09:25:39.994] [info]  开始绘制:18101911-刘英明-1.jpg
+[2024-07-16 09:25:40.151] [info]  绘制完成:18101631-史仁烨-0.jpg
+[2024-07-16 09:25:40.186] [info]  绘制完成:18101934-崔丽峰-0.jpg
+[2024-07-16 09:25:40.223] [info]  绘制完成:18101934-崔丽峰-1.jpg
+[2024-07-16 09:25:40.288] [info]  绘制完成:18101911-刘英明-1.jpg
+[2024-07-16 09:25:40.559] [info]  绘制完成:18101911-刘英明-0.jpg
+# 并发====5  end 耗时:7248ms,平均:302ms
+# 并发====6 
+[2024-07-16 09:26:52.107] [info]  开始绘制:070902-大米0709002-0.jpg
+[2024-07-16 09:26:52.120] [info]  开始绘制:070902-大米0709002-1.jpg
+[2024-07-16 09:26:52.123] [info]  开始绘制:070905-大米0709005-0.jpg
+[2024-07-16 09:26:52.126] [info]  开始绘制:070905-大米0709005-1.jpg
+[2024-07-16 09:26:52.128] [info]  开始绘制:070907-大米0709007-0.jpg
+[2024-07-16 09:26:52.130] [info]  开始绘制:070907-大米0709007-1.jpg
+[2024-07-16 09:26:54.853] [info]  绘制完成:070907-大米0709007-0.jpg
+[2024-07-16 09:26:54.854] [info]  开始绘制:070906-大米0709006-0.jpg
+[2024-07-16 09:26:55.854] [info]  绘制完成:070906-大米0709006-0.jpg
+[2024-07-16 09:26:55.855] [info]  开始绘制:070906-大米0709006-1.jpg
+[2024-07-16 09:26:55.862] [info]  绘制完成:070905-大米0709005-1.jpg
+[2024-07-16 09:26:55.862] [info]  开始绘制:070908-大米0709008-0.jpg
+[2024-07-16 09:26:56.079] [info]  绘制完成:070902-大米0709002-0.jpg
+[2024-07-16 09:26:56.081] [info]  开始绘制:070908-大米0709008-1.jpg
+[2024-07-16 09:26:56.188] [info]  绘制完成:070902-大米0709002-1.jpg
+[2024-07-16 09:26:56.188] [info]  开始绘制:070910-大米0709010-0.jpg
+[2024-07-16 09:26:56.207] [info]  绘制完成:070905-大米0709005-0.jpg
+[2024-07-16 09:26:56.207] [info]  开始绘制:070910-大米0709010-1.jpg
+[2024-07-16 09:26:56.252] [info]  绘制完成:070907-大米0709007-1.jpg
+[2024-07-16 09:26:56.253] [info]  开始绘制:070911-大米0709011-0.jpg
+[2024-07-16 09:26:56.628] [info]  绘制完成:070906-大米0709006-1.jpg
+[2024-07-16 09:26:56.629] [info]  开始绘制:070911-大米0709011-1.jpg
+[2024-07-16 09:26:56.765] [info]  绘制完成:070910-大米0709010-1.jpg
+[2024-07-16 09:26:56.765] [info]  开始绘制:1272-大米72-0.jpg
+[2024-07-16 09:26:56.819] [info]  绘制完成:070908-大米0709008-0.jpg
+[2024-07-16 09:26:56.819] [info]  开始绘制:1272-大米72-1.jpg
+[2024-07-16 09:26:56.849] [info]  绘制完成:070908-大米0709008-1.jpg
+[2024-07-16 09:26:56.850] [info]  开始绘制:18101907-罗元祥-0.jpg
+[2024-07-16 09:26:56.970] [info]  绘制完成:070910-大米0709010-0.jpg
+[2024-07-16 09:26:56.971] [info]  开始绘制:18101907-罗元祥-1.jpg
+[2024-07-16 09:26:57.173] [info]  绘制完成:070911-大米0709011-0.jpg
+[2024-07-16 09:26:57.174] [info]  开始绘制:18101631-史仁烨-0.jpg
+[2024-07-16 09:26:57.349] [info]  绘制完成:070911-大米0709011-1.jpg
+[2024-07-16 09:26:57.349] [info]  开始绘制:18101631-史仁烨-1.jpg
+[2024-07-16 09:26:57.354] [info]  绘制完成:18101907-罗元祥-1.jpg
+[2024-07-16 09:26:57.355] [info]  开始绘制:18101934-崔丽峰-0.jpg
+[2024-07-16 09:26:57.394] [info]  绘制完成:1272-大米72-0.jpg
+[2024-07-16 09:26:57.394] [info]  开始绘制:18101934-崔丽峰-1.jpg
+[2024-07-16 09:26:58.085] [info]  绘制完成:1272-大米72-1.jpg
+[2024-07-16 09:26:58.085] [info]  开始绘制:18101911-刘英明-0.jpg
+[2024-07-16 09:26:58.272] [info]  绘制完成:18101631-史仁烨-0.jpg
+[2024-07-16 09:26:58.272] [info]  开始绘制:18101911-刘英明-1.jpg
+[2024-07-16 09:26:58.779] [info]  绘制完成:18101911-刘英明-1.jpg
+[2024-07-16 09:26:58.992] [info]  绘制完成:18101907-罗元祥-0.jpg
+[2024-07-16 09:26:59.501] [info]  绘制完成:18101911-刘英明-0.jpg
+[2024-07-16 09:26:59.514] [info]  绘制完成:18101934-崔丽峰-1.jpg
+[2024-07-16 09:26:59.636] [info]  绘制完成:18101631-史仁烨-1.jpg
+[2024-07-16 09:26:59.823] [info]  绘制完成:18101934-崔丽峰-0.jpg
+# 并发====6  end 耗时:7716ms,平均:322.75ms

+ 3814 - 0
src/views/login/test-page/task.json

@@ -0,0 +1,3814 @@
+[
+  [
+    {
+      "imgItem": {
+        "url": "https://oss-file.qmth.com.cn/teachcloud-dps-dev-private/sheet/506180312611422208/543372073460826113/070902/1-1.jpg?Expires=1721093976&OSSAccessKeyId=key&Signature=m%2FgdvXc9VMZeki39owgrcvhTZQ0%3D",
+        "width": 2496,
+        "height": 1764
+      },
+      "outpath": "/Users/chulin/workFiles/teach-mark-tool/test/2021~2022第一学期/上学期/模式1-条码印刷/中国古代文学00快快快快快快快快(0300)/bh070902/教学班01/轨迹图/070902-大米0709002-0.jpg",
+      "drawTrackList": [
+        {
+          "type": "text",
+          "option": {
+            "x": 1473,
+            "y": 264,
+            "text": "6",
+            "color": "red",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1534,
+            "y": 990,
+            "text": "1",
+            "color": "red",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1731,
+            "y": 990,
+            "text": "4",
+            "color": "red",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 319,
+            "y": 1103.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 319,
+            "y": 1131.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 319,
+            "y": 1159.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 319,
+            "y": 1188.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 319.6,
+            "y": 1216.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 539,
+            "y": 1103.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 539,
+            "y": 1132.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 539,
+            "y": 1160.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 539,
+            "y": 1188.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 539.6,
+            "y": 1217.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1263.7194992448,
+            "y": 94.31412419520001,
+            "text": "评卷员:m评卷01(mpj01),评分:6",
+            "fontSize": 20,
+            "color": "red"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 2115.1161566784003,
+            "y": 94.31412419520001,
+            "text": "得分:6,满分:10",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1263.7194992448,
+            "y": 814.380554484,
+            "text": "评卷员:m评卷01(mpj01),评分:5",
+            "fontSize": 20,
+            "color": "red"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 2115.1161566784003,
+            "y": 814.380554484,
+            "text": "得分:5,满分:10",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 977.2941166848,
+            "y": 1039.3187747795998,
+            "text": "得分:0,满分:40",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 374.4,
+            "y": 17.64,
+            "text": "总分:41,主观题得分:41,客观题得分:0",
+            "fontSize": 40
+          }
+        }
+      ]
+    },
+    {
+      "imgItem": {
+        "url": "https://oss-file.qmth.com.cn/teachcloud-dps-dev-private/sheet/506180312611422208/543372073460826113/070902/1-2.jpg?Expires=1721093976&OSSAccessKeyId=key&Signature=eNf4JFznfHcxl3AmWbCd7j3AtbE%3D",
+        "width": 2496,
+        "height": 1764
+      },
+      "outpath": "/Users/chulin/workFiles/teach-mark-tool/test/2021~2022第一学期/上学期/模式1-条码印刷/中国古代文学00快快快快快快快快(0300)/bh070902/教学班01/轨迹图/070902-大米0709002-1.jpg",
+      "drawTrackList": [
+        {
+          "type": "text",
+          "option": {
+            "x": 343,
+            "y": 232,
+            "text": "10",
+            "color": "red",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 571,
+            "y": 1031,
+            "text": "5",
+            "color": "red",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1572,
+            "y": 284,
+            "text": "15",
+            "color": "red",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 125.8837953984,
+            "y": 94.3140882096,
+            "text": "评卷员:m评卷01(mpj01),评分:10",
+            "fontSize": 20,
+            "color": "red"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 962.280452832,
+            "y": 94.3140882096,
+            "text": "得分:10,满分:10",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 125.8837953984,
+            "y": 814.3804885104,
+            "text": "评卷员:m评卷02(mpj02),评分:5",
+            "fontSize": 20,
+            "color": "red"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 977.280452832,
+            "y": 814.3804885104,
+            "text": "得分:5,满分:10",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1263.7194992448,
+            "y": 94.3140882096,
+            "text": "评卷员:m评卷02(mpj02),评分:15",
+            "fontSize": 20,
+            "color": "red"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 2100.1161566784003,
+            "y": 94.3140882096,
+            "text": "得分:15,满分:20",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 374.4,
+            "y": 17.64,
+            "text": "总分:41,主观题得分:41,客观题得分:0",
+            "fontSize": 40
+          }
+        }
+      ]
+    }
+  ],
+  [
+    {
+      "imgItem": {
+        "url": "https://oss-file.qmth.com.cn/teachcloud-dps-dev-private/sheet/506180312611422208/543372073460826113/070905/1-1.jpg?Expires=1721093976&OSSAccessKeyId=key&Signature=jsUNvofjYSq%2BgK8zXAQ4pU9Q2rE%3D",
+        "width": 2500,
+        "height": 1762
+      },
+      "outpath": "/Users/chulin/workFiles/teach-mark-tool/test/2021~2022第一学期/上学期/模式1-条码印刷/中国古代文学00快快快快快快快快(0300)/bh070902/教学班01/轨迹图/070905-大米0709005-0.jpg",
+      "drawTrackList": [
+        {
+          "type": "text",
+          "option": {
+            "x": 1500,
+            "y": 213,
+            "text": "8",
+            "color": "red",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1570,
+            "y": 1047,
+            "text": "10",
+            "color": "red",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 319,
+            "y": 1103.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 319,
+            "y": 1131.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 319,
+            "y": 1159.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 319,
+            "y": 1188.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 319.6,
+            "y": 1216.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 539,
+            "y": 1103.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 539,
+            "y": 1132.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 539,
+            "y": 1160.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 539,
+            "y": 1188.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 539.6,
+            "y": 1217.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1265.74469075,
+            "y": 94.2071920816,
+            "text": "评卷员:m评卷01(mpj01),评分:8",
+            "fontSize": 20,
+            "color": "red"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 2118.91441975,
+            "y": 94.2071920816,
+            "text": "得分:8,满分:10",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1265.74469075,
+            "y": 813.457220522,
+            "text": "评卷员:m评卷01(mpj01),评分:10",
+            "fontSize": 20,
+            "color": "red"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 2103.91441975,
+            "y": 813.457220522,
+            "text": "得分:10,满分:10",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 979.268947,
+            "y": 1038.1404088217998,
+            "text": "得分:0,满分:40",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 375,
+            "y": 17.62,
+            "text": "总分:43,主观题得分:43,客观题得分:0",
+            "fontSize": 40
+          }
+        }
+      ]
+    },
+    {
+      "imgItem": {
+        "url": "https://oss-file.qmth.com.cn/teachcloud-dps-dev-private/sheet/506180312611422208/543372073460826113/070905/1-2.jpg?Expires=1721093976&OSSAccessKeyId=key&Signature=XT1g3r6xearwTI4AzMAOq1uxeFM%3D",
+        "width": 2500,
+        "height": 1764
+      },
+      "outpath": "/Users/chulin/workFiles/teach-mark-tool/test/2021~2022第一学期/上学期/模式1-条码印刷/中国古代文学00快快快快快快快快(0300)/bh070902/教学班01/轨迹图/070905-大米0709005-1.jpg",
+      "drawTrackList": [
+        {
+          "type": "text",
+          "option": {
+            "x": 390,
+            "y": 162,
+            "text": "7",
+            "color": "red",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 307,
+            "y": 965,
+            "text": "8",
+            "color": "red",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1478,
+            "y": 240,
+            "text": "10",
+            "color": "red",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 126.08553225,
+            "y": 94.3140882096,
+            "text": "评卷员:m评卷01(mpj01),评分:7",
+            "fontSize": 20,
+            "color": "red"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 979.2552612499999,
+            "y": 94.3140882096,
+            "text": "得分:7,满分:10",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 126.08553225,
+            "y": 814.3804885104,
+            "text": "评卷员:m评卷02(mpj02),评分:8",
+            "fontSize": 20,
+            "color": "red"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 979.2552612499999,
+            "y": 814.3804885104,
+            "text": "得分:8,满分:10",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1265.74469075,
+            "y": 94.3140882096,
+            "text": "评卷员:m评卷02(mpj02),评分:10",
+            "fontSize": 20,
+            "color": "red"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 2103.91441975,
+            "y": 94.3140882096,
+            "text": "得分:10,满分:20",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 375,
+            "y": 17.64,
+            "text": "总分:43,主观题得分:43,客观题得分:0",
+            "fontSize": 40
+          }
+        }
+      ]
+    }
+  ],
+  [
+    {
+      "imgItem": {
+        "url": "https://oss-file.qmth.com.cn/teachcloud-dps-dev-private/sheet/506180312611422208/543372073460826113/070906/1-1.jpg?Expires=1721093976&OSSAccessKeyId=key&Signature=ie2iQChvxde11bendVc7h8iJbdM%3D",
+        "width": 2498,
+        "height": 1764
+      },
+      "outpath": "/Users/chulin/workFiles/teach-mark-tool/test/2021~2022第一学期/上学期/模式1-条码印刷/中国古代文学00快快快快快快快快(0300)/bh070902/教学班01/轨迹图/070907-大米0709007-0.jpg",
+      "drawTrackList": [
+        {
+          "type": "text",
+          "option": {
+            "x": 1510,
+            "y": 266,
+            "text": "8",
+            "color": "red",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1536,
+            "y": 1145,
+            "text": "6",
+            "color": "red",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 319,
+            "y": 1103.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 319,
+            "y": 1131.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 319,
+            "y": 1159.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 319,
+            "y": 1188.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 319.6,
+            "y": 1216.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 539,
+            "y": 1103.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 539,
+            "y": 1132.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 539,
+            "y": 1160.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 539,
+            "y": 1188.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 539.6,
+            "y": 1217.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1264.7320949974,
+            "y": 94.31412419520001,
+            "text": "评卷员:m评卷01(mpj01),评分:8",
+            "fontSize": 20,
+            "color": "red"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 2117.0152882142,
+            "y": 94.31412419520001,
+            "text": "得分:8,满分:10",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1264.7320949974,
+            "y": 814.380554484,
+            "text": "评卷员:m评卷01(mpj01),评分:6",
+            "fontSize": 20,
+            "color": "red"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 2117.0152882142,
+            "y": 814.380554484,
+            "text": "得分:6,满分:10",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 978.2815318424,
+            "y": 1039.3187747795998,
+            "text": "得分:0,满分:40",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 374.7,
+            "y": 17.64,
+            "text": "总分:43,主观题得分:43,客观题得分:0",
+            "fontSize": 40
+          }
+        }
+      ]
+    },
+    {
+      "imgItem": {
+        "url": "https://oss-file.qmth.com.cn/teachcloud-dps-dev-private/sheet/506180312611422208/543372073460826113/070906/1-2.jpg?Expires=1721093976&OSSAccessKeyId=key&Signature=24ROs%2FuQvQOlaxD3F3jOXwYFBJI%3D",
+        "width": 2498,
+        "height": 1764
+      },
+      "outpath": "/Users/chulin/workFiles/teach-mark-tool/test/2021~2022第一学期/上学期/模式1-条码印刷/中国古代文学00快快快快快快快快(0300)/bh070902/教学班01/轨迹图/070907-大米0709007-1.jpg",
+      "drawTrackList": [
+        {
+          "type": "text",
+          "option": {
+            "x": 379,
+            "y": 239,
+            "text": "4",
+            "color": "red",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 391,
+            "y": 1016,
+            "text": "6",
+            "color": "red",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1494,
+            "y": 235,
+            "text": "19",
+            "color": "red",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 125.9846638242,
+            "y": 94.3140882096,
+            "text": "评卷员:m评卷01(mpj01),评分:4",
+            "fontSize": 20,
+            "color": "red"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 978.2678570410001,
+            "y": 94.3140882096,
+            "text": "得分:4,满分:10",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 125.9846638242,
+            "y": 814.3804885104,
+            "text": "评卷员:m评卷02(mpj02),评分:6",
+            "fontSize": 20,
+            "color": "red"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 978.2678570410001,
+            "y": 814.3804885104,
+            "text": "得分:6,满分:10",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1264.7320949974,
+            "y": 94.3140882096,
+            "text": "评卷员:m评卷02(mpj02),评分:19",
+            "fontSize": 20,
+            "color": "red"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 2102.0152882142,
+            "y": 94.3140882096,
+            "text": "得分:19,满分:20",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 374.7,
+            "y": 17.64,
+            "text": "总分:43,主观题得分:43,客观题得分:0",
+            "fontSize": 40
+          }
+        }
+      ]
+    }
+  ],
+  [
+    {
+      "imgItem": {
+        "url": "https://oss-file.qmth.com.cn/teachcloud-dps-dev-private/sheet/506180312611422208/543372073460826113/070907/1-1.jpg?Expires=1721093976&OSSAccessKeyId=key&Signature=ZmBQOTyXdiEXiP5RF96m59iPCW0%3D",
+        "width": 2496,
+        "height": 1764
+      },
+      "outpath": "/Users/chulin/workFiles/teach-mark-tool/test/2021~2022第一学期/上学期/模式1-条码印刷/中国古代文学00快快快快快快快快(0300)/bh070902/教学班01/轨迹图/070906-大米0709006-0.jpg",
+      "drawTrackList": [
+        {
+          "type": "text",
+          "option": {
+            "x": 1421,
+            "y": 217,
+            "text": "1",
+            "color": "red",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1526,
+            "y": 999,
+            "text": "6",
+            "color": "red",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 319,
+            "y": 1103.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 319,
+            "y": 1131.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 319,
+            "y": 1159.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 319,
+            "y": 1188.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 319.6,
+            "y": 1216.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 539,
+            "y": 1103.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 539,
+            "y": 1132.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 539,
+            "y": 1160.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 539,
+            "y": 1188.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 539.6,
+            "y": 1217.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1263.7194992448,
+            "y": 94.31412419520001,
+            "text": "评卷员:m评卷01(mpj01),评分:1",
+            "fontSize": 20,
+            "color": "red"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 2115.1161566784003,
+            "y": 94.31412419520001,
+            "text": "得分:1,满分:10",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1263.7194992448,
+            "y": 814.380554484,
+            "text": "评卷员:m评卷01(mpj01),评分:6",
+            "fontSize": 20,
+            "color": "red"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 2115.1161566784003,
+            "y": 814.380554484,
+            "text": "得分:6,满分:10",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 977.2941166848,
+            "y": 1039.3187747795998,
+            "text": "得分:0,满分:40",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 374.4,
+            "y": 17.64,
+            "text": "总分:40,主观题得分:40,客观题得分:0",
+            "fontSize": 40
+          }
+        }
+      ]
+    },
+    {
+      "imgItem": {
+        "url": "https://oss-file.qmth.com.cn/teachcloud-dps-dev-private/sheet/506180312611422208/543372073460826113/070907/1-2.jpg?Expires=1721093976&OSSAccessKeyId=key&Signature=f4NgB%2Bna4SHjfjU8VIPeBGThYBQ%3D",
+        "width": 2498,
+        "height": 1762
+      },
+      "outpath": "/Users/chulin/workFiles/teach-mark-tool/test/2021~2022第一学期/上学期/模式1-条码印刷/中国古代文学00快快快快快快快快(0300)/bh070902/教学班01/轨迹图/070906-大米0709006-1.jpg",
+      "drawTrackList": [
+        {
+          "type": "text",
+          "option": {
+            "x": 309,
+            "y": 199,
+            "text": "8",
+            "color": "red",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 433,
+            "y": 996,
+            "text": "10",
+            "color": "red",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1548,
+            "y": 293,
+            "text": "15",
+            "color": "red",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 125.9846638242,
+            "y": 94.2071561368,
+            "text": "评卷员:m评卷01(mpj01),评分:8",
+            "fontSize": 20,
+            "color": "red"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 978.2678570410001,
+            "y": 94.2071561368,
+            "text": "得分:8,满分:10",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 125.9846638242,
+            "y": 813.4571546231999,
+            "text": "评卷员:m评卷02(mpj02),评分:10",
+            "fontSize": 20,
+            "color": "red"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 963.2678570410001,
+            "y": 813.4571546231999,
+            "text": "得分:10,满分:10",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1264.7320949974,
+            "y": 94.2071561368,
+            "text": "评卷员:m评卷02(mpj02),评分:15",
+            "fontSize": 20,
+            "color": "red"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 2102.0152882142,
+            "y": 94.2071561368,
+            "text": "得分:15,满分:20",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 374.7,
+            "y": 17.62,
+            "text": "总分:40,主观题得分:40,客观题得分:0",
+            "fontSize": 40
+          }
+        }
+      ]
+    }
+  ],
+  [
+    {
+      "imgItem": {
+        "url": "https://oss-file.qmth.com.cn/teachcloud-dps-dev-private/sheet/506180312611422208/543372073460826113/070908/1-1.jpg?Expires=1721093976&OSSAccessKeyId=key&Signature=%2FLSpm6qLBW5AqtCUfyoaNkgKIkY%3D",
+        "width": 2492,
+        "height": 1762
+      },
+      "outpath": "/Users/chulin/workFiles/teach-mark-tool/test/2021~2022第一学期/上学期/模式1-条码印刷/中国古代文学00快快快快快快快快(0300)/bh070902/教学班01/轨迹图/070908-大米0709008-0.jpg",
+      "drawTrackList": [
+        {
+          "type": "text",
+          "option": {
+            "x": 1621,
+            "y": 292,
+            "text": "8",
+            "color": "red",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1536,
+            "y": 1043,
+            "text": "6",
+            "color": "red",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 318.4,
+            "y": 1103.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 318.4,
+            "y": 1131.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 318.4,
+            "y": 1159.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 318.4,
+            "y": 1188.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 319,
+            "y": 1216.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 538.4,
+            "y": 1103.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 538.4,
+            "y": 1132.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 538.4,
+            "y": 1160.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 538.4,
+            "y": 1188.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 539,
+            "y": 1217.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1261.6943077396,
+            "y": 94.2071920816,
+            "text": "评卷员:m评卷01(mpj01),评分:8",
+            "fontSize": 20,
+            "color": "red"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 2111.3178936067998,
+            "y": 94.2071920816,
+            "text": "得分:8,满分:10",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1261.6943077396,
+            "y": 813.457220522,
+            "text": "评卷员:m评卷01(mpj01),评分:6",
+            "fontSize": 20,
+            "color": "red"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 2111.3178936067998,
+            "y": 813.457220522,
+            "text": "得分:6,满分:10",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 975.3192863695999,
+            "y": 1038.1404088217998,
+            "text": "得分:0,满分:40",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 373.8,
+            "y": 17.62,
+            "text": "总分:48,主观题得分:48,客观题得分:0",
+            "fontSize": 40
+          }
+        }
+      ]
+    },
+    {
+      "imgItem": {
+        "url": "https://oss-file.qmth.com.cn/teachcloud-dps-dev-private/sheet/506180312611422208/543372073460826113/070908/1-2.jpg?Expires=1721093976&OSSAccessKeyId=key&Signature=HBkBMzWSLHMLP2PQDWcqO8LcOBY%3D",
+        "width": 2492,
+        "height": 1760
+      },
+      "outpath": "/Users/chulin/workFiles/teach-mark-tool/test/2021~2022第一学期/上学期/模式1-条码印刷/中国古代文学00快快快快快快快快(0300)/bh070902/教学班01/轨迹图/070908-大米0709008-1.jpg",
+      "drawTrackList": [
+        {
+          "type": "text",
+          "option": {
+            "x": 378,
+            "y": 211,
+            "text": "4",
+            "color": "red",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 453,
+            "y": 1011,
+            "text": "10",
+            "color": "red",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1544,
+            "y": 146,
+            "text": "20",
+            "color": "red",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 125.6820585468,
+            "y": 94.100224064,
+            "text": "评卷员:m评卷01(mpj01),评分:4",
+            "fontSize": 20,
+            "color": "red"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 975.305644414,
+            "y": 94.100224064,
+            "text": "得分:4,满分:10",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 125.6820585468,
+            "y": 812.5338207359999,
+            "text": "评卷员:m评卷02(mpj02),评分:10",
+            "fontSize": 20,
+            "color": "red"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 960.305644414,
+            "y": 812.5338207359999,
+            "text": "得分:10,满分:10",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1261.6943077396,
+            "y": 94.100224064,
+            "text": "评卷员:m评卷02(mpj02),评分:20",
+            "fontSize": 20,
+            "color": "red"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 2096.3178936067998,
+            "y": 94.100224064,
+            "text": "得分:20,满分:20",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 373.8,
+            "y": 17.6,
+            "text": "总分:48,主观题得分:48,客观题得分:0",
+            "fontSize": 40
+          }
+        }
+      ]
+    }
+  ],
+  [
+    {
+      "imgItem": {
+        "url": "https://oss-file.qmth.com.cn/teachcloud-dps-dev-private/sheet/506180312611422208/543372073460826113/070910/1-1.jpg?Expires=1721093976&OSSAccessKeyId=key&Signature=dB0o0I1tWPiPeApQiAqI%2FmxIQ9U%3D",
+        "width": 2494,
+        "height": 1764
+      },
+      "outpath": "/Users/chulin/workFiles/teach-mark-tool/test/2021~2022第一学期/上学期/模式1-条码印刷/中国古代文学00快快快快快快快快(0300)/bh070902/教学班01/轨迹图/070910-大米0709010-0.jpg",
+      "drawTrackList": [
+        {
+          "type": "text",
+          "option": {
+            "x": 1547,
+            "y": 304,
+            "text": "5",
+            "color": "red",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1562,
+            "y": 949,
+            "text": "7",
+            "color": "red",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 319,
+            "y": 1103.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 319,
+            "y": 1131.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 319,
+            "y": 1159.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 319,
+            "y": 1188.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 319.6,
+            "y": 1216.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 539,
+            "y": 1103.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 539,
+            "y": 1132.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 539,
+            "y": 1160.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 539,
+            "y": 1188.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 539.6,
+            "y": 1217.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1262.7069034922,
+            "y": 94.31412419520001,
+            "text": "评卷员:m评卷01(mpj01),评分:5",
+            "fontSize": 20,
+            "color": "red"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 2113.2170251426,
+            "y": 94.31412419520001,
+            "text": "得分:5,满分:10",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1262.7069034922,
+            "y": 814.380554484,
+            "text": "评卷员:m评卷01(mpj01),评分:7",
+            "fontSize": 20,
+            "color": "red"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 2113.2170251426,
+            "y": 814.380554484,
+            "text": "得分:7,满分:10",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 976.3067015272,
+            "y": 1039.3187747795998,
+            "text": "得分:0,满分:40",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 374.09999999999997,
+            "y": 17.64,
+            "text": "总分:51,主观题得分:51,客观题得分:0",
+            "fontSize": 40
+          }
+        }
+      ]
+    },
+    {
+      "imgItem": {
+        "url": "https://oss-file.qmth.com.cn/teachcloud-dps-dev-private/sheet/506180312611422208/543372073460826113/070910/1-2.jpg?Expires=1721093976&OSSAccessKeyId=key&Signature=sGzzXwfIJw%2FHU69g11mq8w1rTL8%3D",
+        "width": 2494,
+        "height": 1762
+      },
+      "outpath": "/Users/chulin/workFiles/teach-mark-tool/test/2021~2022第一学期/上学期/模式1-条码印刷/中国古代文学00快快快快快快快快(0300)/bh070902/教学班01/轨迹图/070910-大米0709010-1.jpg",
+      "drawTrackList": [
+        {
+          "type": "text",
+          "option": {
+            "x": 349,
+            "y": 265,
+            "text": "9",
+            "color": "red",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 453,
+            "y": 1100,
+            "text": "10",
+            "color": "red",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1588,
+            "y": 290,
+            "text": "20",
+            "color": "red",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 125.7829269726,
+            "y": 94.2071561368,
+            "text": "评卷员:m评卷01(mpj01),评分:9",
+            "fontSize": 20,
+            "color": "red"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 976.2930486230002,
+            "y": 94.2071561368,
+            "text": "得分:9,满分:10",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 125.7829269726,
+            "y": 813.4571546231999,
+            "text": "评卷员:m评卷02(mpj02),评分:10",
+            "fontSize": 20,
+            "color": "red"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 961.2930486230002,
+            "y": 813.4571546231999,
+            "text": "得分:10,满分:10",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1262.7069034922,
+            "y": 94.2071561368,
+            "text": "评卷员:m评卷02(mpj02),评分:20",
+            "fontSize": 20,
+            "color": "red"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 2098.2170251426,
+            "y": 94.2071561368,
+            "text": "得分:20,满分:20",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 374.09999999999997,
+            "y": 17.62,
+            "text": "总分:51,主观题得分:51,客观题得分:0",
+            "fontSize": 40
+          }
+        }
+      ]
+    }
+  ],
+  [
+    {
+      "imgItem": {
+        "url": "https://oss-file.qmth.com.cn/teachcloud-dps-dev-private/sheet/506180312611422208/543372073460826113/070911/1-1.jpg?Expires=1721093976&OSSAccessKeyId=key&Signature=Ip2XJ41tFOABv0uFzsSdGrVsIm4%3D",
+        "width": 2494,
+        "height": 1762
+      },
+      "outpath": "/Users/chulin/workFiles/teach-mark-tool/test/2021~2022第一学期/上学期/模式1-条码印刷/中国古代文学00快快快快快快快快(0300)/bh070902/教学班01/轨迹图/070911-大米0709011-0.jpg",
+      "drawTrackList": [
+        {
+          "type": "text",
+          "option": {
+            "x": 1602,
+            "y": 347,
+            "text": "10",
+            "color": "red",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1506,
+            "y": 919,
+            "text": "1",
+            "color": "red",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1649,
+            "y": 996,
+            "text": "6",
+            "color": "red",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 319,
+            "y": 1103.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 319,
+            "y": 1131.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 319,
+            "y": 1159.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 319,
+            "y": 1188.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 319.6,
+            "y": 1216.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 539,
+            "y": 1103.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 539,
+            "y": 1132.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 539,
+            "y": 1160.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 539,
+            "y": 1188.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 539.6,
+            "y": 1217.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1262.7069034922,
+            "y": 94.2071920816,
+            "text": "评卷员:m评卷01(mpj01),评分:10",
+            "fontSize": 20,
+            "color": "red"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 2098.2170251426,
+            "y": 94.2071920816,
+            "text": "得分:10,满分:10",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1262.7069034922,
+            "y": 813.457220522,
+            "text": "评卷员:m评卷01(mpj01),评分:7",
+            "fontSize": 20,
+            "color": "red"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 2113.2170251426,
+            "y": 813.457220522,
+            "text": "得分:7,满分:10",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 976.3067015272,
+            "y": 1038.1404088217998,
+            "text": "得分:0,满分:40",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 374.09999999999997,
+            "y": 17.62,
+            "text": "总分:47,主观题得分:47,客观题得分:0",
+            "fontSize": 40
+          }
+        }
+      ]
+    },
+    {
+      "imgItem": {
+        "url": "https://oss-file.qmth.com.cn/teachcloud-dps-dev-private/sheet/506180312611422208/543372073460826113/070911/1-2.jpg?Expires=1721093976&OSSAccessKeyId=key&Signature=bkZJhnnw1HdYG8WhOoY%2BUJEix5w%3D",
+        "width": 2496,
+        "height": 1760
+      },
+      "outpath": "/Users/chulin/workFiles/teach-mark-tool/test/2021~2022第一学期/上学期/模式1-条码印刷/中国古代文学00快快快快快快快快(0300)/bh070902/教学班01/轨迹图/070911-大米0709011-1.jpg",
+      "drawTrackList": [
+        {
+          "type": "text",
+          "option": {
+            "x": 365,
+            "y": 149,
+            "text": "8",
+            "color": "red",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 667,
+            "y": 1118,
+            "text": "6",
+            "color": "red",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1539,
+            "y": 245,
+            "text": "16",
+            "color": "red",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 125.8837953984,
+            "y": 94.100224064,
+            "text": "评卷员:m评卷01(mpj01),评分:8",
+            "fontSize": 20,
+            "color": "red"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 977.280452832,
+            "y": 94.100224064,
+            "text": "得分:8,满分:10",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 125.8837953984,
+            "y": 812.5338207359999,
+            "text": "评卷员:m评卷02(mpj02),评分:6",
+            "fontSize": 20,
+            "color": "red"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 977.280452832,
+            "y": 812.5338207359999,
+            "text": "得分:6,满分:10",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1263.7194992448,
+            "y": 94.100224064,
+            "text": "评卷员:m评卷02(mpj02),评分:16",
+            "fontSize": 20,
+            "color": "red"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 2100.1161566784003,
+            "y": 94.100224064,
+            "text": "得分:16,满分:20",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 374.4,
+            "y": 17.6,
+            "text": "总分:47,主观题得分:47,客观题得分:0",
+            "fontSize": 40
+          }
+        }
+      ]
+    }
+  ],
+  [
+    {
+      "imgItem": {
+        "url": "https://oss-file.qmth.com.cn/teachcloud-dps-dev-private/sheet/506180312611422208/543372073460826113/1272/1-1.jpg?Expires=1721093976&OSSAccessKeyId=key&Signature=7oyr7L%2Fcr2UQtpSfc%2BTSbgdYYvY%3D",
+        "width": 2494,
+        "height": 1760
+      },
+      "outpath": "/Users/chulin/workFiles/teach-mark-tool/test/2021~2022第一学期/上学期/模式1-条码印刷/中国古代文学00快快快快快快快快(0300)/bh070902/m教学班01/轨迹图/1272-大米72-0.jpg",
+      "drawTrackList": [
+        {
+          "type": "text",
+          "option": {
+            "x": 1558,
+            "y": 311,
+            "text": "2",
+            "color": "red",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1600,
+            "y": 1077,
+            "text": "5",
+            "color": "red",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 319,
+            "y": 1103.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 319,
+            "y": 1131.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 319,
+            "y": 1159.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 319,
+            "y": 1188.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 319.6,
+            "y": 1216.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 539,
+            "y": 1103.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 539,
+            "y": 1132.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 539,
+            "y": 1160.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 539,
+            "y": 1188.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 539.6,
+            "y": 1217.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1262.7069034922,
+            "y": 94.100259968,
+            "text": "评卷员:m评卷01(mpj01),评分:2",
+            "fontSize": 20,
+            "color": "red"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 2113.2170251426,
+            "y": 94.100259968,
+            "text": "得分:2,满分:10",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1262.7069034922,
+            "y": 812.5338865599999,
+            "text": "评卷员:m评卷01(mpj01),评分:5",
+            "fontSize": 20,
+            "color": "red"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 2113.2170251426,
+            "y": 812.5338865599999,
+            "text": "得分:5,满分:10",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 976.3067015272,
+            "y": 1036.9620428639998,
+            "text": "得分:0,满分:40",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 374.09999999999997,
+            "y": 17.6,
+            "text": "总分:30,主观题得分:30,客观题得分:0",
+            "fontSize": 40
+          }
+        }
+      ]
+    },
+    {
+      "imgItem": {
+        "url": "https://oss-file.qmth.com.cn/teachcloud-dps-dev-private/sheet/506180312611422208/543372073460826113/1272/1-2.jpg?Expires=1721093976&OSSAccessKeyId=key&Signature=%2BsPzbfMeafbAVWAqaAR%2B2McvdHM%3D",
+        "width": 2494,
+        "height": 1760
+      },
+      "outpath": "/Users/chulin/workFiles/teach-mark-tool/test/2021~2022第一学期/上学期/模式1-条码印刷/中国古代文学00快快快快快快快快(0300)/bh070902/m教学班01/轨迹图/1272-大米72-1.jpg",
+      "drawTrackList": [
+        {
+          "type": "text",
+          "option": {
+            "x": 460,
+            "y": 265,
+            "text": "1",
+            "color": "red",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 319,
+            "y": 942,
+            "text": "8",
+            "color": "red",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1490,
+            "y": 313,
+            "text": "14",
+            "color": "red",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 125.7829269726,
+            "y": 94.100224064,
+            "text": "评卷员:m评卷01(mpj01),评分:1",
+            "fontSize": 20,
+            "color": "red"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 976.2930486230002,
+            "y": 94.100224064,
+            "text": "得分:1,满分:10",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 125.7829269726,
+            "y": 812.5338207359999,
+            "text": "评卷员:m评卷02(mpj02),评分:8",
+            "fontSize": 20,
+            "color": "red"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 976.2930486230002,
+            "y": 812.5338207359999,
+            "text": "得分:8,满分:10",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1262.7069034922,
+            "y": 94.100224064,
+            "text": "评卷员:m评卷02(mpj02),评分:14",
+            "fontSize": 20,
+            "color": "red"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 2098.2170251426,
+            "y": 94.100224064,
+            "text": "得分:14,满分:20",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 374.09999999999997,
+            "y": 17.6,
+            "text": "总分:30,主观题得分:30,客观题得分:0",
+            "fontSize": 40
+          }
+        }
+      ]
+    }
+  ],
+  [
+    {
+      "imgItem": {
+        "url": "https://oss-file.qmth.com.cn/teachcloud-dps-dev-private/sheet/506180312611422208/541658924554649601/18101631/1-1.jpg?Expires=1721094235&OSSAccessKeyId=key&Signature=5AZQ%2FR6MlGUPKC79fiNAHzDF3%2Fs%3D",
+        "width": 2500,
+        "height": 1764
+      },
+      "outpath": "/Users/chulin/workFiles/teach-mark-tool/test/2021~2022第一学期/上学期/模式1-条码印刷/电力电子与电力传动(0100)/bh070404/18电气工程及其自动化(电力工程造价与管理方向)01班/轨迹图/18101907-罗元祥-0.jpg",
+      "drawTrackList": [
+        {
+          "type": "text",
+          "option": {
+            "x": 284,
+            "y": 1318,
+            "text": "4",
+            "color": "red",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 251,
+            "y": 1327,
+            "text": "5",
+            "color": "blue",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 867,
+            "y": 1332,
+            "text": "2",
+            "color": "red",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 743,
+            "y": 1321,
+            "text": "2",
+            "color": "blue",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 317,
+            "y": 1396,
+            "text": "1",
+            "color": "red",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 291,
+            "y": 1399,
+            "text": "3",
+            "color": "blue",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 868,
+            "y": 1399,
+            "text": "5",
+            "color": "red",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 777,
+            "y": 1385,
+            "text": "6",
+            "color": "blue",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1505,
+            "y": 274,
+            "text": "15",
+            "color": "green",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1484,
+            "y": 1024,
+            "text": "20",
+            "color": "green",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 321.6,
+            "y": 1103.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 321.6,
+            "y": 1130.8,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 321.6,
+            "y": 1158.8,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 321.6,
+            "y": 1186.8,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 321.6,
+            "y": 1215.8,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 541.6,
+            "y": 1104.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 541.6,
+            "y": 1130.8,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 541.6,
+            "y": 1159.8,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 541.6,
+            "y": 1187.8,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 541.6,
+            "y": 1215.8,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 126.08553225,
+            "y": 1270.2655025928,
+            "text": "一评:m评卷02(mpj02),评分:",
+            "fontSize": 20,
+            "color": "red"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 126.08553225,
+            "y": 1290.2655025928,
+            "text": "1:4分,2:2分,3:1分,4:5分",
+            "fontSize": 20,
+            "color": "red"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 126.08553225,
+            "y": 1314.2655025928,
+            "text": "二评:m评卷01(mpj01),评分:",
+            "fontSize": 20,
+            "color": "blue"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 126.08553225,
+            "y": 1334.2655025928,
+            "text": "1:5分,2:2分,3:3分,4:6分",
+            "fontSize": 20,
+            "color": "blue"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 964.2552612499999,
+            "y": 1270.2655025928,
+            "text": "得分:14,满分:24",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1265.74469075,
+            "y": 94.31412419520001,
+            "text": "仲裁:m命题01(mmt01),评分:15",
+            "fontSize": 20,
+            "color": "green"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 2103.91441975,
+            "y": 94.31412419520001,
+            "text": "得分:15,满分:20",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1265.74469075,
+            "y": 814.380554484,
+            "text": "仲裁:m命题01(mmt01),评分:20",
+            "fontSize": 20,
+            "color": "green"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 2103.91441975,
+            "y": 814.380554484,
+            "text": "得分:20,满分:20",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 979.268947,
+            "y": 1039.3187747795998,
+            "text": "得分:0,满分:20",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 375,
+            "y": 17.64,
+            "text": "总分:65,主观题得分:65,客观题得分:0",
+            "fontSize": 40
+          }
+        }
+      ]
+    },
+    {
+      "imgItem": {
+        "url": "https://oss-file.qmth.com.cn/teachcloud-dps-dev-private/sheet/506180312611422208/541658924554649601/18101631/1-2.jpg?Expires=1721094235&OSSAccessKeyId=key&Signature=NLegiRKZgnJ7ArwxvC%2F9VI1oXrw%3D",
+        "width": 2500,
+        "height": 1764
+      },
+      "outpath": "/Users/chulin/workFiles/teach-mark-tool/test/2021~2022第一学期/上学期/模式1-条码印刷/电力电子与电力传动(0100)/bh070404/18电气工程及其自动化(电力工程造价与管理方向)01班/轨迹图/18101907-罗元祥-1.jpg",
+      "drawTrackList": [
+        {
+          "type": "text",
+          "option": {
+            "x": 355,
+            "y": 274,
+            "text": "16",
+            "color": "green",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 126.08553225,
+            "y": 94.3140882096,
+            "text": "仲裁:m命题01(mmt01),评分:16",
+            "fontSize": 20,
+            "color": "green"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 964.2552612499999,
+            "y": 94.3140882096,
+            "text": "得分:16,满分:16",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 375,
+            "y": 17.64,
+            "text": "总分:65,主观题得分:65,客观题得分:0",
+            "fontSize": 40
+          }
+        }
+      ]
+    }
+  ],
+  [
+    {
+      "imgItem": {
+        "url": "https://oss-file.qmth.com.cn/teachcloud-dps-dev-private/sheet/506180312611422208/541658924554649601/18101907/1-1.jpg?Expires=1721094235&OSSAccessKeyId=key&Signature=Tzrqlwgd%2B1QjCb93jI%2BHvk2Qf0A%3D",
+        "width": 2500,
+        "height": 1762
+      },
+      "outpath": "/Users/chulin/workFiles/teach-mark-tool/test/2021~2022第一学期/上学期/模式1-条码印刷/电力电子与电力传动(0100)/bh070404/18电气工程及其自动化(电力工程造价与管理方向)02班/轨迹图/18101631-史仁烨-0.jpg",
+      "drawTrackList": [
+        {
+          "type": "text",
+          "option": {
+            "x": 248,
+            "y": 1320,
+            "text": "6",
+            "color": "green",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 792,
+            "y": 1323,
+            "text": "6",
+            "color": "green",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 295,
+            "y": 1393,
+            "text": "6",
+            "color": "green",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 777,
+            "y": 1403,
+            "text": "6",
+            "color": "green",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1530,
+            "y": 250,
+            "text": "7",
+            "color": "red",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1467,
+            "y": 245,
+            "text": "8",
+            "color": "blue",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1507,
+            "y": 976,
+            "text": "13",
+            "color": "red",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1479,
+            "y": 950,
+            "text": "10",
+            "color": "blue",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 321.6,
+            "y": 1103.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 321.6,
+            "y": 1130.8,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 321.6,
+            "y": 1158.8,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 321.6,
+            "y": 1186.8,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 321.6,
+            "y": 1215.8,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 541.6,
+            "y": 1104.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 541.6,
+            "y": 1130.8,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 541.6,
+            "y": 1159.8,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 541.6,
+            "y": 1187.8,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 541.6,
+            "y": 1215.8,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 126.08553225,
+            "y": 1268.8252922724,
+            "text": "一评:m评卷01(mpj01),评分:",
+            "fontSize": 20,
+            "color": ""
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 126.08553225,
+            "y": 1288.8252922724,
+            "text": "1:5分,2:4分,3:4分,4:6分",
+            "fontSize": 20,
+            "color": ""
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 126.08553225,
+            "y": 1312.8252922724,
+            "text": "二评:m评卷02(mpj02),评分:",
+            "fontSize": 20,
+            "color": ""
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 126.08553225,
+            "y": 1332.8252922724,
+            "text": "1:2分,2:4分,3:3分,4:4分",
+            "fontSize": 20,
+            "color": ""
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 964.2552612499999,
+            "y": 1268.8252922724,
+            "text": "得分:24,满分:24",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1265.74469075,
+            "y": 94.2071920816,
+            "text": "一评:m评卷01(mpj01),评分:7",
+            "fontSize": 20,
+            "color": "red"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1265.74469075,
+            "y": 118.2071920816,
+            "text": "二评:m评卷02(mpj02),评分:8",
+            "fontSize": 20,
+            "color": "blue"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 2088.91441975,
+            "y": 94.2071920816,
+            "text": "得分:7.5,满分:20",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1265.74469075,
+            "y": 813.457220522,
+            "text": "一评:m评卷01(mpj01),评分:13",
+            "fontSize": 20,
+            "color": "red"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1265.74469075,
+            "y": 837.457220522,
+            "text": "二评:m评卷02(mpj02),评分:10",
+            "fontSize": 20,
+            "color": "blue"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 2073.91441975,
+            "y": 813.457220522,
+            "text": "得分:11.5,满分:20",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 979.268947,
+            "y": 1038.1404088217998,
+            "text": "得分:0,满分:20",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 375,
+            "y": 17.62,
+            "text": "总分:55,主观题得分:55,客观题得分:0",
+            "fontSize": 40
+          }
+        }
+      ]
+    },
+    {
+      "imgItem": {
+        "url": "https://oss-file.qmth.com.cn/teachcloud-dps-dev-private/sheet/506180312611422208/541658924554649601/18101907/1-2.jpg?Expires=1721094235&OSSAccessKeyId=key&Signature=No7v7AhwPFV2A%2BubaKmGJCs1ZSY%3D",
+        "width": 2500,
+        "height": 1762
+      },
+      "outpath": "/Users/chulin/workFiles/teach-mark-tool/test/2021~2022第一学期/上学期/模式1-条码印刷/电力电子与电力传动(0100)/bh070404/18电气工程及其自动化(电力工程造价与管理方向)02班/轨迹图/18101631-史仁烨-1.jpg",
+      "drawTrackList": [
+        {
+          "type": "text",
+          "option": {
+            "x": 402,
+            "y": 235,
+            "text": "11",
+            "color": "red",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 394,
+            "y": 197,
+            "text": "13",
+            "color": "blue",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 126.08553225,
+            "y": 94.2071561368,
+            "text": "一评:m评卷01(mpj01),评分:11",
+            "fontSize": 20,
+            "color": "red"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 126.08553225,
+            "y": 118.2071561368,
+            "text": "二评:m评卷02(mpj02),评分:13",
+            "fontSize": 20,
+            "color": "blue"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 964.2552612499999,
+            "y": 94.2071561368,
+            "text": "得分:12,满分:16",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 375,
+            "y": 17.62,
+            "text": "总分:55,主观题得分:55,客观题得分:0",
+            "fontSize": 40
+          }
+        }
+      ]
+    }
+  ],
+  [
+    {
+      "imgItem": {
+        "url": "https://oss-file.qmth.com.cn/teachcloud-dps-dev-private/sheet/506180312611422208/541658924554649601/18101911/1-1.jpg?Expires=1721094235&OSSAccessKeyId=key&Signature=195EQRdiCB5folKgg9zlQM1ZA0U%3D",
+        "width": 2500,
+        "height": 1764
+      },
+      "outpath": "/Users/chulin/workFiles/teach-mark-tool/test/2021~2022第一学期/上学期/模式1-条码印刷/电力电子与电力传动(0100)/bh070404/18电气工程及其自动化(电力工程造价与管理方向)02班/轨迹图/18101934-崔丽峰-0.jpg",
+      "drawTrackList": [
+        {
+          "type": "text",
+          "option": {
+            "x": 313,
+            "y": 1321,
+            "text": "6",
+            "color": "red",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 320,
+            "y": 1324,
+            "text": "3",
+            "color": "blue",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 816,
+            "y": 1330,
+            "text": "2",
+            "color": "red",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 808,
+            "y": 1321,
+            "text": "2",
+            "color": "blue",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 297,
+            "y": 1395,
+            "text": "3",
+            "color": "red",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 335,
+            "y": 1394,
+            "text": "5",
+            "color": "blue",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 872,
+            "y": 1403,
+            "text": "1",
+            "color": "red",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 835,
+            "y": 1396,
+            "text": "3",
+            "color": "blue",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1498,
+            "y": 252,
+            "text": "1",
+            "color": "red",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1489,
+            "y": 237,
+            "text": "8",
+            "color": "blue",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1479,
+            "y": 969,
+            "text": "20",
+            "color": "red",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1475,
+            "y": 957,
+            "text": "17",
+            "color": "blue",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 321.6,
+            "y": 1103.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 321.6,
+            "y": 1130.8,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 321.6,
+            "y": 1158.8,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 321.6,
+            "y": 1186.8,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 321.6,
+            "y": 1215.8,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 541.6,
+            "y": 1104.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 541.6,
+            "y": 1130.8,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 541.6,
+            "y": 1159.8,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 541.6,
+            "y": 1187.8,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 541.6,
+            "y": 1215.8,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 126.08553225,
+            "y": 1270.2655025928,
+            "text": "一评:m评卷02(mpj02),评分:",
+            "fontSize": 20,
+            "color": "red"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 126.08553225,
+            "y": 1290.2655025928,
+            "text": "1:6分,2:2分,3:3分,4:1分",
+            "fontSize": 20,
+            "color": "red"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 126.08553225,
+            "y": 1314.2655025928,
+            "text": "二评:m评卷01(mpj01),评分:",
+            "fontSize": 20,
+            "color": "blue"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 126.08553225,
+            "y": 1334.2655025928,
+            "text": "1:3分,2:2分,3:5分,4:3分",
+            "fontSize": 20,
+            "color": "blue"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 934.2552612499999,
+            "y": 1270.2655025928,
+            "text": "得分:12.5,满分:24",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1265.74469075,
+            "y": 94.31412419520001,
+            "text": "一评:m评卷02(mpj02),评分:1",
+            "fontSize": 20,
+            "color": "red"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1265.74469075,
+            "y": 118.31412419520001,
+            "text": "二评:m评卷01(mpj01),评分:8",
+            "fontSize": 20,
+            "color": "blue"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 2088.91441975,
+            "y": 94.31412419520001,
+            "text": "得分:4.5,满分:20",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1265.74469075,
+            "y": 814.380554484,
+            "text": "一评:m评卷02(mpj02),评分:20",
+            "fontSize": 20,
+            "color": "red"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1265.74469075,
+            "y": 838.380554484,
+            "text": "二评:m评卷01(mpj01),评分:17",
+            "fontSize": 20,
+            "color": "blue"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 2073.91441975,
+            "y": 814.380554484,
+            "text": "得分:18.5,满分:20",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 979.268947,
+            "y": 1039.3187747795998,
+            "text": "得分:0,满分:20",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 375,
+            "y": 17.64,
+            "text": "总分:47,主观题得分:47,客观题得分:0",
+            "fontSize": 40
+          }
+        }
+      ]
+    },
+    {
+      "imgItem": {
+        "url": "https://oss-file.qmth.com.cn/teachcloud-dps-dev-private/sheet/506180312611422208/541658924554649601/18101911/1-2.jpg?Expires=1721094235&OSSAccessKeyId=key&Signature=ta4BNnPX7EOf3Ce1lt90xmQyCwE%3D",
+        "width": 2502,
+        "height": 1764
+      },
+      "outpath": "/Users/chulin/workFiles/teach-mark-tool/test/2021~2022第一学期/上学期/模式1-条码印刷/电力电子与电力传动(0100)/bh070404/18电气工程及其自动化(电力工程造价与管理方向)02班/轨迹图/18101934-崔丽峰-1.jpg",
+      "drawTrackList": [
+        {
+          "type": "text",
+          "option": {
+            "x": 380,
+            "y": 220,
+            "text": "16",
+            "color": "red",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 354,
+            "y": 205,
+            "text": "7",
+            "color": "blue",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 126.18640067579999,
+            "y": 94.3140882096,
+            "text": "一评:m评卷02(mpj02),评分:16",
+            "fontSize": 20,
+            "color": "red"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 126.18640067579999,
+            "y": 118.3140882096,
+            "text": "二评:m评卷01(mpj01),评分:7",
+            "fontSize": 20,
+            "color": "blue"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 935.2426654590001,
+            "y": 94.3140882096,
+            "text": "得分:11.5,满分:16",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 375.3,
+            "y": 17.64,
+            "text": "总分:47,主观题得分:47,客观题得分:0",
+            "fontSize": 40
+          }
+        }
+      ]
+    }
+  ],
+  [
+    {
+      "imgItem": {
+        "url": "https://oss-file.qmth.com.cn/teachcloud-dps-dev-private/sheet/506180312611422208/541658924554649601/18101934/1-1.jpg?Expires=1721094235&OSSAccessKeyId=key&Signature=10vgbf8mp3jP%2BKccxqPPP%2BPtr4M%3D",
+        "width": 2502,
+        "height": 1764
+      },
+      "outpath": "/Users/chulin/workFiles/teach-mark-tool/test/2021~2022第一学期/上学期/模式1-条码印刷/电力电子与电力传动(0100)/bh070404/18电气工程及其自动化(电力工程造价与管理方向)01班/轨迹图/18101911-刘英明-0.jpg",
+      "drawTrackList": [
+        {
+          "type": "text",
+          "option": {
+            "x": 398,
+            "y": 1327,
+            "text": "1",
+            "color": "green",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 744,
+            "y": 1332,
+            "text": "2",
+            "color": "green",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 197,
+            "y": 1401,
+            "text": "3",
+            "color": "green",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 741,
+            "y": 1396,
+            "text": "4",
+            "color": "green",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1467,
+            "y": 226,
+            "text": "19",
+            "color": "red",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1558,
+            "y": 272,
+            "text": "16",
+            "color": "blue",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1452,
+            "y": 1013,
+            "text": "7",
+            "color": "red",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1515,
+            "y": 1016,
+            "text": "7",
+            "color": "blue",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 321.6,
+            "y": 1103.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 321.6,
+            "y": 1130.8,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 321.6,
+            "y": 1158.8,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 321.6,
+            "y": 1186.8,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 321.6,
+            "y": 1215.8,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 541.6,
+            "y": 1104.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 541.6,
+            "y": 1130.8,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 541.6,
+            "y": 1159.8,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 541.6,
+            "y": 1187.8,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 541.6,
+            "y": 1215.8,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 126.18640067579999,
+            "y": 1270.2655025928,
+            "text": "一评:m评卷02(mpj02),评分:",
+            "fontSize": 20,
+            "color": ""
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 126.18640067579999,
+            "y": 1290.2655025928,
+            "text": "1:3分,2:2分,3:1分,4:3分",
+            "fontSize": 20,
+            "color": ""
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 126.18640067579999,
+            "y": 1314.2655025928,
+            "text": "二评:m评卷01(mpj01),评分:",
+            "fontSize": 20,
+            "color": ""
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 126.18640067579999,
+            "y": 1334.2655025928,
+            "text": "1:6分,2:5分,3:4分,4:5分",
+            "fontSize": 20,
+            "color": ""
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 965.2426654590001,
+            "y": 1270.2655025928,
+            "text": "得分:10,满分:24",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1266.7572865026,
+            "y": 94.31412419520001,
+            "text": "一评:m评卷02(mpj02),评分:19",
+            "fontSize": 20,
+            "color": "red"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1266.7572865026,
+            "y": 118.31412419520001,
+            "text": "二评:m评卷01(mpj01),评分:16",
+            "fontSize": 20,
+            "color": "blue"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 2075.8135512858,
+            "y": 94.31412419520001,
+            "text": "得分:17.5,满分:20",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1266.7572865026,
+            "y": 814.380554484,
+            "text": "一评:m评卷02(mpj02),评分:7",
+            "fontSize": 20,
+            "color": "red"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1266.7572865026,
+            "y": 838.380554484,
+            "text": "二评:m评卷01(mpj01),评分:7",
+            "fontSize": 20,
+            "color": "blue"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 2120.8135512858,
+            "y": 814.380554484,
+            "text": "得分:7,满分:20",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 980.2563621576,
+            "y": 1039.3187747795998,
+            "text": "得分:0,满分:20",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 375.3,
+            "y": 17.64,
+            "text": "总分:46,主观题得分:46,客观题得分:0",
+            "fontSize": 40
+          }
+        }
+      ]
+    },
+    {
+      "imgItem": {
+        "url": "https://oss-file.qmth.com.cn/teachcloud-dps-dev-private/sheet/506180312611422208/541658924554649601/18101934/1-2.jpg?Expires=1721094235&OSSAccessKeyId=key&Signature=1O6DhC%2FsH6gHcDDsrn5JginyPiw%3D",
+        "width": 2500,
+        "height": 1764
+      },
+      "outpath": "/Users/chulin/workFiles/teach-mark-tool/test/2021~2022第一学期/上学期/模式1-条码印刷/电力电子与电力传动(0100)/bh070404/18电气工程及其自动化(电力工程造价与管理方向)01班/轨迹图/18101911-刘英明-1.jpg",
+      "drawTrackList": [
+        {
+          "type": "text",
+          "option": {
+            "x": 380,
+            "y": 252,
+            "text": "11",
+            "color": "red",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 359,
+            "y": 264,
+            "text": "12",
+            "color": "blue",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 126.08553225,
+            "y": 94.3140882096,
+            "text": "一评:m评卷02(mpj02),评分:11",
+            "fontSize": 20,
+            "color": "red"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 126.08553225,
+            "y": 118.3140882096,
+            "text": "二评:m评卷01(mpj01),评分:12",
+            "fontSize": 20,
+            "color": "blue"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 934.2552612499999,
+            "y": 94.3140882096,
+            "text": "得分:11.5,满分:16",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 375,
+            "y": 17.64,
+            "text": "总分:46,主观题得分:46,客观题得分:0",
+            "fontSize": 40
+          }
+        }
+      ]
+    }
+  ]
+]

+ 3814 - 0
src/views/login/test-page/task.local.json

@@ -0,0 +1,3814 @@
+[
+  [
+    {
+      "imgItem": {
+        "url": "/Users/chulin/workFiles/teach-mark-tool/test/2021~2022第一学期/上学期/模式1-条码印刷/中国古代文学00快快快快快快快快(0300)/bh070902/教学班01/原图/070902-大米0709002-1.jpg",
+        "width": 2496,
+        "height": 1764
+      },
+      "outpath": "/Users/chulin/workFiles/teach-mark-tool/test/2021~2022第一学期/上学期/模式1-条码印刷/中国古代文学00快快快快快快快快(0300)/bh070902/教学班01/轨迹图/070902-大米0709002-0.jpg",
+      "drawTrackList": [
+        {
+          "type": "text",
+          "option": {
+            "x": 1473,
+            "y": 264,
+            "text": "6",
+            "color": "red",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1534,
+            "y": 990,
+            "text": "1",
+            "color": "red",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1731,
+            "y": 990,
+            "text": "4",
+            "color": "red",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 319,
+            "y": 1103.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 319,
+            "y": 1131.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 319,
+            "y": 1159.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 319,
+            "y": 1188.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 319.6,
+            "y": 1216.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 539,
+            "y": 1103.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 539,
+            "y": 1132.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 539,
+            "y": 1160.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 539,
+            "y": 1188.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 539.6,
+            "y": 1217.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1263.7194992448,
+            "y": 94.31412419520001,
+            "text": "评卷员:m评卷01(mpj01),评分:6",
+            "fontSize": 20,
+            "color": "red"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 2115.1161566784003,
+            "y": 94.31412419520001,
+            "text": "得分:6,满分:10",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1263.7194992448,
+            "y": 814.380554484,
+            "text": "评卷员:m评卷01(mpj01),评分:5",
+            "fontSize": 20,
+            "color": "red"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 2115.1161566784003,
+            "y": 814.380554484,
+            "text": "得分:5,满分:10",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 977.2941166848,
+            "y": 1039.3187747795998,
+            "text": "得分:0,满分:40",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 374.4,
+            "y": 17.64,
+            "text": "总分:41,主观题得分:41,客观题得分:0",
+            "fontSize": 40
+          }
+        }
+      ]
+    },
+    {
+      "imgItem": {
+        "url": "/Users/chulin/workFiles/teach-mark-tool/test/2021~2022第一学期/上学期/模式1-条码印刷/中国古代文学00快快快快快快快快(0300)/bh070902/教学班01/原图/070902-大米0709002-2.jpg",
+        "width": 2496,
+        "height": 1764
+      },
+      "outpath": "/Users/chulin/workFiles/teach-mark-tool/test/2021~2022第一学期/上学期/模式1-条码印刷/中国古代文学00快快快快快快快快(0300)/bh070902/教学班01/轨迹图/070902-大米0709002-1.jpg",
+      "drawTrackList": [
+        {
+          "type": "text",
+          "option": {
+            "x": 343,
+            "y": 232,
+            "text": "10",
+            "color": "red",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 571,
+            "y": 1031,
+            "text": "5",
+            "color": "red",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1572,
+            "y": 284,
+            "text": "15",
+            "color": "red",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 125.8837953984,
+            "y": 94.3140882096,
+            "text": "评卷员:m评卷01(mpj01),评分:10",
+            "fontSize": 20,
+            "color": "red"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 962.280452832,
+            "y": 94.3140882096,
+            "text": "得分:10,满分:10",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 125.8837953984,
+            "y": 814.3804885104,
+            "text": "评卷员:m评卷02(mpj02),评分:5",
+            "fontSize": 20,
+            "color": "red"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 977.280452832,
+            "y": 814.3804885104,
+            "text": "得分:5,满分:10",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1263.7194992448,
+            "y": 94.3140882096,
+            "text": "评卷员:m评卷02(mpj02),评分:15",
+            "fontSize": 20,
+            "color": "red"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 2100.1161566784003,
+            "y": 94.3140882096,
+            "text": "得分:15,满分:20",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 374.4,
+            "y": 17.64,
+            "text": "总分:41,主观题得分:41,客观题得分:0",
+            "fontSize": 40
+          }
+        }
+      ]
+    }
+  ],
+  [
+    {
+      "imgItem": {
+        "url": "/Users/chulin/workFiles/teach-mark-tool/test/2021~2022第一学期/上学期/模式1-条码印刷/中国古代文学00快快快快快快快快(0300)/bh070902/教学班01/原图/070905-大米0709005-1.jpg",
+        "width": 2500,
+        "height": 1762
+      },
+      "outpath": "/Users/chulin/workFiles/teach-mark-tool/test/2021~2022第一学期/上学期/模式1-条码印刷/中国古代文学00快快快快快快快快(0300)/bh070902/教学班01/轨迹图/070905-大米0709005-0.jpg",
+      "drawTrackList": [
+        {
+          "type": "text",
+          "option": {
+            "x": 1500,
+            "y": 213,
+            "text": "8",
+            "color": "red",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1570,
+            "y": 1047,
+            "text": "10",
+            "color": "red",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 319,
+            "y": 1103.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 319,
+            "y": 1131.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 319,
+            "y": 1159.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 319,
+            "y": 1188.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 319.6,
+            "y": 1216.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 539,
+            "y": 1103.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 539,
+            "y": 1132.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 539,
+            "y": 1160.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 539,
+            "y": 1188.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 539.6,
+            "y": 1217.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1265.74469075,
+            "y": 94.2071920816,
+            "text": "评卷员:m评卷01(mpj01),评分:8",
+            "fontSize": 20,
+            "color": "red"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 2118.91441975,
+            "y": 94.2071920816,
+            "text": "得分:8,满分:10",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1265.74469075,
+            "y": 813.457220522,
+            "text": "评卷员:m评卷01(mpj01),评分:10",
+            "fontSize": 20,
+            "color": "red"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 2103.91441975,
+            "y": 813.457220522,
+            "text": "得分:10,满分:10",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 979.268947,
+            "y": 1038.1404088217998,
+            "text": "得分:0,满分:40",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 375,
+            "y": 17.62,
+            "text": "总分:43,主观题得分:43,客观题得分:0",
+            "fontSize": 40
+          }
+        }
+      ]
+    },
+    {
+      "imgItem": {
+        "url": "/Users/chulin/workFiles/teach-mark-tool/test/2021~2022第一学期/上学期/模式1-条码印刷/中国古代文学00快快快快快快快快(0300)/bh070902/教学班01/原图/070905-大米0709005-2.jpg",
+        "width": 2500,
+        "height": 1764
+      },
+      "outpath": "/Users/chulin/workFiles/teach-mark-tool/test/2021~2022第一学期/上学期/模式1-条码印刷/中国古代文学00快快快快快快快快(0300)/bh070902/教学班01/轨迹图/070905-大米0709005-1.jpg",
+      "drawTrackList": [
+        {
+          "type": "text",
+          "option": {
+            "x": 390,
+            "y": 162,
+            "text": "7",
+            "color": "red",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 307,
+            "y": 965,
+            "text": "8",
+            "color": "red",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1478,
+            "y": 240,
+            "text": "10",
+            "color": "red",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 126.08553225,
+            "y": 94.3140882096,
+            "text": "评卷员:m评卷01(mpj01),评分:7",
+            "fontSize": 20,
+            "color": "red"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 979.2552612499999,
+            "y": 94.3140882096,
+            "text": "得分:7,满分:10",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 126.08553225,
+            "y": 814.3804885104,
+            "text": "评卷员:m评卷02(mpj02),评分:8",
+            "fontSize": 20,
+            "color": "red"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 979.2552612499999,
+            "y": 814.3804885104,
+            "text": "得分:8,满分:10",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1265.74469075,
+            "y": 94.3140882096,
+            "text": "评卷员:m评卷02(mpj02),评分:10",
+            "fontSize": 20,
+            "color": "red"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 2103.91441975,
+            "y": 94.3140882096,
+            "text": "得分:10,满分:20",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 375,
+            "y": 17.64,
+            "text": "总分:43,主观题得分:43,客观题得分:0",
+            "fontSize": 40
+          }
+        }
+      ]
+    }
+  ],
+  [
+    {
+      "imgItem": {
+        "url": "/Users/chulin/workFiles/teach-mark-tool/test/2021~2022第一学期/上学期/模式1-条码印刷/中国古代文学00快快快快快快快快(0300)/bh070902/教学班01/原图/070907-大米0709007-1.jpg",
+        "width": 2498,
+        "height": 1764
+      },
+      "outpath": "/Users/chulin/workFiles/teach-mark-tool/test/2021~2022第一学期/上学期/模式1-条码印刷/中国古代文学00快快快快快快快快(0300)/bh070902/教学班01/轨迹图/070907-大米0709007-0.jpg",
+      "drawTrackList": [
+        {
+          "type": "text",
+          "option": {
+            "x": 1510,
+            "y": 266,
+            "text": "8",
+            "color": "red",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1536,
+            "y": 1145,
+            "text": "6",
+            "color": "red",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 319,
+            "y": 1103.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 319,
+            "y": 1131.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 319,
+            "y": 1159.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 319,
+            "y": 1188.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 319.6,
+            "y": 1216.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 539,
+            "y": 1103.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 539,
+            "y": 1132.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 539,
+            "y": 1160.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 539,
+            "y": 1188.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 539.6,
+            "y": 1217.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1264.7320949974,
+            "y": 94.31412419520001,
+            "text": "评卷员:m评卷01(mpj01),评分:8",
+            "fontSize": 20,
+            "color": "red"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 2117.0152882142,
+            "y": 94.31412419520001,
+            "text": "得分:8,满分:10",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1264.7320949974,
+            "y": 814.380554484,
+            "text": "评卷员:m评卷01(mpj01),评分:6",
+            "fontSize": 20,
+            "color": "red"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 2117.0152882142,
+            "y": 814.380554484,
+            "text": "得分:6,满分:10",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 978.2815318424,
+            "y": 1039.3187747795998,
+            "text": "得分:0,满分:40",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 374.7,
+            "y": 17.64,
+            "text": "总分:43,主观题得分:43,客观题得分:0",
+            "fontSize": 40
+          }
+        }
+      ]
+    },
+    {
+      "imgItem": {
+        "url": "/Users/chulin/workFiles/teach-mark-tool/test/2021~2022第一学期/上学期/模式1-条码印刷/中国古代文学00快快快快快快快快(0300)/bh070902/教学班01/原图/070907-大米0709007-2.jpg",
+        "width": 2498,
+        "height": 1764
+      },
+      "outpath": "/Users/chulin/workFiles/teach-mark-tool/test/2021~2022第一学期/上学期/模式1-条码印刷/中国古代文学00快快快快快快快快(0300)/bh070902/教学班01/轨迹图/070907-大米0709007-1.jpg",
+      "drawTrackList": [
+        {
+          "type": "text",
+          "option": {
+            "x": 379,
+            "y": 239,
+            "text": "4",
+            "color": "red",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 391,
+            "y": 1016,
+            "text": "6",
+            "color": "red",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1494,
+            "y": 235,
+            "text": "19",
+            "color": "red",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 125.9846638242,
+            "y": 94.3140882096,
+            "text": "评卷员:m评卷01(mpj01),评分:4",
+            "fontSize": 20,
+            "color": "red"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 978.2678570410001,
+            "y": 94.3140882096,
+            "text": "得分:4,满分:10",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 125.9846638242,
+            "y": 814.3804885104,
+            "text": "评卷员:m评卷02(mpj02),评分:6",
+            "fontSize": 20,
+            "color": "red"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 978.2678570410001,
+            "y": 814.3804885104,
+            "text": "得分:6,满分:10",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1264.7320949974,
+            "y": 94.3140882096,
+            "text": "评卷员:m评卷02(mpj02),评分:19",
+            "fontSize": 20,
+            "color": "red"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 2102.0152882142,
+            "y": 94.3140882096,
+            "text": "得分:19,满分:20",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 374.7,
+            "y": 17.64,
+            "text": "总分:43,主观题得分:43,客观题得分:0",
+            "fontSize": 40
+          }
+        }
+      ]
+    }
+  ],
+  [
+    {
+      "imgItem": {
+        "url": "/Users/chulin/workFiles/teach-mark-tool/test/2021~2022第一学期/上学期/模式1-条码印刷/中国古代文学00快快快快快快快快(0300)/bh070902/教学班01/原图/070906-大米0709006-1.jpg",
+        "width": 2496,
+        "height": 1764
+      },
+      "outpath": "/Users/chulin/workFiles/teach-mark-tool/test/2021~2022第一学期/上学期/模式1-条码印刷/中国古代文学00快快快快快快快快(0300)/bh070902/教学班01/轨迹图/070906-大米0709006-0.jpg",
+      "drawTrackList": [
+        {
+          "type": "text",
+          "option": {
+            "x": 1421,
+            "y": 217,
+            "text": "1",
+            "color": "red",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1526,
+            "y": 999,
+            "text": "6",
+            "color": "red",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 319,
+            "y": 1103.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 319,
+            "y": 1131.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 319,
+            "y": 1159.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 319,
+            "y": 1188.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 319.6,
+            "y": 1216.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 539,
+            "y": 1103.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 539,
+            "y": 1132.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 539,
+            "y": 1160.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 539,
+            "y": 1188.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 539.6,
+            "y": 1217.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1263.7194992448,
+            "y": 94.31412419520001,
+            "text": "评卷员:m评卷01(mpj01),评分:1",
+            "fontSize": 20,
+            "color": "red"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 2115.1161566784003,
+            "y": 94.31412419520001,
+            "text": "得分:1,满分:10",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1263.7194992448,
+            "y": 814.380554484,
+            "text": "评卷员:m评卷01(mpj01),评分:6",
+            "fontSize": 20,
+            "color": "red"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 2115.1161566784003,
+            "y": 814.380554484,
+            "text": "得分:6,满分:10",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 977.2941166848,
+            "y": 1039.3187747795998,
+            "text": "得分:0,满分:40",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 374.4,
+            "y": 17.64,
+            "text": "总分:40,主观题得分:40,客观题得分:0",
+            "fontSize": 40
+          }
+        }
+      ]
+    },
+    {
+      "imgItem": {
+        "url": "/Users/chulin/workFiles/teach-mark-tool/test/2021~2022第一学期/上学期/模式1-条码印刷/中国古代文学00快快快快快快快快(0300)/bh070902/教学班01/原图/070906-大米0709006-2.jpg",
+        "width": 2498,
+        "height": 1762
+      },
+      "outpath": "/Users/chulin/workFiles/teach-mark-tool/test/2021~2022第一学期/上学期/模式1-条码印刷/中国古代文学00快快快快快快快快(0300)/bh070902/教学班01/轨迹图/070906-大米0709006-1.jpg",
+      "drawTrackList": [
+        {
+          "type": "text",
+          "option": {
+            "x": 309,
+            "y": 199,
+            "text": "8",
+            "color": "red",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 433,
+            "y": 996,
+            "text": "10",
+            "color": "red",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1548,
+            "y": 293,
+            "text": "15",
+            "color": "red",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 125.9846638242,
+            "y": 94.2071561368,
+            "text": "评卷员:m评卷01(mpj01),评分:8",
+            "fontSize": 20,
+            "color": "red"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 978.2678570410001,
+            "y": 94.2071561368,
+            "text": "得分:8,满分:10",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 125.9846638242,
+            "y": 813.4571546231999,
+            "text": "评卷员:m评卷02(mpj02),评分:10",
+            "fontSize": 20,
+            "color": "red"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 963.2678570410001,
+            "y": 813.4571546231999,
+            "text": "得分:10,满分:10",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1264.7320949974,
+            "y": 94.2071561368,
+            "text": "评卷员:m评卷02(mpj02),评分:15",
+            "fontSize": 20,
+            "color": "red"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 2102.0152882142,
+            "y": 94.2071561368,
+            "text": "得分:15,满分:20",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 374.7,
+            "y": 17.62,
+            "text": "总分:40,主观题得分:40,客观题得分:0",
+            "fontSize": 40
+          }
+        }
+      ]
+    }
+  ],
+  [
+    {
+      "imgItem": {
+        "url": "/Users/chulin/workFiles/teach-mark-tool/test/2021~2022第一学期/上学期/模式1-条码印刷/中国古代文学00快快快快快快快快(0300)/bh070902/教学班01/原图/070908-大米0709008-1.jpg",
+        "width": 2492,
+        "height": 1762
+      },
+      "outpath": "/Users/chulin/workFiles/teach-mark-tool/test/2021~2022第一学期/上学期/模式1-条码印刷/中国古代文学00快快快快快快快快(0300)/bh070902/教学班01/轨迹图/070908-大米0709008-0.jpg",
+      "drawTrackList": [
+        {
+          "type": "text",
+          "option": {
+            "x": 1621,
+            "y": 292,
+            "text": "8",
+            "color": "red",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1536,
+            "y": 1043,
+            "text": "6",
+            "color": "red",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 318.4,
+            "y": 1103.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 318.4,
+            "y": 1131.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 318.4,
+            "y": 1159.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 318.4,
+            "y": 1188.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 319,
+            "y": 1216.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 538.4,
+            "y": 1103.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 538.4,
+            "y": 1132.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 538.4,
+            "y": 1160.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 538.4,
+            "y": 1188.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 539,
+            "y": 1217.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1261.6943077396,
+            "y": 94.2071920816,
+            "text": "评卷员:m评卷01(mpj01),评分:8",
+            "fontSize": 20,
+            "color": "red"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 2111.3178936067998,
+            "y": 94.2071920816,
+            "text": "得分:8,满分:10",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1261.6943077396,
+            "y": 813.457220522,
+            "text": "评卷员:m评卷01(mpj01),评分:6",
+            "fontSize": 20,
+            "color": "red"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 2111.3178936067998,
+            "y": 813.457220522,
+            "text": "得分:6,满分:10",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 975.3192863695999,
+            "y": 1038.1404088217998,
+            "text": "得分:0,满分:40",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 373.8,
+            "y": 17.62,
+            "text": "总分:48,主观题得分:48,客观题得分:0",
+            "fontSize": 40
+          }
+        }
+      ]
+    },
+    {
+      "imgItem": {
+        "url": "/Users/chulin/workFiles/teach-mark-tool/test/2021~2022第一学期/上学期/模式1-条码印刷/中国古代文学00快快快快快快快快(0300)/bh070902/教学班01/原图/070908-大米0709008-2.jpg",
+        "width": 2492,
+        "height": 1760
+      },
+      "outpath": "/Users/chulin/workFiles/teach-mark-tool/test/2021~2022第一学期/上学期/模式1-条码印刷/中国古代文学00快快快快快快快快(0300)/bh070902/教学班01/轨迹图/070908-大米0709008-1.jpg",
+      "drawTrackList": [
+        {
+          "type": "text",
+          "option": {
+            "x": 378,
+            "y": 211,
+            "text": "4",
+            "color": "red",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 453,
+            "y": 1011,
+            "text": "10",
+            "color": "red",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1544,
+            "y": 146,
+            "text": "20",
+            "color": "red",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 125.6820585468,
+            "y": 94.100224064,
+            "text": "评卷员:m评卷01(mpj01),评分:4",
+            "fontSize": 20,
+            "color": "red"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 975.305644414,
+            "y": 94.100224064,
+            "text": "得分:4,满分:10",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 125.6820585468,
+            "y": 812.5338207359999,
+            "text": "评卷员:m评卷02(mpj02),评分:10",
+            "fontSize": 20,
+            "color": "red"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 960.305644414,
+            "y": 812.5338207359999,
+            "text": "得分:10,满分:10",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1261.6943077396,
+            "y": 94.100224064,
+            "text": "评卷员:m评卷02(mpj02),评分:20",
+            "fontSize": 20,
+            "color": "red"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 2096.3178936067998,
+            "y": 94.100224064,
+            "text": "得分:20,满分:20",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 373.8,
+            "y": 17.6,
+            "text": "总分:48,主观题得分:48,客观题得分:0",
+            "fontSize": 40
+          }
+        }
+      ]
+    }
+  ],
+  [
+    {
+      "imgItem": {
+        "url": "/Users/chulin/workFiles/teach-mark-tool/test/2021~2022第一学期/上学期/模式1-条码印刷/中国古代文学00快快快快快快快快(0300)/bh070902/教学班01/原图/070910-大米0709010-1.jpg",
+        "width": 2494,
+        "height": 1764
+      },
+      "outpath": "/Users/chulin/workFiles/teach-mark-tool/test/2021~2022第一学期/上学期/模式1-条码印刷/中国古代文学00快快快快快快快快(0300)/bh070902/教学班01/轨迹图/070910-大米0709010-0.jpg",
+      "drawTrackList": [
+        {
+          "type": "text",
+          "option": {
+            "x": 1547,
+            "y": 304,
+            "text": "5",
+            "color": "red",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1562,
+            "y": 949,
+            "text": "7",
+            "color": "red",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 319,
+            "y": 1103.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 319,
+            "y": 1131.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 319,
+            "y": 1159.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 319,
+            "y": 1188.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 319.6,
+            "y": 1216.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 539,
+            "y": 1103.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 539,
+            "y": 1132.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 539,
+            "y": 1160.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 539,
+            "y": 1188.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 539.6,
+            "y": 1217.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1262.7069034922,
+            "y": 94.31412419520001,
+            "text": "评卷员:m评卷01(mpj01),评分:5",
+            "fontSize": 20,
+            "color": "red"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 2113.2170251426,
+            "y": 94.31412419520001,
+            "text": "得分:5,满分:10",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1262.7069034922,
+            "y": 814.380554484,
+            "text": "评卷员:m评卷01(mpj01),评分:7",
+            "fontSize": 20,
+            "color": "red"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 2113.2170251426,
+            "y": 814.380554484,
+            "text": "得分:7,满分:10",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 976.3067015272,
+            "y": 1039.3187747795998,
+            "text": "得分:0,满分:40",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 374.09999999999997,
+            "y": 17.64,
+            "text": "总分:51,主观题得分:51,客观题得分:0",
+            "fontSize": 40
+          }
+        }
+      ]
+    },
+    {
+      "imgItem": {
+        "url": "/Users/chulin/workFiles/teach-mark-tool/test/2021~2022第一学期/上学期/模式1-条码印刷/中国古代文学00快快快快快快快快(0300)/bh070902/教学班01/原图/070910-大米0709010-2.jpg",
+        "width": 2494,
+        "height": 1762
+      },
+      "outpath": "/Users/chulin/workFiles/teach-mark-tool/test/2021~2022第一学期/上学期/模式1-条码印刷/中国古代文学00快快快快快快快快(0300)/bh070902/教学班01/轨迹图/070910-大米0709010-1.jpg",
+      "drawTrackList": [
+        {
+          "type": "text",
+          "option": {
+            "x": 349,
+            "y": 265,
+            "text": "9",
+            "color": "red",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 453,
+            "y": 1100,
+            "text": "10",
+            "color": "red",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1588,
+            "y": 290,
+            "text": "20",
+            "color": "red",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 125.7829269726,
+            "y": 94.2071561368,
+            "text": "评卷员:m评卷01(mpj01),评分:9",
+            "fontSize": 20,
+            "color": "red"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 976.2930486230002,
+            "y": 94.2071561368,
+            "text": "得分:9,满分:10",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 125.7829269726,
+            "y": 813.4571546231999,
+            "text": "评卷员:m评卷02(mpj02),评分:10",
+            "fontSize": 20,
+            "color": "red"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 961.2930486230002,
+            "y": 813.4571546231999,
+            "text": "得分:10,满分:10",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1262.7069034922,
+            "y": 94.2071561368,
+            "text": "评卷员:m评卷02(mpj02),评分:20",
+            "fontSize": 20,
+            "color": "red"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 2098.2170251426,
+            "y": 94.2071561368,
+            "text": "得分:20,满分:20",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 374.09999999999997,
+            "y": 17.62,
+            "text": "总分:51,主观题得分:51,客观题得分:0",
+            "fontSize": 40
+          }
+        }
+      ]
+    }
+  ],
+  [
+    {
+      "imgItem": {
+        "url": "/Users/chulin/workFiles/teach-mark-tool/test/2021~2022第一学期/上学期/模式1-条码印刷/中国古代文学00快快快快快快快快(0300)/bh070902/教学班01/原图/070911-大米0709011-1.jpg",
+        "width": 2494,
+        "height": 1762
+      },
+      "outpath": "/Users/chulin/workFiles/teach-mark-tool/test/2021~2022第一学期/上学期/模式1-条码印刷/中国古代文学00快快快快快快快快(0300)/bh070902/教学班01/轨迹图/070911-大米0709011-0.jpg",
+      "drawTrackList": [
+        {
+          "type": "text",
+          "option": {
+            "x": 1602,
+            "y": 347,
+            "text": "10",
+            "color": "red",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1506,
+            "y": 919,
+            "text": "1",
+            "color": "red",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1649,
+            "y": 996,
+            "text": "6",
+            "color": "red",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 319,
+            "y": 1103.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 319,
+            "y": 1131.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 319,
+            "y": 1159.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 319,
+            "y": 1188.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 319.6,
+            "y": 1216.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 539,
+            "y": 1103.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 539,
+            "y": 1132.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 539,
+            "y": 1160.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 539,
+            "y": 1188.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 539.6,
+            "y": 1217.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1262.7069034922,
+            "y": 94.2071920816,
+            "text": "评卷员:m评卷01(mpj01),评分:10",
+            "fontSize": 20,
+            "color": "red"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 2098.2170251426,
+            "y": 94.2071920816,
+            "text": "得分:10,满分:10",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1262.7069034922,
+            "y": 813.457220522,
+            "text": "评卷员:m评卷01(mpj01),评分:7",
+            "fontSize": 20,
+            "color": "red"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 2113.2170251426,
+            "y": 813.457220522,
+            "text": "得分:7,满分:10",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 976.3067015272,
+            "y": 1038.1404088217998,
+            "text": "得分:0,满分:40",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 374.09999999999997,
+            "y": 17.62,
+            "text": "总分:47,主观题得分:47,客观题得分:0",
+            "fontSize": 40
+          }
+        }
+      ]
+    },
+    {
+      "imgItem": {
+        "url": "/Users/chulin/workFiles/teach-mark-tool/test/2021~2022第一学期/上学期/模式1-条码印刷/中国古代文学00快快快快快快快快(0300)/bh070902/教学班01/原图/070911-大米0709011-2.jpg",
+        "width": 2496,
+        "height": 1760
+      },
+      "outpath": "/Users/chulin/workFiles/teach-mark-tool/test/2021~2022第一学期/上学期/模式1-条码印刷/中国古代文学00快快快快快快快快(0300)/bh070902/教学班01/轨迹图/070911-大米0709011-1.jpg",
+      "drawTrackList": [
+        {
+          "type": "text",
+          "option": {
+            "x": 365,
+            "y": 149,
+            "text": "8",
+            "color": "red",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 667,
+            "y": 1118,
+            "text": "6",
+            "color": "red",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1539,
+            "y": 245,
+            "text": "16",
+            "color": "red",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 125.8837953984,
+            "y": 94.100224064,
+            "text": "评卷员:m评卷01(mpj01),评分:8",
+            "fontSize": 20,
+            "color": "red"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 977.280452832,
+            "y": 94.100224064,
+            "text": "得分:8,满分:10",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 125.8837953984,
+            "y": 812.5338207359999,
+            "text": "评卷员:m评卷02(mpj02),评分:6",
+            "fontSize": 20,
+            "color": "red"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 977.280452832,
+            "y": 812.5338207359999,
+            "text": "得分:6,满分:10",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1263.7194992448,
+            "y": 94.100224064,
+            "text": "评卷员:m评卷02(mpj02),评分:16",
+            "fontSize": 20,
+            "color": "red"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 2100.1161566784003,
+            "y": 94.100224064,
+            "text": "得分:16,满分:20",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 374.4,
+            "y": 17.6,
+            "text": "总分:47,主观题得分:47,客观题得分:0",
+            "fontSize": 40
+          }
+        }
+      ]
+    }
+  ],
+  [
+    {
+      "imgItem": {
+        "url": "/Users/chulin/workFiles/teach-mark-tool/test/2021~2022第一学期/上学期/模式1-条码印刷/中国古代文学00快快快快快快快快(0300)/bh070902/m教学班01/原图/1272-大米72-1.jpg",
+        "width": 2494,
+        "height": 1760
+      },
+      "outpath": "/Users/chulin/workFiles/teach-mark-tool/test/2021~2022第一学期/上学期/模式1-条码印刷/中国古代文学00快快快快快快快快(0300)/bh070902/m教学班01/轨迹图/1272-大米72-0.jpg",
+      "drawTrackList": [
+        {
+          "type": "text",
+          "option": {
+            "x": 1558,
+            "y": 311,
+            "text": "2",
+            "color": "red",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1600,
+            "y": 1077,
+            "text": "5",
+            "color": "red",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 319,
+            "y": 1103.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 319,
+            "y": 1131.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 319,
+            "y": 1159.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 319,
+            "y": 1188.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 319.6,
+            "y": 1216.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 539,
+            "y": 1103.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 539,
+            "y": 1132.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 539,
+            "y": 1160.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 539,
+            "y": 1188.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 539.6,
+            "y": 1217.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1262.7069034922,
+            "y": 94.100259968,
+            "text": "评卷员:m评卷01(mpj01),评分:2",
+            "fontSize": 20,
+            "color": "red"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 2113.2170251426,
+            "y": 94.100259968,
+            "text": "得分:2,满分:10",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1262.7069034922,
+            "y": 812.5338865599999,
+            "text": "评卷员:m评卷01(mpj01),评分:5",
+            "fontSize": 20,
+            "color": "red"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 2113.2170251426,
+            "y": 812.5338865599999,
+            "text": "得分:5,满分:10",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 976.3067015272,
+            "y": 1036.9620428639998,
+            "text": "得分:0,满分:40",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 374.09999999999997,
+            "y": 17.6,
+            "text": "总分:30,主观题得分:30,客观题得分:0",
+            "fontSize": 40
+          }
+        }
+      ]
+    },
+    {
+      "imgItem": {
+        "url": "/Users/chulin/workFiles/teach-mark-tool/test/2021~2022第一学期/上学期/模式1-条码印刷/中国古代文学00快快快快快快快快(0300)/bh070902/m教学班01/原图/1272-大米72-2.jpg",
+        "width": 2494,
+        "height": 1760
+      },
+      "outpath": "/Users/chulin/workFiles/teach-mark-tool/test/2021~2022第一学期/上学期/模式1-条码印刷/中国古代文学00快快快快快快快快(0300)/bh070902/m教学班01/轨迹图/1272-大米72-1.jpg",
+      "drawTrackList": [
+        {
+          "type": "text",
+          "option": {
+            "x": 460,
+            "y": 265,
+            "text": "1",
+            "color": "red",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 319,
+            "y": 942,
+            "text": "8",
+            "color": "red",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1490,
+            "y": 313,
+            "text": "14",
+            "color": "red",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 125.7829269726,
+            "y": 94.100224064,
+            "text": "评卷员:m评卷01(mpj01),评分:1",
+            "fontSize": 20,
+            "color": "red"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 976.2930486230002,
+            "y": 94.100224064,
+            "text": "得分:1,满分:10",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 125.7829269726,
+            "y": 812.5338207359999,
+            "text": "评卷员:m评卷02(mpj02),评分:8",
+            "fontSize": 20,
+            "color": "red"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 976.2930486230002,
+            "y": 812.5338207359999,
+            "text": "得分:8,满分:10",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1262.7069034922,
+            "y": 94.100224064,
+            "text": "评卷员:m评卷02(mpj02),评分:14",
+            "fontSize": 20,
+            "color": "red"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 2098.2170251426,
+            "y": 94.100224064,
+            "text": "得分:14,满分:20",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 374.09999999999997,
+            "y": 17.6,
+            "text": "总分:30,主观题得分:30,客观题得分:0",
+            "fontSize": 40
+          }
+        }
+      ]
+    }
+  ],
+  [
+    {
+      "imgItem": {
+        "url": "/Users/chulin/workFiles/teach-mark-tool/test/2021~2022第一学期/上学期/模式1-条码印刷/电力电子与电力传动(0100)/bh070404/18电气工程及其自动化(电力工程造价与管理方向)01班/原图/18101907-罗元祥-1.jpg",
+        "width": 2500,
+        "height": 1764
+      },
+      "outpath": "/Users/chulin/workFiles/teach-mark-tool/test/2021~2022第一学期/上学期/模式1-条码印刷/电力电子与电力传动(0100)/bh070404/18电气工程及其自动化(电力工程造价与管理方向)01班/轨迹图/18101907-罗元祥-0.jpg",
+      "drawTrackList": [
+        {
+          "type": "text",
+          "option": {
+            "x": 284,
+            "y": 1318,
+            "text": "4",
+            "color": "red",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 251,
+            "y": 1327,
+            "text": "5",
+            "color": "blue",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 867,
+            "y": 1332,
+            "text": "2",
+            "color": "red",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 743,
+            "y": 1321,
+            "text": "2",
+            "color": "blue",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 317,
+            "y": 1396,
+            "text": "1",
+            "color": "red",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 291,
+            "y": 1399,
+            "text": "3",
+            "color": "blue",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 868,
+            "y": 1399,
+            "text": "5",
+            "color": "red",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 777,
+            "y": 1385,
+            "text": "6",
+            "color": "blue",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1505,
+            "y": 274,
+            "text": "15",
+            "color": "green",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1484,
+            "y": 1024,
+            "text": "20",
+            "color": "green",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 321.6,
+            "y": 1103.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 321.6,
+            "y": 1130.8,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 321.6,
+            "y": 1158.8,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 321.6,
+            "y": 1186.8,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 321.6,
+            "y": 1215.8,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 541.6,
+            "y": 1104.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 541.6,
+            "y": 1130.8,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 541.6,
+            "y": 1159.8,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 541.6,
+            "y": 1187.8,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 541.6,
+            "y": 1215.8,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 126.08553225,
+            "y": 1270.2655025928,
+            "text": "一评:m评卷02(mpj02),评分:",
+            "fontSize": 20,
+            "color": "red"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 126.08553225,
+            "y": 1290.2655025928,
+            "text": "1:4分,2:2分,3:1分,4:5分",
+            "fontSize": 20,
+            "color": "red"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 126.08553225,
+            "y": 1314.2655025928,
+            "text": "二评:m评卷01(mpj01),评分:",
+            "fontSize": 20,
+            "color": "blue"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 126.08553225,
+            "y": 1334.2655025928,
+            "text": "1:5分,2:2分,3:3分,4:6分",
+            "fontSize": 20,
+            "color": "blue"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 964.2552612499999,
+            "y": 1270.2655025928,
+            "text": "得分:14,满分:24",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1265.74469075,
+            "y": 94.31412419520001,
+            "text": "仲裁:m命题01(mmt01),评分:15",
+            "fontSize": 20,
+            "color": "green"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 2103.91441975,
+            "y": 94.31412419520001,
+            "text": "得分:15,满分:20",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1265.74469075,
+            "y": 814.380554484,
+            "text": "仲裁:m命题01(mmt01),评分:20",
+            "fontSize": 20,
+            "color": "green"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 2103.91441975,
+            "y": 814.380554484,
+            "text": "得分:20,满分:20",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 979.268947,
+            "y": 1039.3187747795998,
+            "text": "得分:0,满分:20",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 375,
+            "y": 17.64,
+            "text": "总分:65,主观题得分:65,客观题得分:0",
+            "fontSize": 40
+          }
+        }
+      ]
+    },
+    {
+      "imgItem": {
+        "url": "/Users/chulin/workFiles/teach-mark-tool/test/2021~2022第一学期/上学期/模式1-条码印刷/电力电子与电力传动(0100)/bh070404/18电气工程及其自动化(电力工程造价与管理方向)01班/原图/18101907-罗元祥-2.jpg",
+        "width": 2500,
+        "height": 1764
+      },
+      "outpath": "/Users/chulin/workFiles/teach-mark-tool/test/2021~2022第一学期/上学期/模式1-条码印刷/电力电子与电力传动(0100)/bh070404/18电气工程及其自动化(电力工程造价与管理方向)01班/轨迹图/18101907-罗元祥-1.jpg",
+      "drawTrackList": [
+        {
+          "type": "text",
+          "option": {
+            "x": 355,
+            "y": 274,
+            "text": "16",
+            "color": "green",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 126.08553225,
+            "y": 94.3140882096,
+            "text": "仲裁:m命题01(mmt01),评分:16",
+            "fontSize": 20,
+            "color": "green"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 964.2552612499999,
+            "y": 94.3140882096,
+            "text": "得分:16,满分:16",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 375,
+            "y": 17.64,
+            "text": "总分:65,主观题得分:65,客观题得分:0",
+            "fontSize": 40
+          }
+        }
+      ]
+    }
+  ],
+  [
+    {
+      "imgItem": {
+        "url": "/Users/chulin/workFiles/teach-mark-tool/test/2021~2022第一学期/上学期/模式1-条码印刷/电力电子与电力传动(0100)/bh070404/18电气工程及其自动化(电力工程造价与管理方向)02班/原图/18101631-史仁烨-1.jpg",
+        "width": 2500,
+        "height": 1762
+      },
+      "outpath": "/Users/chulin/workFiles/teach-mark-tool/test/2021~2022第一学期/上学期/模式1-条码印刷/电力电子与电力传动(0100)/bh070404/18电气工程及其自动化(电力工程造价与管理方向)02班/轨迹图/18101631-史仁烨-0.jpg",
+      "drawTrackList": [
+        {
+          "type": "text",
+          "option": {
+            "x": 248,
+            "y": 1320,
+            "text": "6",
+            "color": "green",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 792,
+            "y": 1323,
+            "text": "6",
+            "color": "green",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 295,
+            "y": 1393,
+            "text": "6",
+            "color": "green",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 777,
+            "y": 1403,
+            "text": "6",
+            "color": "green",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1530,
+            "y": 250,
+            "text": "7",
+            "color": "red",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1467,
+            "y": 245,
+            "text": "8",
+            "color": "blue",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1507,
+            "y": 976,
+            "text": "13",
+            "color": "red",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1479,
+            "y": 950,
+            "text": "10",
+            "color": "blue",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 321.6,
+            "y": 1103.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 321.6,
+            "y": 1130.8,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 321.6,
+            "y": 1158.8,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 321.6,
+            "y": 1186.8,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 321.6,
+            "y": 1215.8,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 541.6,
+            "y": 1104.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 541.6,
+            "y": 1130.8,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 541.6,
+            "y": 1159.8,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 541.6,
+            "y": 1187.8,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 541.6,
+            "y": 1215.8,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 126.08553225,
+            "y": 1268.8252922724,
+            "text": "一评:m评卷01(mpj01),评分:",
+            "fontSize": 20,
+            "color": ""
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 126.08553225,
+            "y": 1288.8252922724,
+            "text": "1:5分,2:4分,3:4分,4:6分",
+            "fontSize": 20,
+            "color": ""
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 126.08553225,
+            "y": 1312.8252922724,
+            "text": "二评:m评卷02(mpj02),评分:",
+            "fontSize": 20,
+            "color": ""
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 126.08553225,
+            "y": 1332.8252922724,
+            "text": "1:2分,2:4分,3:3分,4:4分",
+            "fontSize": 20,
+            "color": ""
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 964.2552612499999,
+            "y": 1268.8252922724,
+            "text": "得分:24,满分:24",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1265.74469075,
+            "y": 94.2071920816,
+            "text": "一评:m评卷01(mpj01),评分:7",
+            "fontSize": 20,
+            "color": "red"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1265.74469075,
+            "y": 118.2071920816,
+            "text": "二评:m评卷02(mpj02),评分:8",
+            "fontSize": 20,
+            "color": "blue"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 2088.91441975,
+            "y": 94.2071920816,
+            "text": "得分:7.5,满分:20",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1265.74469075,
+            "y": 813.457220522,
+            "text": "一评:m评卷01(mpj01),评分:13",
+            "fontSize": 20,
+            "color": "red"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1265.74469075,
+            "y": 837.457220522,
+            "text": "二评:m评卷02(mpj02),评分:10",
+            "fontSize": 20,
+            "color": "blue"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 2073.91441975,
+            "y": 813.457220522,
+            "text": "得分:11.5,满分:20",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 979.268947,
+            "y": 1038.1404088217998,
+            "text": "得分:0,满分:20",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 375,
+            "y": 17.62,
+            "text": "总分:55,主观题得分:55,客观题得分:0",
+            "fontSize": 40
+          }
+        }
+      ]
+    },
+    {
+      "imgItem": {
+        "url": "/Users/chulin/workFiles/teach-mark-tool/test/2021~2022第一学期/上学期/模式1-条码印刷/电力电子与电力传动(0100)/bh070404/18电气工程及其自动化(电力工程造价与管理方向)02班/原图/18101631-史仁烨-2.jpg",
+        "width": 2500,
+        "height": 1762
+      },
+      "outpath": "/Users/chulin/workFiles/teach-mark-tool/test/2021~2022第一学期/上学期/模式1-条码印刷/电力电子与电力传动(0100)/bh070404/18电气工程及其自动化(电力工程造价与管理方向)02班/轨迹图/18101631-史仁烨-1.jpg",
+      "drawTrackList": [
+        {
+          "type": "text",
+          "option": {
+            "x": 402,
+            "y": 235,
+            "text": "11",
+            "color": "red",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 394,
+            "y": 197,
+            "text": "13",
+            "color": "blue",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 126.08553225,
+            "y": 94.2071561368,
+            "text": "一评:m评卷01(mpj01),评分:11",
+            "fontSize": 20,
+            "color": "red"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 126.08553225,
+            "y": 118.2071561368,
+            "text": "二评:m评卷02(mpj02),评分:13",
+            "fontSize": 20,
+            "color": "blue"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 964.2552612499999,
+            "y": 94.2071561368,
+            "text": "得分:12,满分:16",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 375,
+            "y": 17.62,
+            "text": "总分:55,主观题得分:55,客观题得分:0",
+            "fontSize": 40
+          }
+        }
+      ]
+    }
+  ],
+  [
+    {
+      "imgItem": {
+        "url": "/Users/chulin/workFiles/teach-mark-tool/test/2021~2022第一学期/上学期/模式1-条码印刷/电力电子与电力传动(0100)/bh070404/18电气工程及其自动化(电力工程造价与管理方向)02班/原图/18101934-崔丽峰-1.jpg",
+        "width": 2500,
+        "height": 1764
+      },
+      "outpath": "/Users/chulin/workFiles/teach-mark-tool/test/2021~2022第一学期/上学期/模式1-条码印刷/电力电子与电力传动(0100)/bh070404/18电气工程及其自动化(电力工程造价与管理方向)02班/轨迹图/18101934-崔丽峰-0.jpg",
+      "drawTrackList": [
+        {
+          "type": "text",
+          "option": {
+            "x": 313,
+            "y": 1321,
+            "text": "6",
+            "color": "red",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 320,
+            "y": 1324,
+            "text": "3",
+            "color": "blue",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 816,
+            "y": 1330,
+            "text": "2",
+            "color": "red",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 808,
+            "y": 1321,
+            "text": "2",
+            "color": "blue",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 297,
+            "y": 1395,
+            "text": "3",
+            "color": "red",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 335,
+            "y": 1394,
+            "text": "5",
+            "color": "blue",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 872,
+            "y": 1403,
+            "text": "1",
+            "color": "red",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 835,
+            "y": 1396,
+            "text": "3",
+            "color": "blue",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1498,
+            "y": 252,
+            "text": "1",
+            "color": "red",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1489,
+            "y": 237,
+            "text": "8",
+            "color": "blue",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1479,
+            "y": 969,
+            "text": "20",
+            "color": "red",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1475,
+            "y": 957,
+            "text": "17",
+            "color": "blue",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 321.6,
+            "y": 1103.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 321.6,
+            "y": 1130.8,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 321.6,
+            "y": 1158.8,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 321.6,
+            "y": 1186.8,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 321.6,
+            "y": 1215.8,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 541.6,
+            "y": 1104.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 541.6,
+            "y": 1130.8,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 541.6,
+            "y": 1159.8,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 541.6,
+            "y": 1187.8,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 541.6,
+            "y": 1215.8,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 126.08553225,
+            "y": 1270.2655025928,
+            "text": "一评:m评卷02(mpj02),评分:",
+            "fontSize": 20,
+            "color": "red"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 126.08553225,
+            "y": 1290.2655025928,
+            "text": "1:6分,2:2分,3:3分,4:1分",
+            "fontSize": 20,
+            "color": "red"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 126.08553225,
+            "y": 1314.2655025928,
+            "text": "二评:m评卷01(mpj01),评分:",
+            "fontSize": 20,
+            "color": "blue"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 126.08553225,
+            "y": 1334.2655025928,
+            "text": "1:3分,2:2分,3:5分,4:3分",
+            "fontSize": 20,
+            "color": "blue"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 934.2552612499999,
+            "y": 1270.2655025928,
+            "text": "得分:12.5,满分:24",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1265.74469075,
+            "y": 94.31412419520001,
+            "text": "一评:m评卷02(mpj02),评分:1",
+            "fontSize": 20,
+            "color": "red"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1265.74469075,
+            "y": 118.31412419520001,
+            "text": "二评:m评卷01(mpj01),评分:8",
+            "fontSize": 20,
+            "color": "blue"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 2088.91441975,
+            "y": 94.31412419520001,
+            "text": "得分:4.5,满分:20",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1265.74469075,
+            "y": 814.380554484,
+            "text": "一评:m评卷02(mpj02),评分:20",
+            "fontSize": 20,
+            "color": "red"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1265.74469075,
+            "y": 838.380554484,
+            "text": "二评:m评卷01(mpj01),评分:17",
+            "fontSize": 20,
+            "color": "blue"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 2073.91441975,
+            "y": 814.380554484,
+            "text": "得分:18.5,满分:20",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 979.268947,
+            "y": 1039.3187747795998,
+            "text": "得分:0,满分:20",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 375,
+            "y": 17.64,
+            "text": "总分:47,主观题得分:47,客观题得分:0",
+            "fontSize": 40
+          }
+        }
+      ]
+    },
+    {
+      "imgItem": {
+        "url": "/Users/chulin/workFiles/teach-mark-tool/test/2021~2022第一学期/上学期/模式1-条码印刷/电力电子与电力传动(0100)/bh070404/18电气工程及其自动化(电力工程造价与管理方向)02班/原图/18101934-崔丽峰-2.jpg",
+        "width": 2502,
+        "height": 1764
+      },
+      "outpath": "/Users/chulin/workFiles/teach-mark-tool/test/2021~2022第一学期/上学期/模式1-条码印刷/电力电子与电力传动(0100)/bh070404/18电气工程及其自动化(电力工程造价与管理方向)02班/轨迹图/18101934-崔丽峰-1.jpg",
+      "drawTrackList": [
+        {
+          "type": "text",
+          "option": {
+            "x": 380,
+            "y": 220,
+            "text": "16",
+            "color": "red",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 354,
+            "y": 205,
+            "text": "7",
+            "color": "blue",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 126.18640067579999,
+            "y": 94.3140882096,
+            "text": "一评:m评卷02(mpj02),评分:16",
+            "fontSize": 20,
+            "color": "red"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 126.18640067579999,
+            "y": 118.3140882096,
+            "text": "二评:m评卷01(mpj01),评分:7",
+            "fontSize": 20,
+            "color": "blue"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 935.2426654590001,
+            "y": 94.3140882096,
+            "text": "得分:11.5,满分:16",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 375.3,
+            "y": 17.64,
+            "text": "总分:47,主观题得分:47,客观题得分:0",
+            "fontSize": 40
+          }
+        }
+      ]
+    }
+  ],
+  [
+    {
+      "imgItem": {
+        "url": "/Users/chulin/workFiles/teach-mark-tool/test/2021~2022第一学期/上学期/模式1-条码印刷/电力电子与电力传动(0100)/bh070404/18电气工程及其自动化(电力工程造价与管理方向)01班/原图/18101911-刘英明-1.jpg",
+        "width": 2502,
+        "height": 1764
+      },
+      "outpath": "/Users/chulin/workFiles/teach-mark-tool/test/2021~2022第一学期/上学期/模式1-条码印刷/电力电子与电力传动(0100)/bh070404/18电气工程及其自动化(电力工程造价与管理方向)01班/轨迹图/18101911-刘英明-0.jpg",
+      "drawTrackList": [
+        {
+          "type": "text",
+          "option": {
+            "x": 398,
+            "y": 1327,
+            "text": "1",
+            "color": "green",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 744,
+            "y": 1332,
+            "text": "2",
+            "color": "green",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 197,
+            "y": 1401,
+            "text": "3",
+            "color": "green",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 741,
+            "y": 1396,
+            "text": "4",
+            "color": "green",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1467,
+            "y": 226,
+            "text": "19",
+            "color": "red",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1558,
+            "y": 272,
+            "text": "16",
+            "color": "blue",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1452,
+            "y": 1013,
+            "text": "7",
+            "color": "red",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1515,
+            "y": 1016,
+            "text": "7",
+            "color": "blue",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 321.6,
+            "y": 1103.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 321.6,
+            "y": 1130.8,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 321.6,
+            "y": 1158.8,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 321.6,
+            "y": 1186.8,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 321.6,
+            "y": 1215.8,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 541.6,
+            "y": 1104.2,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 541.6,
+            "y": 1130.8,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 541.6,
+            "y": 1159.8,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 541.6,
+            "y": 1187.8,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 541.6,
+            "y": 1215.8,
+            "text": "#",
+            "color": "#f53f3f"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 126.18640067579999,
+            "y": 1270.2655025928,
+            "text": "一评:m评卷02(mpj02),评分:",
+            "fontSize": 20,
+            "color": ""
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 126.18640067579999,
+            "y": 1290.2655025928,
+            "text": "1:3分,2:2分,3:1分,4:3分",
+            "fontSize": 20,
+            "color": ""
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 126.18640067579999,
+            "y": 1314.2655025928,
+            "text": "二评:m评卷01(mpj01),评分:",
+            "fontSize": 20,
+            "color": ""
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 126.18640067579999,
+            "y": 1334.2655025928,
+            "text": "1:6分,2:5分,3:4分,4:5分",
+            "fontSize": 20,
+            "color": ""
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 965.2426654590001,
+            "y": 1270.2655025928,
+            "text": "得分:10,满分:24",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1266.7572865026,
+            "y": 94.31412419520001,
+            "text": "一评:m评卷02(mpj02),评分:19",
+            "fontSize": 20,
+            "color": "red"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1266.7572865026,
+            "y": 118.31412419520001,
+            "text": "二评:m评卷01(mpj01),评分:16",
+            "fontSize": 20,
+            "color": "blue"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 2075.8135512858,
+            "y": 94.31412419520001,
+            "text": "得分:17.5,满分:20",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1266.7572865026,
+            "y": 814.380554484,
+            "text": "一评:m评卷02(mpj02),评分:7",
+            "fontSize": 20,
+            "color": "red"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 1266.7572865026,
+            "y": 838.380554484,
+            "text": "二评:m评卷01(mpj01),评分:7",
+            "fontSize": 20,
+            "color": "blue"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 2120.8135512858,
+            "y": 814.380554484,
+            "text": "得分:7,满分:20",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 980.2563621576,
+            "y": 1039.3187747795998,
+            "text": "得分:0,满分:20",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 375.3,
+            "y": 17.64,
+            "text": "总分:46,主观题得分:46,客观题得分:0",
+            "fontSize": 40
+          }
+        }
+      ]
+    },
+    {
+      "imgItem": {
+        "url": "/Users/chulin/workFiles/teach-mark-tool/test/2021~2022第一学期/上学期/模式1-条码印刷/电力电子与电力传动(0100)/bh070404/18电气工程及其自动化(电力工程造价与管理方向)01班/原图/18101911-刘英明-2.jpg",
+        "width": 2500,
+        "height": 1764
+      },
+      "outpath": "/Users/chulin/workFiles/teach-mark-tool/test/2021~2022第一学期/上学期/模式1-条码印刷/电力电子与电力传动(0100)/bh070404/18电气工程及其自动化(电力工程造价与管理方向)01班/轨迹图/18101911-刘英明-1.jpg",
+      "drawTrackList": [
+        {
+          "type": "text",
+          "option": {
+            "x": 380,
+            "y": 252,
+            "text": "11",
+            "color": "red",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 359,
+            "y": 264,
+            "text": "12",
+            "color": "blue",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 126.08553225,
+            "y": 94.3140882096,
+            "text": "一评:m评卷02(mpj02),评分:11",
+            "fontSize": 20,
+            "color": "red"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 126.08553225,
+            "y": 118.3140882096,
+            "text": "二评:m评卷01(mpj01),评分:12",
+            "fontSize": 20,
+            "color": "blue"
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 934.2552612499999,
+            "y": 94.3140882096,
+            "text": "得分:11.5,满分:16",
+            "fontSize": 30
+          }
+        },
+        {
+          "type": "text",
+          "option": {
+            "x": 375,
+            "y": 17.64,
+            "text": "总分:46,主观题得分:46,客观题得分:0",
+            "fontSize": 40
+          }
+        }
+      ]
+    }
+  ]
+]