Browse Source

feat:筛选管廊结构物类型

master
zhaobing’ 1 year ago
parent
commit
f7d18e6f45
  1. 2
      web/client/src/sections/deviceManage/containers/network.js

2
web/client/src/sections/deviceManage/containers/network.js

@ -28,7 +28,7 @@ function Network(props) {
useEffect(() => {
dispatch(projectRegime.getProjectList()).then(res => {
if (res.success) {
const dp = res.payload.data?.rows?.map(item => {
const dp = res.payload.data?.rows?.filter(i=>i.type==='管廊')?.map(item => {
return {
label: item?.name,
id: item?.id,

Loading…
Cancel
Save