diff --git a/src/views/Community/components/SearchFilters/CompactSearchBox.js b/src/views/Community/components/SearchFilters/CompactSearchBox.js
index d61ca138..d6b6016b 100644
--- a/src/views/Community/components/SearchFilters/CompactSearchBox.js
+++ b/src/views/Community/components/SearchFilters/CompactSearchBox.js
@@ -524,90 +524,92 @@ const CompactSearchBox = ({
- {/* 第二行:筛选条件 */}
-
- {/* 左侧筛选 */}
-
- {/* 行业筛选 */}
-
-
- {isMobile ? '行业' : '行业筛选'}
-
- }
- changeOnSelect
- showSearch={{
- filter: (inputValue, path) =>
- path.some(option =>
- option.label.toLowerCase().includes(inputValue.toLowerCase())
- )
- }}
- allowClear
- expandTrigger="hover"
- displayRender={(labels) => labels[labels.length - 1] || (isMobile ? '行业' : '行业筛选')}
- disabled={industryLoading}
- style={{ minWidth: isMobile ? 70 : 80 }}
- suffixIcon={null}
- className="transparent-cascader"
- />
-
- {/* 事件等级 */}
-
-
- {isMobile ? '等级' : '事件等级'}
-
- }
- maxTagCount={0}
- maxTagPlaceholder={(omittedValues) => isMobile ? `${omittedValues.length}项` : `已选 ${omittedValues.length} 项`}
- className="bracket-select"
- >
- {IMPORTANCE_OPTIONS.map(opt => (
-
- ))}
-
-
-
- {/* 右侧排序和重置 */}
-
- {/* 排序 */}
-
- {SORT_OPTIONS.map(opt => (
-
- ))}
-
+ }
+ changeOnSelect
+ showSearch={{
+ filter: (inputValue, path) =>
+ path.some(option =>
+ option.label.toLowerCase().includes(inputValue.toLowerCase())
+ )
+ }}
+ allowClear
+ expandTrigger="hover"
+ displayRender={(labels) => labels[labels.length - 1] || (isMobile ? '行业' : '行业筛选')}
+ disabled={industryLoading}
+ style={{ minWidth: isMobile ? 70 : 80 }}
+ suffixIcon={null}
+ className="transparent-cascader"
+ />
- {/* 重置按钮 */}
- }
- onClick={handleReset}
- type="text"
- style={{ color: PROFESSIONAL_COLORS.text.secondary }}
- >
- {!isMobile && '重置筛选'}
-
-
-
+ {/* 事件等级 */}
+
+
+ {isMobile ? '等级' : '事件等级'}
+
+ }
+ maxTagCount={0}
+ maxTagPlaceholder={(omittedValues) => isMobile ? `${omittedValues.length}项` : `已选 ${omittedValues.length} 项`}
+ className="bracket-select"
+ >
+ {IMPORTANCE_OPTIONS.map(opt => (
+
+ ))}
+
+
+
+ {/* 右侧排序和重置 */}
+
+ {/* 排序 */}
+
+ {SORT_OPTIONS.map(opt => (
+
+ ))}
+
+
+ {/* 重置按钮 */}
+ }
+ onClick={handleReset}
+ type="text"
+ style={{ color: PROFESSIONAL_COLORS.text.secondary }}
+ >
+ {!isMobile && '重置筛选'}
+
+
+
+ )}
);
};