!189 修复健康数据问题

Merge pull request !189 from 德仔/develop
This commit is contained in:
德仔 2021-04-01 17:42:56 +08:00 committed by Gitee
commit 81f6f836f5

View File

@ -552,7 +552,7 @@ export function dealHealthy(customerHealthy) {
const signs = customerHealthy.otherPhysicalSigns const signs = customerHealthy.otherPhysicalSigns
? [customerHealthy.otherPhysicalSigns] ? [customerHealthy.otherPhysicalSigns]
: []; : [];
customerHealthy.signList.forEach(obj => { (customerHealthy.signList || []).forEach(obj => {
signs.push(obj.name); signs.push(obj.name);
}); });
customerHealthy.physicalSigns = signs.join(","); customerHealthy.physicalSigns = signs.join(",");