Merge branch 'feature_bugfix/251201_py_h5_ui' of https://git.valuefrontier.cn/vf/vf_react into feature_bugfix/251201_py_h5_ui

This commit is contained in:
2025-12-05 19:05:55 +08:00
6 changed files with 25 additions and 22 deletions

View File

@@ -348,7 +348,7 @@ const CompactSearchBox = ({
}
const params = buildFilterParams({
industry_code: value?.join(',') || ''
industry_code: value?.[value.length - 1] || ''
});
triggerSearch(params);
};

View File

@@ -468,7 +468,7 @@ export const EventFormModal: React.FC<EventFormModalProps> = ({
open={isOpen}
onCancel={onClose}
width={600}
destroyOnClose
destroyOnHidden
maskClosable={true}
keyboard
className="event-form-modal"