图片预览

This commit is contained in:
huangdeliang
2021-03-23 14:42:01 +08:00
parent cdb93a1702
commit 424b98ad57
9 changed files with 292 additions and 234 deletions

View File

@ -609,6 +609,12 @@ export function dealHealthy(customerHealthy) {
? `${customerHealthy.otherOperationHistory}`
: "";
}
if (customerHealthy.hasOwnProperty("medicalReport")) {
const urls = customerHealthy.medicalReport.split(",");
customerHealthy.medicalReport_one = urls[0];
customerHealthy.medicalReport_two = urls[1];
customerHealthy.medicalReport_three = urls[2];
}
if (customerHealthy.hasOwnProperty("defecationNum")) {
customerHealthy.defecationNum += "次/天";
}