-
Notifications
You must be signed in to change notification settings - Fork 2
/
pages.json
141 lines (137 loc) · 2.67 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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
{
"pages": [{
"path": "pages/main/main",
"style": {
// #ifdef H5
"navigationStyle": "custom",
// #endif
"navigationBarTitleText": "中付便民"
}
}],
"subPackages": [{
// 信用卡包
"root": "pages/cc",
"pages": [{
"path": "ccList",
"style": {
"navigationBarTitleText": "信用卡管理"
}
}, {
"path": "ccApply",
"style": {
"navigationBarTitleText": "信用卡申请",
"enablePullDownRefresh": true
}
}, {
"path": "ccDetail",
"style": {
"navigationBarTitleText": "信用卡详细"
}
}, {
"path": "ccAdd",
"style": {
"navigationBarTitleText": "添加信用卡"
}
},
{
"path": "article-info",
"style": {
"navigationBarTitleText": "新闻详情"
}
}
]
},
{
"root": "pages/login",
"pages": [{
"path": "login",
"style": {
"navigationBarTitleText": "登录"
}
}, {
"path": "index",
"style": {
// #ifdef H5
"navigationStyle": "custom",
// #endif
"navigationBarTitleText": "推荐注册",
"navigationBarBackgroundColor": "#4587D5"
}
},
{
"path": "reg",
"style": {
"navigationBarTitleText": "注册"
}
},
{
"path": "success",
"style": {
"navigationBarTitleText": "提交成功"
}
}
]
},
{
"root": "pages/trade",
"pages": [{
"path": "trade",
"style": {
"navigationBarTitleText": "商户收款"
}
}, {
"path": "tradeHistory",
"style": {
"navigationBarTitleText": "收款记录",
"enablePullDownRefresh": true
}
}, {
"path": "tradeDetail",
"style": {
"navigationBarTitleText": "交易详情"
}
}]
},
{
"root": "pages/user",
"pages": [{
"path": "user",
"style": {
// #ifdef H5
// "navigationStyle": "custom",
// #endif
"navigationBarTitleText": "我的"
}
}, {
"path": "promoCode",
"style": {
"navigationBarTitleText": "我的推广码"
}
}, {
"path": "userInfo",
"style": {
"navigationBarTitleText": "基本信息"
}
}, {
"path": "uUserInfo",
"style": {
"navigationBarTitleText": "修改结算卡"
}
}]
}
],
"condition": {
//模式配置,仅开发期间生效
"current": 0, //当前激活的模式(list 的索引项)
"list": [{
"name": "首页", //模式名称
"path": "pages/main/main", //启动页面,必选
"query": "" //启动参数,在页面的onLoad函数里面得到。
}]
},
"globalStyle": {
"navigationBarTextStyle": "black",
"navigationBarBackgroundColor": "#FFFFFF",
"backgroundColor": "#fbf9fe"
}
}