diff --git a/.workbuddy/memory/2026-04-09.md b/.workbuddy/memory/2026-04-09.md
index 85e2546..56c8343 100644
--- a/.workbuddy/memory/2026-04-09.md
+++ b/.workbuddy/memory/2026-04-09.md
@@ -27,3 +27,8 @@
- 菜单项:我要推荐、客户列表、邀请好友、个人中心
- 图片使用OSS直链,避免接口延迟
- 对应页面路径保持不变
+
+## 客户列表显示接待人员 (13:57)
+- 在客户卡片中增加接待人员信息显示
+- 字段来源:receptionistName(来自 ShopDealerApply model)
+- 仅当接待人员存在时显示
diff --git a/src/dealer/customer/index.tsx b/src/dealer/customer/index.tsx
index 9848b3e..6c574cf 100644
--- a/src/dealer/customer/index.tsx
+++ b/src/dealer/customer/index.tsx
@@ -465,6 +465,13 @@ const CustomerIndex = () => {
{customer?.refereeName}
+ {/* 接待人员 */}
+ {customer.receptionistName && (
+
+ 接待人员:{customer.receptionistName}
+
+ )}
+
{/* 显示 comments 字段 */}
跟进情况:{customer.comments || '暂无'}