1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
| const route = window.route;
| export const routeMap: Map<string, string> = new Map([
| ['sys-type', 'TypeManage'],
| ['sys-catalog', 'SortManage'],
| ['sys-prop', 'PropertyManage'],
| ['sys-flag', 'FlagManage'],
| ['sys-dict', 'DictType'],
| ['sys-unit', 'UnitManage'],
| ['sys-alarm-level', 'AlarmLevel'],
| ['sys-paras', 'SysParas'],
| ['monitor-formula', 'MonitorFormula'],
| ['signal-type', 'SignalType'],
| ['supplier', 'SupplierManage'],
| ['equipment-modify-type', 'EquipmentModifyType'],
| ['equipment-cost-type', 'EquipmentCostType'],
| ['health-scheme', 'SystemManger'],
| ['health-quota-evaluation-rule', 'QuotaEvaluationModel'],
| ['health-multi-evaluation-model', 'EvaluateModel'],
| ['trend-method', 'AnalyseMethodDefinition'],
| ['trend-alarm-model', 'TrendModel'],
| ['fault-diagnosis-rule', 'DiagnosisRule'],
| ['fault-diagnosis-event', 'FaultEvent'],
| ['fault-tree', 'FaultDefinition'],
| ['fault-tree-version', 'FaultVersion'],
| ['eta-standard-configure', 'EtaStandardConfig'],
| ]);
|
|