完成忌口检查

This commit is contained in:
huangdeliang
2021-03-15 20:53:32 +08:00
parent 5167828ff8
commit f02235936c
8 changed files with 253 additions and 127 deletions

View File

@ -598,6 +598,11 @@ export function dealHealthy(customerHealthy) {
? `${customerHealthy.otherMotionField}`
: "";
}
if (customerHealthy.hasOwnProperty("otherOperationHistory")) {
customerHealthy.operationHistory += customerHealthy.otherOperationHistory
? `${customerHealthy.otherOperationHistory}`
: "";
}
if (customerHealthy.hasOwnProperty("defecationNum")) {
customerHealthy.defecationNum += "次/天";
}