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
| const user_leader = [
| {
| "pagePath": "pages/tabBar/firstPage/firstPage",
| "iconPath": "/static/home.png",
| "selectedIconPath": "/static/home_sel.png",
| "text": "首页"
| },
| {
| "pagePath": "pages/tabBar/current/current",
| "iconPath": "/static/notice.png",
| "selectedIconPath": "/static/notice-sel.png",
| "text": "课程"
| },
| {
| "pagePath": "pages/tabBar/wearhouse/wearhouse",
| "iconPath": "/static/wearhouse.png",
| "selectedIconPath": "/static/wearhouse_sel.png",
| "text": "刷题"
| },
| {
| "pagePath": "pages/tabBar/count/count",
| "iconPath": "/static/my.png",
| "selectedIconPath": "/static/my_sel.png",
| "text": "我的"
| }
| ]
|
| const user_other = [
| {
| "pagePath": "pages/tabBar/current/current",
| "iconPath": "/static/send.png",
| "selectedIconPath": "/static/send_selected.png",
| "text": "我发布的"
| }
| ]
|
| export default {
| user_leader,
| user_other
| }
|
|