From 128563bfeb5c67ad7f58cbd2aa9017554ac8dad5 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E8=B5=B5=E5=BF=A0=E6=9E=97?= <170083662@qq.com>
Date: Thu, 9 Apr 2026 14:04:08 +0800
Subject: [PATCH] =?UTF-8?q?feat(home):=20=E5=B0=86=E9=A6=96=E9=A1=B5?=
=?UTF-8?q?=E8=8F=9C=E5=8D=95=E6=94=B9=E4=B8=BA=E7=A1=AC=E7=BC=96=E7=A0=81?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
- 首页4个功能按钮改为硬编码,删除后端接口请求
- 菜单项包括:我要推荐、客户列表、邀请好友、个人中心
- 菜单图标使用OSS直链,减少接口延迟
- Grid组件中map数据源由接口返回改为本地硬编码数据
- ContactSection中在线咨询功能改用button标签并简化逻辑
- 增加ContactSection按钮样式覆盖,去除默认边框和样式
---
.workbuddy/memory/2026-04-09.md | 5 +++++
src/dealer/customer/index.tsx | 7 +++++++
2 files changed, 12 insertions(+)
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 || '暂无'}