-
Notifications
You must be signed in to change notification settings - Fork 60
/
Copy pathpages.json
125 lines (121 loc) · 3.04 KB
/
pages.json
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
{
"easycom": {
// 下载安装的方式需要前面的"@/",npm安装的方式无需"@/"
"^u-(.*)": "@/uview-ui/components/u-$1/u-$1.vue"
},
"pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
{
"path": "pages/index/index",
"style": {
"navigationBarTitleText": "首页"
// "navigationBarTitleText": "外卖很忙"
}
},
{
"path": "pages/index/child1",
"style": {
"navigationBarTitleText": "肯德基怎样吃便宜"
}
},
{
"path": "pages/index/child2",
"style": {
"navigationBarTitleText": "奈雪隐藏优惠"
}
},
{
"path": "pages/ele/ele",
"style": {
"navigationStyle": "custom", // 隐藏系统导航栏
"navigationBarTextStyle": "white" // 状态栏字体为白色,只能为 white-白色,black-黑色 二选一
}
},
{
"path": "pages/meituan/meituan",
"style": {
"navigationStyle": "custom", // 隐藏系统导航栏
"navigationBarTextStyle": "white" // 状态栏字体为白色,只能为 white-白色,black-黑色 二选一
}
},
{
"path": "pages/wallet/wallet",
"style": {
"navigationBarTitleText": "我的钱包"
}
},
{
"path": "pages/user/binding",
"style": {
"navigationBarTitleText": "账号绑定"
}
},
{
"path": "pages/user/user",
"style": {
"navigationBarTitleText": "个人中心",
"navigationStyle": "custom" // 隐藏系统导航栏,
}
},
{
"path": "pages/user/order",
"style": {
"enablePullDownRefresh":true,
"navigationBarTitleText": "我的订单"
}
},
{
"path": "pages/user/team",
"style": {
"navigationBarTitleText": "我的团队"
}
}
,{
"path" : "pages/index/url/url",
"style" :
{
"navigationBarTitleText": "",
"enablePullDownRefresh": false
}
}
],
"globalStyle": {
"navigationBarTextStyle": "white",
"navigationBarTitleText": "红包优惠券天天领",
// "navigationBarBackgroundColor": "#f4c242",
"navigationBarBackgroundColor": "#F33F5C",
"backgroundColor": "#FFFFFF",
"titleView": false,
"h5": {
"titleNView": false
}
},
"tabBar": {
"borderStyle": "black",
"backgroundColor": "#FFFFFF",
"color": "#333333",
"fontSize": "24upx",
"selectedColor": "#000",
"list": [{
"pagePath": "pages/index/index",
"text": "首页",
"iconPath": "static/home.png",
"selectedIconPath": "static/home-active.png"
},{
"pagePath": "pages/ele/ele",
"text": "饿了么",
"iconPath": "static/ele.png",
"selectedIconPath": "static/ele-active.png"
},{
"pagePath": "pages/meituan/meituan",
"text": "美团",
"iconPath": "static/meituan.png",
"selectedIconPath": "static/meituan-active.png"
},{
"pagePath": "pages/user/user",
"text": "个人中心",
"iconPath": "static/my.png",
"selectedIconPath": "static/my-active.png"
}
]
}
}