科研人才模块首页

This commit is contained in:
“zhuzihan”  2025-07-02 16:56:06 +08:00
parent fa76b4e719
commit 6dd6f8ebf1
2 changed files with 1241 additions and 1089 deletions

File diff suppressed because it is too large Load Diff

View File

@ -315,8 +315,8 @@ const handleSearch = () => {
filteredLabs.value = labs.value;
} else {
filteredLabs.value = labs.value.filter(lab =>
lab.basicInformation.name1.includes(searchQuery.value) ||
(lab.name0 && lab.name0.includes(searchQuery.value))
lab.basicInformation.name1 && lab.basicInformation.name1.includes(searchQuery.value) ||
(lab.basicInformation.name0 && lab.basicInformation.name0.includes(searchQuery.value))
);
}