|
@@ -197,9 +197,9 @@ export async function addWatermark(
|
|
// }
|
|
// }
|
|
if (student.inspector && student.inspector.length) {
|
|
if (student.inspector && student.inspector.length) {
|
|
const allNameStr = student.inspector
|
|
const allNameStr = student.inspector
|
|
- .map((item: any) => item.name)
|
|
|
|
- .join("、");
|
|
|
|
- drawText(x, (y += height), "复核人: " + allNameStr);
|
|
|
|
|
|
+ .map((item: any, index) => `复核人${index + 1}:${item.name}`)
|
|
|
|
+ .join(",");
|
|
|
|
+ drawText(x, (y += height), allNameStr);
|
|
}
|
|
}
|
|
//显示主观题明细
|
|
//显示主观题明细
|
|
if (
|
|
if (
|