-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpages.json
184 lines (184 loc) · 5.88 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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
{
"easycom" : {
"^u-(.*)" : "@/uview-ui/components/u-$1/u-$1.vue"
},
"pages" : [
//pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
{
"path" : "pages/index/index",
"style" : {
"navigationStyle" : "custom", // 隐藏系统导航栏
"navigationBarTitleText" : "首页",
"enablePullDownRefresh" : true,
"app-plus" : {
"pullToRefresh" : {
"support" : true,
"color" : "#2979ff", //小圈圈的颜色
"style" : "circle" //小圈圈的样式
}
}
}
},
{
"path" : "pages/center/center",
"style" : {
"navigationStyle" : "custom", // 隐藏系统导航栏
"navigationBarTitleText" : "我"
}
},
{
"path" : "pages/login/login",
"style" : {
"navigationStyle" : "custom", // 隐藏系统导航栏
"navigationBarTitleText" : "密码登录",
"enablePullDownRefresh" : false
}
},
{
"path" : "pages/login/code",
"style" : {
// "navigationStyle": "custom" ,// 隐藏系统导航栏
"navigationBarTitleText" : "获取验证码",
"enablePullDownRefresh" : false
}
},
{
"path" : "pages/login/account",
"style" : {
"navigationStyle" : "custom", // 隐藏系统导航栏
"navigationBarTitleText" : "短信登录",
"enablePullDownRefresh" : false
}
},
{
"path" : "pages/login/problem",
"style" : {
"navigationBarTitleText" : "常见问题",
"enablePullDownRefresh" : false
}
},
{
"path" : "pages/profile/setting",
"style" : {
"navigationStyle" : "custom", // 隐藏系统导航栏
"navigationBarTitleText" : "",
"enablePullDownRefresh" : false
}
},
{
"path" : "pages/profile/profile",
"style" : {
"navigationStyle" : "custom", // 隐藏系统导航栏
"navigationBarTitleText" : "",
"enablePullDownRefresh" : false
}
},
{
"path" : "pages/profile/password",
"style" : {
"navigationBarTitleText" : "修改密码",
"enablePullDownRefresh" : false
}
},
{
"path" : "pages/search/search",
"style" : {
"navigationBarTitleText" : "搜索",
"enablePullDownRefresh" : false
}
},
{
"path" : "pages/location/location",
"style" : {
// "navigationStyle": "custom" ,// 隐藏系统导航栏
"navigationBarTitleText" : "选择地址"
}
},
{
"path" : "pages/notice/notice",
"style" : {
"navigationBarTitleText" : "通知",
"enablePullDownRefresh" : false
}
},
{
"path" : "pages/profile/aboutMe",
"style" : {
"navigationBarTitleText" : "关于我",
"enablePullDownRefresh" : false,
"navigationStyle" : "custom" // 隐藏系统导航栏
}
},
{
"path" : "pages/search/searchList",
"style" : {
"navigationBarTitleText" : "房源列表",
"enablePullDownRefresh" : true
}
},
{
"path" : "pages/detail/detail",
"style" : {
"navigationStyle" : "custom", // 隐藏系统导航栏
"navigationBarTitleText" : "房源详情",
"enablePullDownRefresh" : false
}
},
{
"path" : "pages/detail/addHouse",
"style" : {
"navigationBarTitleText" : "新增房源",
"enablePullDownRefresh" : false
}
},
{
"path" : "pages/detail/preHouse",
"style" : {
"navigationStyle" : "custom", // 隐藏系统导航栏
"navigationBarTitleText" : "预增房源",
"enablePullDownRefresh" : false
}
},
{
"path" : "App",
"style" : {}
}
],
"globalStyle" : {
"navigationBarTextStyle" : "black",
"navigationBarTitleText" : "World",
"navigationBarBackgroundColor" : "#ffffff",
"backgroundColor" : "#ffffff"
},
"tabBar" : {
"color" : "#909399",
"selectedColor" : "#2979ff",
"borderStyle" : "#909399",
"backgroundColor" : "#ffffff",
"list" : [
{
"pagePath" : "pages/index/index",
"iconPath" : "static/index.png",
"selectedIconPath" : "static/index-selected.png",
"text" : "首页"
},
{
"pagePath" : "pages/center/center",
"iconPath" : "static/center.png",
"selectedIconPath" : "static/center-selected.png",
"text" : "我"
}
]
},
"condition" : {
//模式配置,仅开发期间生效
"current" : 0, //当前激活的模式(list 的索引项)
"list" : [
{
"name" : "", //模式名称
"path" : "", //启动页面,必选
"query" : "" //启动参数,在页面的onLoad函数里面得到
}
]
}
}