LogView 리팩토링

LogDetailModal 생성
화면별 히스토리(LogDetailModal) 적용
This commit is contained in:
2025-05-22 14:55:37 +09:00
parent 64bf449de7
commit 1532793cc1
35 changed files with 1977 additions and 352 deletions

View File

@@ -0,0 +1,18 @@
{
"baseUrl": "/api/v1/history",
"endpoints": {
"LogViewList": {
"method": "GET",
"url": "/list",
"dataPath": "data.data",
"paramFormat": "query"
},
"LogviewDetail": {
"method": "GET",
"url": "/detail/:id",
"dataPath": "data.data",
"paramFormat": "query",
"paramMapping": ["id"]
}
}
}

View File

@@ -1,7 +1,9 @@
import itemAPI from './itemAPI.json';
import menuBannerAPI from './menuBannerAPI.json';
import historyAPI from './historyAPI.json';
export {
itemAPI,
menuBannerAPI
menuBannerAPI,
historyAPI
};