123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143 |
- // NOTE object below must be a valid JSON
- if (BemsWebApplication.config.Group == 2) {
- window.BemsWebApplication = $.extend(true, window.BemsWebApplication, {
- "config": {
- "layoutSet": "desktop",
- "connectionTimeOut": 2 * 60 * 1000,
- "center-mode": false,
- "BemsFmsMode": 2, // 0:bems+fms, 1:bems, 2:fms
- "navigation": [
- {
- "id": "navEnergy",
- "title": "에너지 현황",
- "action": "#RealtimeEnergyConsumption",
- "icon": "energy",
- "mode": "bems"
- },
- {
- "id": "navPerformanceAnalysis",
- "title": "성능 분석",
- "action": "#DayYearAnalysis",
- "icon": "analysis",
- "mode": "bems"
- },
- {
- "id": "navEnergyControl",
- "title": "에너지 제어",
- "action": "#EnthalpyControl",
- "icon": "energy-analysis",
- "mode": "bems"
- },
- {
- "id": "navPlanEstablishment",
- "title": "계획 수립",
- "action": "#PlanConsumeGoal",
- "icon": "plan-establishment",
- "mode": "bems"
- },
- {
- "id": "navBuildinginformation",
- "title": "건물정보",
- "action": "#Site",
- "icon": "building-information",
- "mode": "fms"
- },
- {
- "id": "navFms",
- "title": "시설관리",
- "action": "#Facility2",
- "icon": "fms",
- "mode": "fms"
- },
- {
- "id": "navMaterial",
- "title": "자재관리",
- "action": "#MaterialStockStatus2",
- "icon": "analysis-ex",
- "mode": "fms"
- },
- {
- "id": "navBusiness",
- "title": "경영관리",
- "action": "#ContractManagement",
- "icon": "customer-center",
- "mode": "fms"
- },
- {
- "id": "navConfiguration",
- "title": "설정",
- "action": "#User", //Announce
- "icon": "configuration"
- }
- ]
- }
- });
- }
- else {
- window.BemsWebApplication = $.extend(true, window.BemsWebApplication, {
- "config": {
- "layoutSet": "desktop",
- "connectionTimeOut": 2 * 60 * 1000,
- "center-mode": false,
- "BemsFmsMode": 0, // 0:bems+fms, 1:bems, 2:fms
- "navigation": [
- {
- "id": "navEnergy",
- "title": "에너지 현황",
- "action": "#RealtimeEnergyConsumption",
- "icon": "energy",
- "mode": "bems"
- },
- {
- "id": "navPerformanceAnalysis",
- "title": "성능 분석",
- "action": "#DayYearAnalysis",
- "icon": "analysis",
- "mode": "bems"
- },
- {
- "id": "navEnergyControl",
- "title": "에너지 제어",
- "action": "#EnthalpyControl",
- "icon": "energy-analysis",
- "mode": "bems"
- },
- {
- "id": "navPlanEstablishment",
- "title": "계획 수립",
- "action": "#PlanConsumeGoal",
- "icon": "plan-establishment",
- "mode": "bems"
- },
- {
- "id": "navFms",
- "title": "시설관리",
- "action": "#FacilityTaskReport",
- "icon": "fms",
- "mode": "fms"
- },
- {
- "id": "navMaterial",
- "title": "자재관리",
- "action": "#MaterialStockStatus2",
- "icon": "analysis-ex",
- "mode": "fms"
- },
- {
- "id": "navBusiness",
- "title": "경영관리",
- "action": "#ContractManagement",
- "icon": "customer-center",
- "mode": "fms"
- },
- {
- "id": "navConfiguration",
- "title": "설정",
- "action": "#Facility2", //Announce
- "icon": "configuration"
- }
- ]
- }
- });
- }
- window.BWA = window.BemsWebApplication;
|