hrp-ui-base 1.3.0 → 1.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
package/src/init.ts
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
// 域菜单的跟前端的对应关系
|
|
2
|
+
const RegionMenuStateRelation = {
|
|
3
|
+
dcs: "coc",
|
|
4
|
+
cohrms: "hrms",
|
|
5
|
+
hws: "hws",
|
|
6
|
+
chs: "hws",
|
|
7
|
+
rsa: "hws",
|
|
8
|
+
task_management: "imd",
|
|
9
|
+
"hws-file": "hws",
|
|
10
|
+
pch: "imd",
|
|
11
|
+
coc: "coc",
|
|
12
|
+
scm: "scm",
|
|
13
|
+
pam: "imd",
|
|
14
|
+
pms: "imd",
|
|
15
|
+
imd: "imd",
|
|
16
|
+
hrms: "hrms",
|
|
17
|
+
fms: "fms",
|
|
18
|
+
"pms-itr": "projectManagement",
|
|
19
|
+
itr: "itr",
|
|
20
|
+
bms: "bms",
|
|
21
|
+
};
|
|
22
|
+
// 菜单的第一级与前端的项目的对应关系
|
|
23
|
+
const MenuStateRelation = {
|
|
24
|
+
imd:"imd",
|
|
25
|
+
agoal:"agoal",
|
|
26
|
+
scm:"scm",
|
|
27
|
+
bms:"bms",
|
|
28
|
+
coc:"coc",
|
|
29
|
+
hws:"hws",
|
|
30
|
+
fms:"fms",
|
|
31
|
+
hrm:"hrm",
|
|
32
|
+
hrms:'hrms',
|
|
33
|
+
itr::'itr',
|
|
34
|
+
personalization:'imd',
|
|
35
|
+
projectManagement:'projectManagement',
|
|
36
|
+
}
|
|
37
|
+
|