食谱编辑交互

This commit is contained in:
huangdeliang
2021-02-19 19:08:08 +08:00
parent e404c3be1a
commit 854171897d
10 changed files with 644 additions and 107 deletions

View File

@ -384,7 +384,8 @@ export const yesNoName = [
"longEatDrugFlag",
"allergyFlag",
"smokeFlag",
"secondSmoke"
"secondSmoke",
"sleepDrugFlag"
];
export const dictName = [
@ -550,7 +551,7 @@ export function dealHealthy(customerHealthy) {
customerHealthy.getupTime += "点";
}
if (customerHealthy.hasOwnProperty("signList")) {
customerHealthy.signStr = customerHealthy.signList
customerHealthy.signStr = (customerHealthy.signList || [])
.map(obj => obj.name)
.join("");
}