-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtemplate.js
More file actions
45 lines (44 loc) · 1.17 KB
/
Copy pathtemplate.js
File metadata and controls
45 lines (44 loc) · 1.17 KB
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
const tabBar = {
"color": "#666666",
"selectedColor": "#FD820A",
"backgroundColor": "#FFF",
"list": [
{
"active": true,
"pagePath": "/pages/index/index",
"iconPath": "/images/tabbaricon/index.png",
"selectedIconPath": "/images/tabbaricon/index2.png",
"text": "首页"
},
{
"active": false,
"pagePath": "/pages/news/news",
"iconPath": "/images/tabbaricon/toutiao.png",
"selectedIconPath": "/images/tabbaricon/toutiao2.png",
"text": "头条"
},
{
"active": false,
"pagePath": "/pages/news/news",
"iconPath": "/images/tabbaricon/saoyisao3.png",
"selectedIconPath": "/images/tabbaricon/saoyisao3.png",
"text": "",
"isScanit": true
},
{
"active": false,
"pagePath": "/pages/tasks/tasks",
"iconPath": "/images/tabbaricon/renwu.png",
"selectedIconPath": "/images/tabbaricon/renwu2.png",
"text": "任务"
},
{
"active": false,
"pagePath": "/pages/mine/mine",
"iconPath": "/images/tabbaricon/wode.png",
"selectedIconPath": "/images/tabbaricon/wode2.png",
"text": "我的"
}
]
}
module.exports = tabBar