fix(SidebarMenu): 修改搜索框占位文本为"搜索客户..."

原占位文本"搜索联系人、群组"不符合当前业务场景,更新为更准确的"搜索客户..."
This commit is contained in:
超级老白兔
2025-09-02 17:58:19 +08:00
parent 4c5e049c16
commit 22560a5ce2

View File

@@ -93,7 +93,7 @@ const SidebarMenu: React.FC<SidebarMenuProps> = ({
{/* 搜索栏 */}
<div className={styles.searchBar}>
<Input
placeholder="搜索联系人、群组"
placeholder="搜索客户..."
prefix={<SearchOutlined />}
value={searchKeyword}
onChange={e => handleSearch(e.target.value)}