feat: 운영 서비스 도메인 관리 기능 추가 및 UI 간격 조정
This commit is contained in:
@@ -12,6 +12,7 @@ export interface MasterAssetData {
|
||||
cloud: SoftwareAsset[]; // 클라우드 배열 추가
|
||||
swUsers: SWUser[];
|
||||
logs: HardwareLog[];
|
||||
domain: any[];
|
||||
|
||||
// 동료 코드 호환용 통합 배열 (프론트엔드 로직용)
|
||||
hw: HardwareAsset[];
|
||||
@@ -41,7 +42,8 @@ export const state: AppState = {
|
||||
hw: [], // 호환용
|
||||
sw: [], // 호환용
|
||||
swUsers: [],
|
||||
logs: []
|
||||
logs: [],
|
||||
domain: []
|
||||
}
|
||||
};
|
||||
|
||||
@@ -59,6 +61,7 @@ export async function loadMasterDataFromDB() {
|
||||
{ key: 'subSw', url: `http://${location.hostname}:3000/api/sw/sub` },
|
||||
{ key: 'permSw', url: `http://${location.hostname}:3000/api/sw/perm` },
|
||||
{ key: 'cloud', url: `http://${location.hostname}:3000/api/cloud` },
|
||||
{ key: 'domain', url: `http://${location.hostname}:3000/api/ops/domain` },
|
||||
{ key: 'swUsers', url: `http://${location.hostname}:3000/api/sw-users` },
|
||||
{ key: 'logs', url: `http://${location.hostname}:3000/api/logs` }
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user