|
@@ -187,8 +187,14 @@ export async function addWatermark(
|
|
|
// }
|
|
|
// }
|
|
|
//显示复核人
|
|
|
- if (student.inspector) {
|
|
|
- drawText(x, (y += height), "复核人: " + student.inspector.loginName);
|
|
|
+ // if (student.inspector) {
|
|
|
+ // drawText(x, (y += height), "复核人: " + student.inspector.loginName);
|
|
|
+ // }
|
|
|
+ if (student.inspector?.length) {
|
|
|
+ const allNameStr = student.inspector
|
|
|
+ .map((item: any) => item.loginName)
|
|
|
+ .join("、");
|
|
|
+ drawText(x, (y += height), "复核人: " + allNameStr);
|
|
|
}
|
|
|
//显示主观题明细
|
|
|
if (
|