diff --git a/web/src/components/common/ui/CardPro.js b/web/src/components/common/ui/CardPro.js
index 5c194c74..2c8f7d30 100644
--- a/web/src/components/common/ui/CardPro.js
+++ b/web/src/components/common/ui/CardPro.js
@@ -122,24 +122,24 @@ const CardPro = ({
)}
{/* 操作按钮和搜索表单的容器 */}
- {/* 在移动端时根据showMobileActions状态控制显示,在桌面端时始终显示 */}
- {(!isMobile || showMobileActions) && (
-
- {/* 操作按钮区域 - 用于type1和type3 */}
- {(type === 'type1' || type === 'type3') && actionsArea && (
-
- {actionsArea}
-
- )}
+
+ {/* 操作按钮区域 - 用于type1和type3 */}
+ {(type === 'type1' || type === 'type3') && actionsArea && (
+
+ {actionsArea}
+
+ )}
+
+ {/* 搜索表单区域 - 所有类型都可能有 */}
+ {searchArea && (
+
+ {searchArea}
+
+ )}
+
- {/* 搜索表单区域 - 所有类型都可能有 */}
- {searchArea && (
-
- {searchArea}
-
- )}
-
- )}
);
};