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' && }