@titaui/pc 1.12.9-beta.3 → 1.12.9-beta.4
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/lib/components/nav-top/components/app-center/index.css +13 -0
- package/lib/components/nav-top/components/app-center/index.js +12 -2
- package/lib/components/nav-top/index.css +7 -3
- package/lib/components/nav-top/utils.js +461 -453
- package/lib/pages/aha2021/new-menu-switcher/index.css +0 -1
- package/package.json +1 -1
|
@@ -89,3 +89,16 @@
|
|
|
89
89
|
line-height: 26px;
|
|
90
90
|
font-family: -apple-system, Arial, Verdana, Helvetica Neue, Helvetica, sans-serif, PingFang SC, Microsoft YaHei;
|
|
91
91
|
}
|
|
92
|
+
|
|
93
|
+
.app-center__drawer {
|
|
94
|
+
transform: translateY(54px);
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
.app-center__drawer .drawer-content-wrapper,
|
|
98
|
+
.app-center__drawer .drawer-content {
|
|
99
|
+
border-radius: 24px;
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
.app-center__drawer .drawer-mask {
|
|
103
|
+
border-radius: 24px 24px 0 0;
|
|
104
|
+
}
|
|
@@ -43,7 +43,7 @@ var AppCenter = function AppCenter(props) {
|
|
|
43
43
|
var _useState = (0, _react.useState)(function () {
|
|
44
44
|
var menus = (0, _utils.getMenus)();
|
|
45
45
|
return menus.filter(function (menu) {
|
|
46
|
-
return menu.
|
|
46
|
+
return menu.code !== "dynamic";
|
|
47
47
|
});
|
|
48
48
|
}),
|
|
49
49
|
_useState2 = _slicedToArray(_useState, 1),
|
|
@@ -92,6 +92,16 @@ var AppCenter = function AppCenter(props) {
|
|
|
92
92
|
|
|
93
93
|
closeAppCenter();
|
|
94
94
|
}, [currentAppId]);
|
|
95
|
+
|
|
96
|
+
var onAppSelectHandler = function onAppSelectHandler(app) {
|
|
97
|
+
if (app.type === "page") {
|
|
98
|
+
window.location.href = "".concat(window.BSGlobal.apiPath, "/").concat(app.href);
|
|
99
|
+
return;
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
setCurrentAppId(app.id);
|
|
103
|
+
};
|
|
104
|
+
|
|
95
105
|
return /*#__PURE__*/_react["default"].createElement(_drawer["default"], {
|
|
96
106
|
className: "".concat(precls, "__drawer"),
|
|
97
107
|
placement: "top",
|
|
@@ -109,7 +119,7 @@ var AppCenter = function AppCenter(props) {
|
|
|
109
119
|
return /*#__PURE__*/_react["default"].createElement("div", {
|
|
110
120
|
className: "".concat(precls, "__app-item"),
|
|
111
121
|
onClick: function onClick() {
|
|
112
|
-
return
|
|
122
|
+
return onAppSelectHandler(app);
|
|
113
123
|
}
|
|
114
124
|
}, /*#__PURE__*/_react["default"].createElement("span", {
|
|
115
125
|
className: (0, _classnames["default"])("".concat(precls, "__app-item-icon"), "".concat(precls, "__app-item-icon--").concat(app.iconName))
|
|
@@ -14,11 +14,10 @@
|
|
|
14
14
|
display: inline-flex;
|
|
15
15
|
justify-content: space-between;
|
|
16
16
|
align-items: center;
|
|
17
|
-
min-width: 204px;
|
|
18
17
|
height: 54px;
|
|
19
18
|
border-radius: 0px 0px 0px 24px;
|
|
20
19
|
box-sizing: border-box;
|
|
21
|
-
padding
|
|
20
|
+
padding: 0 20px;
|
|
22
21
|
cursor: default;
|
|
23
22
|
}
|
|
24
23
|
|
|
@@ -54,7 +53,6 @@
|
|
|
54
53
|
font-size: 24px;
|
|
55
54
|
color: #ffffff;
|
|
56
55
|
padding: 2px;
|
|
57
|
-
margin-right: 14px;
|
|
58
56
|
border-radius: 8px;
|
|
59
57
|
cursor: pointer;
|
|
60
58
|
}
|
|
@@ -65,6 +63,8 @@
|
|
|
65
63
|
|
|
66
64
|
.titaui-nav-top__left-dynamic {
|
|
67
65
|
position: relative;
|
|
66
|
+
margin-right: -6px;
|
|
67
|
+
margin-left: 20px;
|
|
68
68
|
}
|
|
69
69
|
|
|
70
70
|
.titaui-nav-top__left-dynamic-feed-num {
|
|
@@ -85,6 +85,10 @@
|
|
|
85
85
|
font-weight: 400;
|
|
86
86
|
}
|
|
87
87
|
|
|
88
|
+
.titaui-nav-top__left-app-center {
|
|
89
|
+
margin-right: 12px;
|
|
90
|
+
}
|
|
91
|
+
|
|
88
92
|
.titaui-nav-top__line {
|
|
89
93
|
width: 1px;
|
|
90
94
|
min-width: 1px;
|
|
@@ -13,459 +13,467 @@ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "d
|
|
|
13
13
|
|
|
14
14
|
var getMenus = function getMenus() {
|
|
15
15
|
// @ts-ignore
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
},
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
},
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
16
|
+
var navs = window.BSGlobal.newNavigation;
|
|
17
|
+
navs.sort(function (pre, next) {
|
|
18
|
+
return pre.orderId - next.orderId;
|
|
19
|
+
});
|
|
20
|
+
return navs; // const newNavigation = [
|
|
21
|
+
// {
|
|
22
|
+
// id: 21817,
|
|
23
|
+
// tenantId: 0,
|
|
24
|
+
// title: "动态",
|
|
25
|
+
// href: "#dynamic",
|
|
26
|
+
// iconName: "",
|
|
27
|
+
// type: "hash",
|
|
28
|
+
// orderId: 1,
|
|
29
|
+
// code: "dynamic",
|
|
30
|
+
// appId: 119,
|
|
31
|
+
// appCode: null,
|
|
32
|
+
// status: 0,
|
|
33
|
+
// groupId: 0,
|
|
34
|
+
// signUrl: null,
|
|
35
|
+
// domain: "",
|
|
36
|
+
// labelName: null,
|
|
37
|
+
// DataSource: null,
|
|
38
|
+
// defaultExpand: false,
|
|
39
|
+
// menuPoint: null,
|
|
40
|
+
// },
|
|
41
|
+
// {
|
|
42
|
+
// id: 21818,
|
|
43
|
+
// tenantId: 0,
|
|
44
|
+
// title: "OKR",
|
|
45
|
+
// href: "#okr/manage?relation=1",
|
|
46
|
+
// iconName: "okr",
|
|
47
|
+
// type: "hash",
|
|
48
|
+
// orderId: 2,
|
|
49
|
+
// code: "okr",
|
|
50
|
+
// appId: 113,
|
|
51
|
+
// appCode: null,
|
|
52
|
+
// status: 0,
|
|
53
|
+
// groupId: 0,
|
|
54
|
+
// signUrl: null,
|
|
55
|
+
// domain: "",
|
|
56
|
+
// labelName: null,
|
|
57
|
+
// DataSource: null,
|
|
58
|
+
// defaultExpand: false,
|
|
59
|
+
// children: [
|
|
60
|
+
// {
|
|
61
|
+
// id: 21001,
|
|
62
|
+
// tenantId: 0,
|
|
63
|
+
// title: "OKR",
|
|
64
|
+
// href: "#okr/manage?relation=1",
|
|
65
|
+
// iconName: "",
|
|
66
|
+
// type: "hash",
|
|
67
|
+
// orderId: 3,
|
|
68
|
+
// code: "",
|
|
69
|
+
// appId: 666,
|
|
70
|
+
// appCode: null,
|
|
71
|
+
// status: 0,
|
|
72
|
+
// groupId: 0,
|
|
73
|
+
// signUrl: null,
|
|
74
|
+
// domain: "",
|
|
75
|
+
// labelName: null,
|
|
76
|
+
// DataSource: null,
|
|
77
|
+
// defaultExpand: false,
|
|
78
|
+
// children: [
|
|
79
|
+
// ],
|
|
80
|
+
// menuPoint: null,
|
|
81
|
+
// }, {
|
|
82
|
+
// id: 21002,
|
|
83
|
+
// tenantId: 0,
|
|
84
|
+
// title: "对齐",
|
|
85
|
+
// href: "#okr/map",
|
|
86
|
+
// iconName: "",
|
|
87
|
+
// type: "hash",
|
|
88
|
+
// orderId: 3,
|
|
89
|
+
// code: "",
|
|
90
|
+
// appId: 666,
|
|
91
|
+
// appCode: null,
|
|
92
|
+
// status: 0,
|
|
93
|
+
// groupId: 0,
|
|
94
|
+
// signUrl: null,
|
|
95
|
+
// domain: "",
|
|
96
|
+
// labelName: null,
|
|
97
|
+
// DataSource: null,
|
|
98
|
+
// defaultExpand: false,
|
|
99
|
+
// children: [
|
|
100
|
+
// ],
|
|
101
|
+
// menuPoint: null,
|
|
102
|
+
// }, {
|
|
103
|
+
// id: 21003,
|
|
104
|
+
// tenantId: 0,
|
|
105
|
+
// title: "工作法",
|
|
106
|
+
// href: "#okr/panel",
|
|
107
|
+
// iconName: "",
|
|
108
|
+
// type: "hash",
|
|
109
|
+
// orderId: 3,
|
|
110
|
+
// code: "",
|
|
111
|
+
// appId: 666,
|
|
112
|
+
// appCode: null,
|
|
113
|
+
// status: 0,
|
|
114
|
+
// groupId: 0,
|
|
115
|
+
// signUrl: null,
|
|
116
|
+
// domain: "",
|
|
117
|
+
// labelName: null,
|
|
118
|
+
// DataSource: null,
|
|
119
|
+
// defaultExpand: false,
|
|
120
|
+
// children: [
|
|
121
|
+
// ],
|
|
122
|
+
// menuPoint: null,
|
|
123
|
+
// }, {
|
|
124
|
+
// id: 21004,
|
|
125
|
+
// tenantId: 0,
|
|
126
|
+
// title: "仪表盘",
|
|
127
|
+
// href: "#okr/chart",
|
|
128
|
+
// iconName: "",
|
|
129
|
+
// type: "hash",
|
|
130
|
+
// orderId: 3,
|
|
131
|
+
// code: "",
|
|
132
|
+
// appId: 666,
|
|
133
|
+
// appCode: null,
|
|
134
|
+
// status: 0,
|
|
135
|
+
// groupId: 0,
|
|
136
|
+
// signUrl: null,
|
|
137
|
+
// domain: "",
|
|
138
|
+
// labelName: null,
|
|
139
|
+
// DataSource: null,
|
|
140
|
+
// defaultExpand: false,
|
|
141
|
+
// children: [
|
|
142
|
+
// ],
|
|
143
|
+
// menuPoint: null,
|
|
144
|
+
// },
|
|
145
|
+
// ],
|
|
146
|
+
// menuPoint: null,
|
|
147
|
+
// },
|
|
148
|
+
// {
|
|
149
|
+
// id: 21819,
|
|
150
|
+
// tenantId: 0,
|
|
151
|
+
// title: "绩效考核",
|
|
152
|
+
// href: "#performance",
|
|
153
|
+
// iconName: "performance",
|
|
154
|
+
// type: "hash",
|
|
155
|
+
// orderId: 3,
|
|
156
|
+
// code: "performance",
|
|
157
|
+
// appId: 666,
|
|
158
|
+
// appCode: null,
|
|
159
|
+
// status: 0,
|
|
160
|
+
// groupId: 0,
|
|
161
|
+
// signUrl: null,
|
|
162
|
+
// domain: "",
|
|
163
|
+
// labelName: null,
|
|
164
|
+
// DataSource: null,
|
|
165
|
+
// defaultExpand: false,
|
|
166
|
+
// children: [
|
|
167
|
+
// {
|
|
168
|
+
// id: 22001,
|
|
169
|
+
// tenantId: 0,
|
|
170
|
+
// title: "我的考核",
|
|
171
|
+
// href: "#performance/my",
|
|
172
|
+
// iconName: "",
|
|
173
|
+
// type: "hash",
|
|
174
|
+
// orderId: 3,
|
|
175
|
+
// code: "",
|
|
176
|
+
// appId: 666,
|
|
177
|
+
// appCode: null,
|
|
178
|
+
// status: 0,
|
|
179
|
+
// groupId: 0,
|
|
180
|
+
// signUrl: null,
|
|
181
|
+
// domain: "",
|
|
182
|
+
// labelName: null,
|
|
183
|
+
// DataSource: null,
|
|
184
|
+
// defaultExpand: false,
|
|
185
|
+
// children: [
|
|
186
|
+
// ],
|
|
187
|
+
// menuPoint: null,
|
|
188
|
+
// }, {
|
|
189
|
+
// id: 22002,
|
|
190
|
+
// tenantId: 0,
|
|
191
|
+
// title: "考核管理",
|
|
192
|
+
// href: "#performance/manage",
|
|
193
|
+
// iconName: "",
|
|
194
|
+
// type: "hash",
|
|
195
|
+
// orderId: 3,
|
|
196
|
+
// code: "",
|
|
197
|
+
// appId: 666,
|
|
198
|
+
// appCode: null,
|
|
199
|
+
// status: 0,
|
|
200
|
+
// groupId: 0,
|
|
201
|
+
// signUrl: null,
|
|
202
|
+
// domain: "",
|
|
203
|
+
// labelName: null,
|
|
204
|
+
// DataSource: null,
|
|
205
|
+
// defaultExpand: false,
|
|
206
|
+
// children: [
|
|
207
|
+
// ],
|
|
208
|
+
// menuPoint: null,
|
|
209
|
+
// }, {
|
|
210
|
+
// id: 22003,
|
|
211
|
+
// tenantId: 0,
|
|
212
|
+
// title: "仪表盘",
|
|
213
|
+
// href: "#performance/dashboard",
|
|
214
|
+
// iconName: "",
|
|
215
|
+
// type: "hash",
|
|
216
|
+
// orderId: 3,
|
|
217
|
+
// code: "",
|
|
218
|
+
// appId: 666,
|
|
219
|
+
// appCode: null,
|
|
220
|
+
// status: 0,
|
|
221
|
+
// groupId: 0,
|
|
222
|
+
// signUrl: null,
|
|
223
|
+
// domain: "",
|
|
224
|
+
// labelName: null,
|
|
225
|
+
// DataSource: null,
|
|
226
|
+
// defaultExpand: false,
|
|
227
|
+
// children: [
|
|
228
|
+
// ],
|
|
229
|
+
// menuPoint: null,
|
|
230
|
+
// },
|
|
231
|
+
// ],
|
|
232
|
+
// menuPoint: null,
|
|
233
|
+
// },
|
|
234
|
+
// {
|
|
235
|
+
// id: 21820,
|
|
236
|
+
// tenantId: 0,
|
|
237
|
+
// title: "项目",
|
|
238
|
+
// href: "#work",
|
|
239
|
+
// iconName: "project",
|
|
240
|
+
// type: "hash",
|
|
241
|
+
// orderId: 4,
|
|
242
|
+
// code: "work",
|
|
243
|
+
// appId: 112,
|
|
244
|
+
// appCode: null,
|
|
245
|
+
// status: 0,
|
|
246
|
+
// groupId: 0,
|
|
247
|
+
// signUrl: null,
|
|
248
|
+
// domain: "",
|
|
249
|
+
// labelName: null,
|
|
250
|
+
// DataSource: null,
|
|
251
|
+
// defaultExpand: false,
|
|
252
|
+
// children: [
|
|
253
|
+
// {
|
|
254
|
+
// id: 21820,
|
|
255
|
+
// tenantId: 0,
|
|
256
|
+
// title: "项目",
|
|
257
|
+
// href: "#work",
|
|
258
|
+
// iconName: "project",
|
|
259
|
+
// type: "hash",
|
|
260
|
+
// orderId: 4,
|
|
261
|
+
// code: "",
|
|
262
|
+
// appId: 112,
|
|
263
|
+
// appCode: null,
|
|
264
|
+
// status: 0,
|
|
265
|
+
// groupId: 0,
|
|
266
|
+
// signUrl: null,
|
|
267
|
+
// domain: "",
|
|
268
|
+
// labelName: null,
|
|
269
|
+
// DataSource: null,
|
|
270
|
+
// defaultExpand: false,
|
|
271
|
+
// children: [
|
|
272
|
+
// ],
|
|
273
|
+
// menuPoint: null,
|
|
274
|
+
// },
|
|
275
|
+
// ],
|
|
276
|
+
// menuPoint: null,
|
|
277
|
+
// },
|
|
278
|
+
// {
|
|
279
|
+
// id: 21823,
|
|
280
|
+
// tenantId: 0,
|
|
281
|
+
// title: "计划表",
|
|
282
|
+
// href: "#plan",
|
|
283
|
+
// iconName: "plan",
|
|
284
|
+
// type: "hash",
|
|
285
|
+
// orderId: 5,
|
|
286
|
+
// code: "plan",
|
|
287
|
+
// appId: 116,
|
|
288
|
+
// appCode: null,
|
|
289
|
+
// status: 0,
|
|
290
|
+
// groupId: 0,
|
|
291
|
+
// signUrl: null,
|
|
292
|
+
// domain: "",
|
|
293
|
+
// labelName: null,
|
|
294
|
+
// DataSource: null,
|
|
295
|
+
// defaultExpand: false,
|
|
296
|
+
// children: [
|
|
297
|
+
// {
|
|
298
|
+
// id: 21823,
|
|
299
|
+
// tenantId: 0,
|
|
300
|
+
// title: "计划表",
|
|
301
|
+
// href: "#plan",
|
|
302
|
+
// iconName: "plan",
|
|
303
|
+
// type: "hash",
|
|
304
|
+
// orderId: 5,
|
|
305
|
+
// code: "",
|
|
306
|
+
// appId: 116,
|
|
307
|
+
// appCode: null,
|
|
308
|
+
// status: 0,
|
|
309
|
+
// groupId: 0,
|
|
310
|
+
// signUrl: null,
|
|
311
|
+
// domain: "",
|
|
312
|
+
// labelName: null,
|
|
313
|
+
// DataSource: null,
|
|
314
|
+
// defaultExpand: false,
|
|
315
|
+
// children: [
|
|
316
|
+
// ],
|
|
317
|
+
// menuPoint: null,
|
|
318
|
+
// key: "plan",
|
|
319
|
+
// },
|
|
320
|
+
// ],
|
|
321
|
+
// menuPoint: null,
|
|
322
|
+
// },
|
|
323
|
+
// {
|
|
324
|
+
// id: 21821,
|
|
325
|
+
// tenantId: 0,
|
|
326
|
+
// title: "总结",
|
|
327
|
+
// href: "#daily",
|
|
328
|
+
// iconName: "summary",
|
|
329
|
+
// type: "hash",
|
|
330
|
+
// orderId: 6,
|
|
331
|
+
// code: "",
|
|
332
|
+
// appId: 115,
|
|
333
|
+
// appCode: null,
|
|
334
|
+
// status: 0,
|
|
335
|
+
// groupId: 0,
|
|
336
|
+
// signUrl: null,
|
|
337
|
+
// domain: "",
|
|
338
|
+
// labelName: null,
|
|
339
|
+
// DataSource: null,
|
|
340
|
+
// defaultExpand: false,
|
|
341
|
+
// children: [
|
|
342
|
+
// {
|
|
343
|
+
// id: 21821,
|
|
344
|
+
// tenantId: 0,
|
|
345
|
+
// title: "总结",
|
|
346
|
+
// href: "#daily",
|
|
347
|
+
// iconName: "summary",
|
|
348
|
+
// type: "hash",
|
|
349
|
+
// orderId: 6,
|
|
350
|
+
// code: "",
|
|
351
|
+
// appId: 115,
|
|
352
|
+
// appCode: null,
|
|
353
|
+
// status: 0,
|
|
354
|
+
// groupId: 0,
|
|
355
|
+
// signUrl: null,
|
|
356
|
+
// domain: "",
|
|
357
|
+
// labelName: null,
|
|
358
|
+
// DataSource: null,
|
|
359
|
+
// defaultExpand: false,
|
|
360
|
+
// children: [
|
|
361
|
+
// ],
|
|
362
|
+
// menuPoint: null,
|
|
363
|
+
// key: "summary",
|
|
364
|
+
// },
|
|
365
|
+
// ],
|
|
366
|
+
// menuPoint: null,
|
|
367
|
+
// key: "daily",
|
|
368
|
+
// },
|
|
369
|
+
// {
|
|
370
|
+
// id: 21822,
|
|
371
|
+
// tenantId: 0,
|
|
372
|
+
// title: "报表",
|
|
373
|
+
// href: "#report",
|
|
374
|
+
// iconName: "chart",
|
|
375
|
+
// type: "hash",
|
|
376
|
+
// orderId: 7,
|
|
377
|
+
// code: "",
|
|
378
|
+
// appId: 118,
|
|
379
|
+
// appCode: null,
|
|
380
|
+
// status: 0,
|
|
381
|
+
// groupId: 0,
|
|
382
|
+
// signUrl: null,
|
|
383
|
+
// domain: "",
|
|
384
|
+
// labelName: null,
|
|
385
|
+
// DataSource: null,
|
|
386
|
+
// defaultExpand: false,
|
|
387
|
+
// children: [
|
|
388
|
+
// {
|
|
389
|
+
// id: 21822,
|
|
390
|
+
// tenantId: 0,
|
|
391
|
+
// title: "报表",
|
|
392
|
+
// href: "#report",
|
|
393
|
+
// iconName: "chart",
|
|
394
|
+
// type: "hash",
|
|
395
|
+
// orderId: 7,
|
|
396
|
+
// code: "",
|
|
397
|
+
// appId: 118,
|
|
398
|
+
// appCode: null,
|
|
399
|
+
// status: 0,
|
|
400
|
+
// groupId: 0,
|
|
401
|
+
// signUrl: null,
|
|
402
|
+
// domain: "",
|
|
403
|
+
// labelName: null,
|
|
404
|
+
// DataSource: null,
|
|
405
|
+
// defaultExpand: false,
|
|
406
|
+
// children: [
|
|
407
|
+
// ],
|
|
408
|
+
// menuPoint: null,
|
|
409
|
+
// key: "report",
|
|
410
|
+
// },
|
|
411
|
+
// ],
|
|
412
|
+
// menuPoint: null,
|
|
413
|
+
// key: "report",
|
|
414
|
+
// },
|
|
415
|
+
// {
|
|
416
|
+
// id: 21831,
|
|
417
|
+
// tenantId: 0,
|
|
418
|
+
// title: "Learning",
|
|
419
|
+
// href: "500000126/eLearningHome#learning",
|
|
420
|
+
// iconName: "learning",
|
|
421
|
+
// type: "page",
|
|
422
|
+
// orderId: 8,
|
|
423
|
+
// code: "",
|
|
424
|
+
// appId: 120,
|
|
425
|
+
// appCode: null,
|
|
426
|
+
// status: 0,
|
|
427
|
+
// groupId: 0,
|
|
428
|
+
// signUrl: null,
|
|
429
|
+
// domain: "",
|
|
430
|
+
// labelName: null,
|
|
431
|
+
// DataSource: null,
|
|
432
|
+
// defaultExpand: false,
|
|
433
|
+
// children: [
|
|
434
|
+
// ],
|
|
435
|
+
// menuPoint: null,
|
|
436
|
+
// key: "learning",
|
|
437
|
+
// },
|
|
438
|
+
// {
|
|
439
|
+
// appId: 101,
|
|
440
|
+
// children: [{
|
|
441
|
+
// id: 21831,
|
|
442
|
+
// tenantId: 0,
|
|
443
|
+
// title: "我的面谈",
|
|
444
|
+
// href: "#/interview",
|
|
445
|
+
// iconName: "learning",
|
|
446
|
+
// type: "hash",
|
|
447
|
+
// orderId: 8,
|
|
448
|
+
// code: "",
|
|
449
|
+
// appId: 120,
|
|
450
|
+
// appCode: null,
|
|
451
|
+
// status: 0,
|
|
452
|
+
// groupId: 0,
|
|
453
|
+
// signUrl: null,
|
|
454
|
+
// domain: "",
|
|
455
|
+
// labelName: null,
|
|
456
|
+
// DataSource: null,
|
|
457
|
+
// defaultExpand: false,
|
|
458
|
+
// children: [
|
|
459
|
+
// ],
|
|
460
|
+
// menuPoint: null,
|
|
461
|
+
// key: "learning",
|
|
462
|
+
// }],
|
|
463
|
+
// code: "interview",
|
|
464
|
+
// domain: "",
|
|
465
|
+
// href: "#/interview",
|
|
466
|
+
// iconName: "interview",
|
|
467
|
+
// id: 22827,
|
|
468
|
+
// menuPoint: null,
|
|
469
|
+
// orderId: 9,
|
|
470
|
+
// signUrl: null,
|
|
471
|
+
// tenantId: 0,
|
|
472
|
+
// title: "1 on 1",
|
|
473
|
+
// key:'interview'
|
|
474
|
+
// },
|
|
475
|
+
// ];
|
|
476
|
+
// return newNavigation;
|
|
469
477
|
};
|
|
470
478
|
|
|
471
479
|
exports.getMenus = getMenus;
|