适配最新的食谱

This commit is contained in:
2026-05-10 20:25:48 +08:00
parent 59b3117eb9
commit 4459e5acf3
8 changed files with 6 additions and 15 deletions
+2 -2
View File
@@ -71,13 +71,13 @@ interface WeeklyMenu {
meals: DailyMeal[];
}
// 餐食类型配置 (体弱儿在第四位)
// 餐食类型配置
const MEAL_TYPES = [
{code: MealTypeCode.BREAKFAST, label: "早餐", icon: Sun},
{code: MealTypeCode.FRUIT, label: "水果餐", icon: Apple},
{code: MealTypeCode.LUNCH, label: "中餐", icon: UtensilsCrossed},
{code: MealTypeCode.SPECIAL, label: "体弱儿餐", icon: Heart},
{code: MealTypeCode.SNACK, label: "午点", icon: Cookie},
{code: MealTypeCode.SPECIAL, label: "体弱儿餐", icon: Heart},
];
type UploadState = "idle" | "uploading" | "parsing" | "done" | "error";