From 2719e480ca4ad4076e5cb5c0c0a40d55e16ea77e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=8D=A1=E8=8B=A5?= Date: Sun, 8 Mar 2026 09:12:15 +0800 Subject: [PATCH] =?UTF-8?q?sync:=20soul-admin=20=E9=A1=B5=E9=9D=A2=20|=20?= =?UTF-8?q?=E5=8E=9F=E5=9B=A0:=20=E5=89=8D=E7=AB=AF=E9=A1=B5=E9=9D=A2?= =?UTF-8?q?=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/pages/find-partner/FindPartnerPage.tsx | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/soul-admin/src/pages/find-partner/FindPartnerPage.tsx b/soul-admin/src/pages/find-partner/FindPartnerPage.tsx index 18718cff..e619ebe4 100644 --- a/soul-admin/src/pages/find-partner/FindPartnerPage.tsx +++ b/soul-admin/src/pages/find-partner/FindPartnerPage.tsx @@ -1,17 +1,19 @@ import { useState } from 'react' -import { Users, List, Handshake, GraduationCap, UserPlus, BarChart3 } from 'lucide-react' +import { Users, List, Handshake, GraduationCap, UserPlus, BarChart3, BookUser } from 'lucide-react' import { MatchPoolTab } from './tabs/MatchPoolTab' import { MatchRecordsTab } from './tabs/MatchRecordsTab' import { ResourceDockingTab } from './tabs/ResourceDockingTab' import { MentorBookingTab } from './tabs/MentorBookingTab' import { TeamRecruitTab } from './tabs/TeamRecruitTab' import { CKBStatsTab } from './tabs/CKBStatsTab' +import { MentorsPage } from '@/pages/mentors/MentorsPage' const TABS = [ { id: 'pool', label: '匹配池', icon: Users }, { id: 'records', label: '匹配记录', icon: List }, { id: 'resource', label: '资源对接', icon: Handshake }, { id: 'mentor', label: '导师预约', icon: GraduationCap }, + { id: 'mentors-manage', label: '导师管理', icon: BookUser }, { id: 'team', label: '团队招募', icon: UserPlus }, { id: 'stats', label: '存客宝统计', icon: BarChart3 }, ] as const @@ -29,11 +31,11 @@ export function FindPartnerPage() { 找伙伴

- 管理匹配池、匹配记录、资源对接、导师预约、团队招募及存客宝数据统计 + 管理匹配池、匹配记录、资源对接、导师预约 / 导师管理、团队招募及存客宝数据统计

-
+
{TABS.map((tab) => { const isActive = activeTab === tab.id return ( @@ -58,6 +60,11 @@ export function FindPartnerPage() { {activeTab === 'records' && } {activeTab === 'resource' && } {activeTab === 'mentor' && } + {activeTab === 'mentors-manage' && ( +
+ +
+ )} {activeTab === 'team' && } {activeTab === 'stats' && }