2023-12-26 06:35:38 +00:00
|
|
|
import React from 'react';
|
2024-01-02 07:27:42 +00:00
|
|
|
import { Link } from 'react-router-dom';
|
2024-01-26 08:56:03 +00:00
|
|
|
import { styled } from '@mui/material/styles';
|
|
|
|
|
import Box from '@mui/material/Box';
|
|
|
|
|
import Paper from '@mui/material/Paper';
|
|
|
|
|
import List from '@mui/material/List';
|
|
|
|
|
import ListItem from '@mui/material/ListItem';
|
|
|
|
|
import EditIcon from '@mui/icons-material/Edit';
|
|
|
|
|
import ListItemAvatar from '@mui/material/ListItemAvatar';
|
|
|
|
|
import ListItemIcon from '@mui/material/ListItemIcon';
|
|
|
|
|
import ListItemText from '@mui/material/ListItemText';
|
|
|
|
|
import Avatar from '@mui/material/Avatar';
|
|
|
|
|
import IconButton from '@mui/material/IconButton';
|
|
|
|
|
import FormGroup from '@mui/material/FormGroup';
|
|
|
|
|
import FormControlLabel from '@mui/material/FormControlLabel';
|
|
|
|
|
import Checkbox from '@mui/material/Checkbox';
|
|
|
|
|
import Grid from '@mui/material/Grid';
|
|
|
|
|
import Typography from '@mui/material/Typography';
|
|
|
|
|
import FolderIcon from '@mui/icons-material/Folder';
|
|
|
|
|
import DeleteIcon from '@mui/icons-material/Delete';
|
|
|
|
|
import AddIcon from '@mui/icons-material/Add';
|
|
|
|
|
import AddBoxOutlinedIcon from '@mui/icons-material/AddBoxOutlined';
|
|
|
|
|
|
|
|
|
|
import ListCreateUpdateDelete from '../../../components/list/ListCreateUpdateDelete'
|
2024-01-02 07:27:42 +00:00
|
|
|
|
|
|
|
|
import URL from 'constants/url';
|
|
|
|
|
|
|
|
|
|
import { default as EgovLeftNav } from 'components/leftmenu/EgovLeftNavAdmin';
|
2023-12-26 06:35:38 +00:00
|
|
|
|
|
|
|
|
|
2024-01-26 08:56:03 +00:00
|
|
|
function generate(element) {
|
|
|
|
|
return [0, 1, 2].map((value) =>
|
|
|
|
|
React.cloneElement(element, {
|
|
|
|
|
key: value,
|
|
|
|
|
}),
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const Demo = styled('div')(({ theme }) => ({
|
|
|
|
|
backgroundColor: theme.palette.background.paper,
|
|
|
|
|
}));
|
|
|
|
|
|
|
|
|
|
const Item = styled(Paper)(({ theme }) => ({
|
|
|
|
|
backgroundColor: theme.palette.mode === 'dark' ? '#1A2027' : '#fff',
|
|
|
|
|
...theme.typography.body2,
|
|
|
|
|
padding: theme.spacing(1),
|
|
|
|
|
textAlign: 'center',
|
|
|
|
|
color: theme.palette.text.secondary,
|
|
|
|
|
}));
|
|
|
|
|
|
2023-12-26 06:35:38 +00:00
|
|
|
function CommitteeCodeMgt(props) {
|
|
|
|
|
|
2024-01-26 08:56:03 +00:00
|
|
|
const [dense, setDense] = React.useState(false);
|
|
|
|
|
const [secondary, setSecondary] = React.useState(false);
|
|
|
|
|
|
2024-01-02 07:27:42 +00:00
|
|
|
const Location = React.memo(function Location() {
|
|
|
|
|
return (
|
|
|
|
|
<div className="location">
|
|
|
|
|
<ul>
|
|
|
|
|
<li><Link to={URL.MAIN} className="home">Home</Link></li>
|
|
|
|
|
<li><Link to={URL.ADMIN}>사이트 관리</Link></li>
|
|
|
|
|
<li>환경 설정</li>
|
2024-01-08 00:23:45 +00:00
|
|
|
<li>위원회 코드 관리</li>
|
2024-01-02 07:27:42 +00:00
|
|
|
</ul>
|
|
|
|
|
</div>
|
|
|
|
|
)
|
|
|
|
|
});
|
|
|
|
|
|
2023-12-26 06:35:38 +00:00
|
|
|
return (
|
|
|
|
|
<div className="container">
|
2024-01-02 07:27:42 +00:00
|
|
|
<div className="c_wrap">
|
|
|
|
|
{/* <!-- Location --> */}
|
|
|
|
|
<Location />
|
|
|
|
|
{/* <!--// Location --> */}
|
|
|
|
|
|
|
|
|
|
<div className="layout">
|
|
|
|
|
{/* <!-- Navigation --> */}
|
|
|
|
|
<EgovLeftNav></EgovLeftNav>
|
|
|
|
|
{/* <!--// Navigation --> */}
|
|
|
|
|
|
|
|
|
|
<div className="contents " id="contents">
|
|
|
|
|
{/* <!-- 본문 --> */}
|
|
|
|
|
<div className="top_tit">
|
|
|
|
|
<h1 className="tit_1">위원회 코드 관리</h1>
|
|
|
|
|
</div>
|
|
|
|
|
|
2024-01-26 08:56:03 +00:00
|
|
|
<Box
|
|
|
|
|
sx={{
|
|
|
|
|
display: 'flex',
|
|
|
|
|
flexWrap: 'wrap',
|
|
|
|
|
'& > :not(style)': {
|
|
|
|
|
m: 1,
|
|
|
|
|
width: 245,
|
|
|
|
|
},
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
<ListCreateUpdateDelete title="중앙건설기술심의" items={["중앙건설기술심의", "테스트2"]}/>
|
|
|
|
|
<ListCreateUpdateDelete title="총괄위원회" items={[]}/>
|
|
|
|
|
<ListCreateUpdateDelete title="건설기준위원회" items={[]}/>
|
|
|
|
|
<ListCreateUpdateDelete title="실무위원회" items={[]}/>
|
|
|
|
|
</Box>
|
2024-01-02 07:27:42 +00:00
|
|
|
{/* <!--// 본문 --> */}
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2023-12-26 06:35:38 +00:00
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export default CommitteeCodeMgt;
|