diff --git a/egovframe-template-simple-react-contribution/src/css/page.css b/egovframe-template-simple-react-contribution/src/css/page.css index e8373a7..dd51e33 100644 --- a/egovframe-template-simple-react-contribution/src/css/page.css +++ b/egovframe-template-simple-react-contribution/src/css/page.css @@ -152,6 +152,22 @@ .BRD006 .result .list_item > div:nth-child(5) {width: 140px;} .BRD006 .result .list_item > div:nth-child(6) {width: 140px;} + /* 사이트관리 > 사용자관리 > 사용자목록 */ + .userList .head > span:nth-child(1) {width: 60px;} + .userList .head > span:nth-child(2) {width: 100px;} + .userList .head > span:nth-child(3) {width: 100px;} + .userList .head > span:nth-child(4) {width: 120px;} + .userList .head > span:nth-child(5) {width: 100px;} + .userList .head > span:nth-child(6) {width: 100px;} + .userList .head > span:nth-child(7) {width: 100px;} + .userList .result .list_item > div:nth-child(1) {width: 60px;} + .userList .result .list_item > div:nth-child(2) {width: 100px;} + .userList .result .list_item > div:nth-child(3) {width: 100px;} + .userList .result .list_item > div:nth-child(4) {width: 120px;} + .userList .result .list_item > div:nth-child(5) {width: 100px;} + .userList .result .list_item > div:nth-child(6) {width: 100px;} + .userList .result .list_item > div:nth-child(7) {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/users/List.jsx b/egovframe-template-simple-react-contribution/src/pages/admin/users/List.jsx index 725e63e..c18ed81 100644 --- a/egovframe-template-simple-react-contribution/src/pages/admin/users/List.jsx +++ b/egovframe-template-simple-react-contribution/src/pages/admin/users/List.jsx @@ -6,7 +6,6 @@ import { default as EgovLeftNav } from 'components/leftmenu/EgovLeftNavAdmin'; import EgovPaging from "components/EgovPaging"; import * as EgovNet from "api/egovFetch"; import {itemIdxByPage} from "utils/calc"; -import Button from "react-bootstrap/Button"; function List(props) { @@ -43,35 +42,16 @@ function List(props) { const listIdx = itemIdxByPage(resultCnt , currentPageNo, pageSize, index); mutListTag.push( -
- {item.userSe} - {item.userId} - {item.userNm} - {item.email} - {item.phoneNum} - {item.useYn} - +
+
{item.userSe}
+
{item.userId}
+
{item.userNm}
+
{item.email}
+
{item.phoneNum}
+
{item.useYn}
+
); - /* -
{listIdx}
- {(item.replyLc * 1 ? true : false) && - <>
- {item.nttSj} -
} - {(item.replyLc * 1 ? false : true) && - <>
- {item.nttSj} -
} -
{item.frstRegisterNm}
-
{item.frstRegisterPnttm}
-
{item.inqireCo}
- */ }); if(!mutListTag.length) mutListTag.push(

검색된 결과가 없습니다.

); // 게시판 목록 초기값 setListTag(mutListTag); @@ -127,7 +107,7 @@ function List(props) { - + @@ -152,13 +132,13 @@ function List(props) {
-
+
구분 아이디 이름 이메일 - 전화번호 + 연락처 상태 삭제
diff --git a/egovframe-template-simple-react-contribution/src/pages/login/join/Join.jsx b/egovframe-template-simple-react-contribution/src/pages/login/join/Join.jsx index 40b7829..c0ff5bd 100644 --- a/egovframe-template-simple-react-contribution/src/pages/login/join/Join.jsx +++ b/egovframe-template-simple-react-contribution/src/pages/login/join/Join.jsx @@ -19,7 +19,7 @@ function Join(props) { const location = useLocation(); console.log("JoinContent [location] : ", location); - const [userInfo, setUserInfo] = useState({ id: '', email: '', password: '', passwordChk: '' }); + const [userInfo, setUserInfo] = useState({ id: '', password: '', passwordChk: '', userNm: '', email: '', phoneNum: ''}); const [infoShareChk, setInfoShareChk] = useState(false); const [submitFlag, setSubmitFlag] = useState(true); @@ -92,12 +92,16 @@ function Join(props) { setUserInfo({ ...userInfo, id: e.target.value })} /> - setUserInfo({ ...userInfo, email: e.target.value })} /> setUserInfo({ ...userInfo, password: e.target.value })}/> setUserInfo({ ...userInfo, passwordChk: e.target.value })}/> + setUserInfo({ ...userInfo, userNm: e.target.value })} /> + setUserInfo({ ...userInfo, email: e.target.value })} /> + setUserInfo({ ...userInfo, phoneNum: e.target.value })} />