完善评查详情

This commit is contained in:
2025-04-18 15:41:43 +08:00
parent 119f9197b2
commit 01d93522b8
25 changed files with 1731 additions and 511 deletions
+3 -3
View File
@@ -12,8 +12,8 @@ interface ReviewTabsProps {
export function ReviewTabs({ activeTab, onTabChange, children }: ReviewTabsProps) {
return (
<div className="tab-container">
<div className="tab-nav">
<div className="tab-container w-full flex-1">
<div className="tab-nav w-full flex">
<button
className={`tab-nav-item ${activeTab === 'preview' ? 'active' : ''}`}
onClick={() => onTabChange('preview')}
@@ -40,7 +40,7 @@ export function ReviewTabs({ activeTab, onTabChange, children }: ReviewTabsProps
</button>
</div>
<div className="tab-content">
<div className="tab-content w-full">
{children}
</div>
</div>