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
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
| export default [
| {
| groupName: 'geek组件',
| groupName_en: 'Page',
| list: [
| {
| path: '/pages_geek/pages/index/index',
| icon: 'wxCenter',
| title: '组件展示',
| title_en: 'index',
| },
| {
| path: '/pages_geek/pages/code/index',
| icon: 'wxCenter',
| title: '二维码',
| title_en: 'index',
| }
| ]
| },
| {
| groupName: '部件',
| groupName_en: 'Parts',
| list: [
| {
| path: '/pages_template/pages/coupon/index',
| icon: 'coupon',
| title: 'Coupon 优惠券',
| title_en: 'Coupon',
| },
| {
| path: '/pages_template/pages/citySelect/index',
| icon: 'citySelect',
| title: 'CitySelect 城市选择',
| title_en: 'CitySelect',
| },
| {
| path: '/pages_template/pages/submitBar/index',
| icon: 'submitBar',
| title: 'SubmitBar 提交订单栏',
| title_en: 'SubmitBar',
| },
| {
| path: '/pages_template/pages/keyboardPay/index',
| icon: 'keyboardPay',
| title: 'KeyboardPay 自定义键盘支付模板',
| title_en: 'KeyboardPay',
| },
| ]
| },
| {
| groupName: '报表',
| groupName_en: 'Parts',
| list: [
| {
| path: '/pages_qiun/pages/finance/index',
| icon: 'coupon',
| title: '财务报告',
| title_en: 'finace',
| },
| {
| path: '/pages_qiun/pages/main/index',
| icon: 'coupon',
| title: '数据报表中心',
| title_en: 'main',
| },
| {
| path: '/pages_qiun/pages/school/index',
| icon: 'coupon',
| title: '智慧教育报表中心',
| title_en: 'school',
| },
| {
| path: '/pages_qiun/pages/sport/index',
| icon: 'coupon',
| title: '运动报告',
| title_en: 'sport',
| },
| ]
| },
| {
| groupName: '页面',
| groupName_en: 'Page',
| list: [
| {
| path: '/pages_template/pages/wxCenter/index',
| icon: 'wxCenter',
| title: 'WxCenter 仿微信个人中心',
| title_en: 'WxCenter',
| },
| {
| path: '/pages_template/pages/mallMenu/index1',
| icon: 'mall_menu_1',
| title: 'MallMenu 垂直分类(左右独立)',
| title_en: 'MallMenu 1',
| }, {
| path: '/pages_template/pages/mallMenu/index2',
| icon: 'mall_menu_2',
| title: 'MallMenu 垂直分类(左右联动)',
| title_en: 'MallMenu 2',
| }, {
| path: '/pages_template/pages/comment/index',
| icon: 'comment',
| title: 'Comment 评论列表',
| title_en: 'Comment',
| }, {
| path: '/pages_template/pages/order/index',
| icon: 'order',
| title: 'Order 订单列表',
| title_en: 'Order',
| },
| {
| path: '/pages_template/pages/login/index1',
| icon: 'login',
| title: 'Login 登录界面',
| title_en: 'Login',
| },
| {
| path: '/pages_template/pages/login/index2',
| icon: 'login',
| title: 'Login 水滴登录',
| title_en: 'Login',
| },
| {
| path: '/pages_template/pages/address/index',
| icon: 'address',
| title: 'Address 收货地址',
| title_en: 'Address',
| },
| ]
| },
| ]
|
|