diff --git a/web/client/src/sections/quanju/containers/footer/conserve/right/right-top.js b/web/client/src/sections/quanju/containers/footer/conserve/right/right-top.js index c6be0020..540362c5 100644 --- a/web/client/src/sections/quanju/containers/footer/conserve/right/right-top.js +++ b/web/client/src/sections/quanju/containers/footer/conserve/right/right-top.js @@ -48,10 +48,11 @@ const RightTop = (props) => { useEffect(() => { dispatch(getRoadmaintain()).then((res) => { setRoadmaintainList(res.payload.data.reportList.filter((item, index) => { - return item.projectType == "road" - || item.projectType == "countyRoad" - || item.projectType == "villageRoad" - || item.projectType == "rusticRoad" + return item.projectType == "road" + || item.projectType == "countyRoad" + || item.projectType == "villageRoad" + || item.projectType == "rusticRoad" + || !item.projectType })) }) }, [])