Compare commits
No commits in common. "d90fbbec3e290feb7f0ff0db695700e6ab36eac8" and "e333191efd65f794b19d58d219e9caca3c0778f5" have entirely different histories.
d90fbbec3e
...
e333191efd
|
|
@ -32,6 +32,7 @@ function MenuModal({savedInfo, reloadFunction}){
|
||||||
body: JSON.stringify(info)
|
body: JSON.stringify(info)
|
||||||
},
|
},
|
||||||
(resp) => {
|
(resp) => {
|
||||||
|
debugger
|
||||||
if (Number(resp.resultCode) === Number(CODE.RCV_SUCCESS)) {
|
if (Number(resp.resultCode) === Number(CODE.RCV_SUCCESS)) {
|
||||||
alert("저장되었습니다.")
|
alert("저장되었습니다.")
|
||||||
reloadFunction();
|
reloadFunction();
|
||||||
|
|
|
||||||
|
|
@ -64,6 +64,10 @@ function List({}) {
|
||||||
);
|
);
|
||||||
},[]);
|
},[]);
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
retrieveList(searchCondition);
|
||||||
|
}, []);
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
retrieveList(searchCondition);
|
retrieveList(searchCondition);
|
||||||
}, [searchCondition.pageIndex]);
|
}, [searchCondition.pageIndex]);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue