-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmenu_code.js
65 lines (65 loc) · 1.12 KB
/
menu_code.js
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
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
var menu_code ={
/*title 菜单名
*node 路由路径
*grade 菜单等级*/
1 : {
title:"首页",
node:"/",
grade:1,
},
2 : {
title:"bootStrap dialog", // bootStrap 的 dialog模态框
node:"dialog",
grade:1,
},
3 : {
title:"data table", // data table 表格
node:"data-Table",
grade:1,
},
4 : {
title:"css-focus", // css 的聚焦事件 针对于 input 和 textarea
node:"css-focus",
grade:1,
},
5 : {
title:"col-accordion", // 轮播图
node:"col-accordion",
grade:1,
},
6 : {
title:"angular-block", //angular区块
node:"ngArea",
grade:1,
},
601 : {
title:"ng-test1", //angular 测试区块1
node:"ngArea.test",
grade:6,
},
602 : {
title:"ng-test2", //angular 测试区块2
node:"ngArea.test2",
grade:6,
},
7 : {
title:"ES6-block", //ES6区块
node:"ES6Block",
grade:1,
},
701 : {
title:"ES6-know", //ES6 了解区块
node:"ES6Block.know",
grade:7,
},
702 : {
title:"ES6-fun", //ES6 函数区块
node:"ES6Block.fun",
grade:7,
},
8 : {
title:"Date", // new Date()区块
node:"date",
grade:1,
}
}