This commit is contained in:
ls
2025-04-01 21:30:45 +08:00
parent 4c1d9bf55e
commit 0424b3950e
2 changed files with 7 additions and 0 deletions

View File

@@ -337,6 +337,13 @@ public class ExperimentDocServiceImpl extends ServiceImpl<ExperimentDocMapper, E
new String[] {"生产厂家", getStringOrDefault(info, "sampleManufacturer"), "试验样品数量",
sampleInfoList.size() + ""},
new String[] {"放置地点", "", "接收日期", ""},}).border(BorderStyle.DEFAULT).create());
String imgUrls = info.getString("picture");
if (StringUtils.isNotBlank(imgUrls)) {
if(!StringUtils.startsWith(imgUrls, "http")){
imgUrls = "http://" + serverIp + imgUrls;
}
params.put("偏置原理图"+i, imgUrls);
}
}
}
}

Binary file not shown.