巴林闲侠 2 years ago
parent
commit
82a381345d
  1. 10
      web/client/src/sections/install/containers/system.jsx

10
web/client/src/sections/install/containers/system.jsx

@ -61,7 +61,6 @@ const Example = (props) => {
dispatch(install.getProjectAppList(query)).then((res) => {// dispatch(install.getProjectAppList(query)).then((res) => {//
setAppList(res.payload.data) setAppList(res.payload.data)
}) })
console.log('user', user);
}, []) }, [])
useEffect(() => { useEffect(() => {
getProjectPomsList(); getProjectPomsList();
@ -224,6 +223,15 @@ const Example = (props) => {
) )
} }
}, },
{
title: '映射类型',
dataIndex: "mappingClass",
key: 'mappingClass',
render: (_, row) => {
let data = { wisdom: '智慧类', monitor: '监测类', other: '其他' }
return data[row.mappingClass]
}
},
{ {
title: '关联时间', title: '关联时间',
dataIndex: "createTime", dataIndex: "createTime",

Loading…
Cancel
Save