123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- {
- "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path" : "pages/login/index",
- "style" :
- {
- "navigationBarTitleText" : "",
- "enablePullDownRefresh" : false,
- "navigationStyle": "custom",
- "app-plus": {
- "scrollIndicator": false
- }
- }
- },
- {
- "path": "pages/index/index",
- "style": {
- "navigationBarTitleText": "uni-app"
- }
- },
- {
- "path" : "pages/collectionList/index",
- "style" :
- {
- "navigationBarTitleText" : "价格采集",
- "enablePullDownRefresh" : false,
- "navigationStyle": "custom",
- "app-plus": {
- "scrollIndicator": false
- }
- }
- },
- {
- "path" : "pages/collectionDetail/index",
- "style" :
- {
- "navigationBarTitleText" : "价格采集",
- "enablePullDownRefresh" : false,
- "navigationStyle": "custom",
- "app-plus": {
- "scrollIndicator": false
- }
- }
- }
- ],
- "globalStyle": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "uni-app",
- "navigationBarBackgroundColor": "#F8F8F8",
- "backgroundColor": "#F8F8F8"
- },
- "uniIdRouter": {}
- }
|