diff --git a/egovframe-template-simple-react-contribution/src/css/page.css b/egovframe-template-simple-react-contribution/src/css/page.css index 0b6b4d0..791049e 100644 --- a/egovframe-template-simple-react-contribution/src/css/page.css +++ b/egovframe-template-simple-react-contribution/src/css/page.css @@ -169,6 +169,28 @@ .userList .result .list_item > div:nth-child(6) {width: 100px;} .userList .result .list_item > div:nth-child(7) {width: 100px;} + /* 사이트관리 > 환경설정 > 메뉴관리 */ + .menuList .head > span:nth-child(1) {width: 60px;} + .menuList .head > span:nth-child(2) {width: 100px;} + .menuList .head > span:nth-child(3) {width: 100px;} + .menuList .head > span:nth-child(4) {width: 120px;} + .menuList .head > span:nth-child(5) {width: 100px;} + .menuList .head > span:nth-child(6) {width: 100px;} + .menuList .head > span:nth-child(7) {width: 100px;} + .menuList .head > span:nth-child(8) {width: 100px;} + .menuList .head > span:nth-child(9) {width: 100px;} + .menuList .head > span:nth-child(10) {width: 100px;} + .menuList .result .list_item > div:nth-child(1) {width: 60px;} + .menuList .result .list_item > div:nth-child(2) {width: 100px;} + .menuList .result .list_item > div:nth-child(3) {width: 100px;} + .menuList .result .list_item > div:nth-child(4) {width: 120px;} + .menuList .result .list_item > div:nth-child(5) {width: 100px;} + .menuList .result .list_item > div:nth-child(6) {width: 100px;} + .menuList .result .list_item > div:nth-child(7) {width: 100px;} + .menuList .result .list_item > div:nth-child(8) {width: 100px;} + .menuList .result .list_item > div:nth-child(9) {width: 100px;} + .menuList .result .list_item > div:nth-child(10) {width: 100px;} + /* 사이트소개 */ .SITE_INTRO .ds_1 .t_1 {margin-top: 52px; color: #000; font-size: 26px; font-weight: 500; text-align: center;} .SITE_INTRO .ds_1 .li_1 {position: relative; margin-top: 34px; font-size: 0; text-align: center;} diff --git a/egovframe-template-simple-react-contribution/src/pages/admin/config/MenuMgt.jsx b/egovframe-template-simple-react-contribution/src/pages/admin/config/MenuMgt.jsx index cc191b1..450794f 100644 --- a/egovframe-template-simple-react-contribution/src/pages/admin/config/MenuMgt.jsx +++ b/egovframe-template-simple-react-contribution/src/pages/admin/config/MenuMgt.jsx @@ -1,11 +1,54 @@ -import React from 'react'; +import React, {useCallback, useEffect, useState} from 'react'; +import {Link} from "react-router-dom"; +import URL from "constants/url"; + +import { default as EgovLeftNav } from 'components/leftmenu/EgovLeftNavAdmin'; -function MenuMgt(props) { +function MenuMgt({}) { return (