Compare commits
No commits in common. "bf3a460610fa007965b413841916e338c4f57da4" and "1fd7ba0fb1888818a32a9400d5a9ce82ea56cdf3" have entirely different histories.
bf3a460610
...
1fd7ba0fb1
|
|
@ -49,13 +49,17 @@ const BookmarkModal = ({docCode, docPart, ymd}) => {
|
||||||
})
|
})
|
||||||
|
|
||||||
const getCodeInfo = useCallback(() => {
|
const getCodeInfo = useCallback(() => {
|
||||||
|
console.groupCollapsed("EgovMain.getCodeInfo()");
|
||||||
EgovNet.requestFetch(
|
EgovNet.requestFetch(
|
||||||
'/standardCode/code-info?docCode='+docCode,
|
'/standardCode/getCodeInfo.do',
|
||||||
{
|
{
|
||||||
method: "GET",
|
method: "POST",
|
||||||
headers: {
|
headers: {
|
||||||
'Content-type': 'application/json'
|
'Content-type': 'application/json'
|
||||||
}
|
},
|
||||||
|
body: JSON.stringify({
|
||||||
|
docCode: docCode
|
||||||
|
})
|
||||||
},
|
},
|
||||||
(resp) => {
|
(resp) => {
|
||||||
const docInfo = resp.result.docInfo;
|
const docInfo = resp.result.docInfo;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue