diff --git a/index.html b/index.html index dbfab41..615d90e 100644 --- a/index.html +++ b/index.html @@ -722,6 +722,7 @@ const SITE_MAP = [ {label:'菜品详情', file:'eat-dish-detail.html'}, {label:'订餐', file:'eat-order.html'}, {label:'订单确认', file:'eat-order-confirm.html'}, + {label:'购物车', file:'eat-cart.html'}, {label:'就餐记录', file:'eat-meal-record.html'}, {label:'AI营养助手', file:'ask-home.html'}, {label:'AI对话', file:'ask-chat.html'}, @@ -736,8 +737,14 @@ const SITE_MAP = [ {label:'健康档案', file:'me-health.html'}, {label:'我的订单', file:'me-orders.html'}, {label:'订单详情', file:'me-order-detail.html'}, + {label:'订单详情-待处理', file:'me-order-detail-pending.html'}, + {label:'我的收藏', file:'me-favorites.html'}, {label:'我的余额', file:'me-wallet.html'}, + {label:'会员中心', file:'me-vip.html'}, + {label:'消息中心', file:'me-messages.html'}, + {label:'操作日志', file:'me-logs.html'}, {label:'设置', file:'me-settings.html'}, + {label:'账户管理', file:'me-account.html'}, {label:'扫码溯源', file:'trace-query.html'}, {label:'溯源链路', file:'trace-detail.html'} ] }, diff --git a/other-module/mini-program/nutrition/make-create.html b/other-module/mini-program/nutrition/make-create.html index 655b784..6ee79be 100644 --- a/other-module/mini-program/nutrition/make-create.html +++ b/other-module/mini-program/nutrition/make-create.html @@ -54,16 +54,18 @@ } .cover-upload .icon { font-size: 32px; } .cover-upload .text { font-size: 13px; } - .cover-type-row { - display: flex; gap: 10px; margin-top: 10px; + /* 作品视频上传 */ + .video-upload { + display: flex; align-items: center; gap: 12px; margin-top: 14px; } - .cover-type-btn { - flex: 1; display: flex; align-items: center; justify-content: center; gap: 6px; - padding: 10px 0; border-radius: 10px; border: 1px solid #e8e8e8; - background: #fafafa; font-size: 13px; color: #333; cursor: pointer; + .video-upload-box { + width: 100px; height: 72px; border: 1.5px dashed #d9d9d9; border-radius: 10px; + display: flex; flex-direction: column; align-items: center; justify-content: center; + gap: 3px; background: #fafafa; cursor: pointer; color: #999; flex-shrink: 0; } - .cover-type-btn .ct-icon { font-size: 18px; } - .cover-type-btn:active { border-color: #1677ff; background: #f0f7ff; color: #1677ff; } + .video-upload-box .vu-icon { font-size: 24px; } + .video-upload-box .vu-text { font-size: 10px; } + .video-upload-hint { font-size: 12px; color: #999; line-height: 1.5; } /* 步骤媒体上传 */ .step-media-row { display: flex; gap: 8px; margin: 6px 0 0 30px; @@ -108,15 +110,23 @@
- +
+
封面图
- 📷 - 上传食谱封面 + 🖼️ + 上传食谱封面图
-
- - +
+ +
+
作品视频
+
+
+ 🎬 + 上传视频 +
+
可选,至多上传1个视频
建议时长不超过5分钟
@@ -156,7 +166,6 @@
🖼️加图片
-
🎬加视频
2
@@ -164,7 +173,6 @@
🖼️加图片
-
🎬加视频
+ 添加步骤
diff --git a/other-module/mini-program/nutrition/make-follow.html b/other-module/mini-program/nutrition/make-follow.html index 64abe3c..76fc16c 100644 --- a/other-module/mini-program/nutrition/make-follow.html +++ b/other-module/mini-program/nutrition/make-follow.html @@ -109,7 +109,7 @@
📶WiFi🔋
@@ -145,10 +145,7 @@
2
平底锅少油煎至两面金黄,切片备用
-
-
🍳
-
-
+
🍳
3
diff --git a/other-module/mini-program/nutrition/make-home.html b/other-module/mini-program/nutrition/make-home.html index d639f4f..a5ed1ef 100644 --- a/other-module/mini-program/nutrition/make-home.html +++ b/other-module/mini-program/nutrition/make-home.html @@ -115,7 +115,7 @@
- + 照做食谱 diff --git a/other-module/mini-program/nutrition/make-popular.html b/other-module/mini-program/nutrition/make-popular.html index a04c509..d2aa5d5 100644 --- a/other-module/mini-program/nutrition/make-popular.html +++ b/other-module/mini-program/nutrition/make-popular.html @@ -31,6 +31,19 @@ .page-content { flex: 1; overflow-y: auto; background: #f5f5f5; } .page-content::-webkit-scrollbar { display: none; } + /* 搜索栏 */ + .search-bar { + padding: 10px 16px; background: #fff; + } + .search-input { + width: 100%; height: 36px; border: none; border-radius: 18px; + background: #f5f5f5; padding: 0 14px 0 36px; font-size: 14px; + outline: none; font-family: inherit; + background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23bbb'%3E%3Ccircle cx='7' cy='7' r='5.5' stroke='%23bbb' stroke-width='1.5' fill='none'/%3E%3Cline x1='11' y1='11' x2='14.5' y2='14.5' stroke='%23bbb' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); + background-repeat: no-repeat; background-position: 12px center; + } + .search-input::placeholder { color: #bbb; } + /* 分类 Tab */ .cat-tabs { display: flex; gap: 0; background: #fff; padding: 10px 16px 0; @@ -99,9 +112,13 @@
+ +
@@ -223,6 +240,13 @@
+ + diff --git a/other-module/mini-program/nutrition/trace-detail.html b/other-module/mini-program/nutrition/trace-detail.html index 0573fab..8583f63 100644 --- a/other-module/mini-program/nutrition/trace-detail.html +++ b/other-module/mini-program/nutrition/trace-detail.html @@ -3,10 +3,14 @@ - 溯源详情 | 智能餐养小程序 + 溯源链路详情 | 智能餐养小程序
-
09:41 -
- - - -
+
📶WiFi🔋
- -
- -
-
有机西兰花
-
-
批次号BL20260512
-
产地山东寿光有机农场
+ +
+
反向溯源 · 从取餐追溯至产地
+
ST-EX-XR01-MT-JXRJ-080K-20260415-002
+
+ ✅ 全程合格 + 鸡胸肉 + 外采 · 鲜肉直供公司 + 14 个节点
- -
-
溯源链路
- -
-
-
-
🌱 种植
-
2026-03-15
山东寿光有机农场
+ +
+ +
+
+
👤
+
+
+
+
+
👤 用户取餐✅ 正常
+
关联订单食材映射
+
⏱ 2026-04-22 11:40 ~ 12:30
+
关联订单:SO20260422021#1、SO20260422087#2、SO20260422103#1
+
ORD-20260422-021
+
- -
-
-
-
🧪 检测
-
2026-05-10
SGS检测中心 · 农残未检出
+ +
+
+
🧪
+
+
+
+
+
🧪 营养检验✅ 正常
+
营养检测 · 成品抽检
+
⏱ 2026-04-22 13:30
+
COOK-001 宫保鸡丁 · 热量:186kcal/100g · 蛋白质:18.2g · 脂肪:9.4g · 结论:达标
+
NUT-20260422-001
+
- -
-
-
-
🚛 运输
-
2026-05-11
冷链物流 · 全程4°C
+ +
+
+
♻️
+
+
+
+
+
♻️ 余量处置✅ 正常
+
余量处置 · 多餐线余量登记
+
⏱ 2026-04-22 13:00 ~ 13:20
+
分支A:SERVE-001 余量0.3kg 冷藏留用 · 分支B:SERVE-007 余量0.1kg 废弃 · 经办人:李处置
+
DISP-20260422-001
+
- -
-
-
-
🏪 入库
-
2026-05-12
阳光食堂中央厨房
+ +
+
+
🍽️
+
+
+
+
+
🍽️ 上餐监控✅ 正常
+
上餐批次分支 · 多餐线分发
+
⏱ 2026-04-22 11:30 ~ 12:00
+
分支A:SERVE-001 → A区中餐线 6.8kg · 分支B:SERVE-007 → B区中餐线 1.4kg
+
SERVE-20260422-001
+
- -
-
-
-
🍽️ 出餐
-
2026-05-12
阳光食堂
+ +
+
+
🍳
+
+
+
+
+
🍳 按单烹制✅ 正常
+
烹制任务分支 · 多锅次烹制
+
⏱ 2026-04-22 11:00 ~ 11:35
+
分支A:COOK-001 宫保鸡丁 张厨师 2锅 · 分支B:COOK-009 辣子鸡 王厨师 1锅
+
COOK-20260422-001
+
-
- -
-
认证标识
-
-
有机认证
-
绿色食品
-
ISO22000
+ +
+
+
🔪
+
+
+
+
+
🔪 净菜组配✅ 正常
+
组配任务分支 · 分配至多道菜品
+
⏱ 2026-04-22 10:20 ~ 10:40
+
分支A:CMB-001 宫保鸡丁 5.0kg · 分支B:CMB-006 辣子鸡 3.5kg
+
CMB-20260422-001
+
+
+
+ +
+
+
🗄️
+
+
+
+
+
🗄️ 净菜进柜✅ 正常
+
净菜进柜 · 智能柜格口存放
+
⏱ 2026-04-22 10:00 ~ 10:15
+
分支A:B区智能柜-1号 B1-03格口 4.2kg 3.8°C · 分支B:B2-01格口 4.3kg 4.0°C
+
NC-CAB-JXRJ-20260422-01
+
+
+
+ +
+
+
🚚
+
+
+
+
+
🚚 净菜内供✅ 正常
+
净菜内供分发 · 多厨房领用
+
⏱ 2026-04-22 09:30 ~ 10:00
+
分支A:INT-001 → A区厨房 4.2kg · 分支B:INT-002 → B区厨房 4.3kg · 分支C:INT-009 → C区厨房 2.5kg
+
NC-INT-JXRJ-20260422-01
+
+
+
+ +
+
+
📦
+
+
+
+
+
📦 净菜入库✅ 正常
+
净菜入库 · 拆分多批次入库
+
⏱ 2026-04-22 09:10
+
分支A:NC-IN-008-A 5.1kg · A仓-肉禽区-01 · 分支B:NC-IN-008-B 3.4kg · 分支C:NC-IN-008-C 2.5kg
+
NC-IN-JXRJ-20260422-01
+
+
+
+ +
+
+
🥬
+
+
+
+
+
🥬 净菜加工✅ 正常
+
净菜加工 · 切丁
+
⏱ 2026-04-22 08:30 ~ 09:00
+
分支A:投入6kg→产出5.1kg · 分支B:投入4kg→产出3.4kg · 分支C:投入3kg→产出2.5kg
+
NC-PROC-JXRJ-20260422-01
+
+
+
+ +
+
+
🏪
+
+
+
+
+
🏪 毛菜存储✅ 正常
+
毛菜存储 · B仓-肉类冷藏库
+
⏱ 2026-04-15 11:00 ~ 04-22 08:00
+
存放区域:B仓-肉类区-01 · 温区:冷藏(0~4℃) · 在库量:15kg · 保质期至:2026-04-19
+
ST-EX-XR01-MT-JXRJ-080K-20260415-002
+
+
+
+ +
+
+
📥
+
+
+
+
+
📥 毛菜入库✅ 正常
+
毛菜入库 · 鲜肉直供公司
+
⏱ 2026-04-15 11:00
+
入库单号:IN-20260415-003 · 入库量:80kg · 存放区域:B仓-肉类区-01 · 操作类型:人工录入
+
ST-EX-XR01-MT-JXRJ-080K-20260415-002
+
+
+
+ +
+
+
🔬
+
+
+
+
+
🔬 卫生检测✅ 正常
+
卫生检测 · 瘦肉精
+
⏱ 2026-04-15 10:30
+
检测项目:瘦肉精 · 检测值:未检出 · 报告:RPT-20260415-002 · 结论:合格
+
ST-EX-XR01-MT-JXRJ-080K-20260415-002
+
+
+
+ +
+
+
🛒
+
+
+
+
🛒 采供入库✅ 正常
+
采购入库 · 鲜肉直供公司
+
⏱ 2026-04-15 09:15
+
采购单号:PO-20260415-002 · 入库量:80kg · 供应商:鲜肉直供公司 · 验收人:王验收
+
ST-EX-XR01-MT-JXRJ-080K-20260415-002
+
+
-
- + \ No newline at end of file diff --git a/other-module/mini-program/nutrition/trace-query.html b/other-module/mini-program/nutrition/trace-query.html index 6195e26..1e5bef3 100644 --- a/other-module/mini-program/nutrition/trace-query.html +++ b/other-module/mini-program/nutrition/trace-query.html @@ -6,7 +6,11 @@ 扫码溯源 | 智能餐养小程序
-
09:41 -
- - - -
+
📶WiFi🔋
- -
- -
-
- - - + + - -
-
手动输入溯源码
-
- - + +
+
📋 最近扫码记录(食材维度)
+
+
+
鸡胸肉用于 宫保鸡丁
+ ✅ 合格 +
+
ST-EX-XR01-MT-JXRJ-080K-20260415-002
+
+ 昨日 11:32 + 🔗 溯源链路 +
-
- -
-
最近扫描记录
- -
🥦
-
-
有机西兰花
-
批次 BL20260512
+
+
+
草鱼用于 清蒸鱼
+ ✅ 合格
- 今天 - -
- -
🥚
-
+
+
+
西兰花用于 炒西兰花
+ ✅ 合格 +
+
ST-EX-LY01-VG-XLHU-080K-20260416-001
+
+ 前天 12:10 + 🔗 溯源链路 +
+
+
+
+
花生用于 宫保鸡丁
+ ✅ 合格 +
+
ST-EX-LY02-NU-HUSR-050K-20260413-004
+
+ 前天 11:30 + 🔗 溯源链路 +
+
-
- + \ No newline at end of file