| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180 | {	"pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages		{			"path": "pages/index/index",			"style": {				"app-plus": {					"titleNView": false,					"bounce": "none",					"navigationStyle": "custom"				}			}		},		{			"path": "pages/user/index",			"style": {				"app-plus": {					"titleNView": false,					"bounce": "none",					"navigationStyle": "custom"				}			}		},		{			"path": "pages/dream/index",			"style": {				"app-plus": {					"titleNView": false,					"bounce": "none",					"navigationStyle": "custom"				}			}		},        {            "path" : "pages/dream/view",            "style": {            	"app-plus": {            		"titleNView": false,            		"bounce": "none",            		"navigationStyle": "custom"            	},				"onReachBottomDistance":1 //距离底部多远时触发 单位px            }        },		{		    "path" : "pages/dream/videoPlay",		    "style": {		    	"app-plus": {		    		"titleNView": false,		    		"bounce": "none",		    		"navigationStyle": "custom"		    	}		    }		},		{		    "path" : "lib/dever/pages/web_view",		    "style": {		    	"app-plus": {		    		"titleNView": false,		    		"bounce": "none",		    		"navigationStyle": "custom"		    	}		    }		},		{		    "path" : "pages/dream/product",		    "style": {		    	"app-plus": {		    		"titleNView": false,		    		"bounce": "none",		    		"navigationStyle": "custom"		    	}		    }		},		{		    "path" : "pages/user/login",		    "style": {		    	"app-plus": {		    		"titleNView": false,		    		"bounce": "none",		    		"navigationStyle": "custom"		    	}		    }		},		{		    "path" : "pages/pay/act",		    "style": {		    	"app-plus": {		    		"titleNView": false,		    		"bounce": "none",		    		"navigationStyle": "custom"		    	}		    }		},		{		    "path" : "pages/pay/msg",		    "style": {		    	"app-plus": {		    		"titleNView": false,		    		"bounce": "none",		    		"navigationStyle": "custom"		    	}		    }		},		{		    "path" : "pages/chat/user",		    "style": {		    	"app-plus": {		    		"titleNView": false,		    		"bounce": "none",		    		"navigationStyle": "custom"		    	},				"enablePullDownRefresh" : false		    }		},		{		    "path" : "lib/dever/pages/web_view",		    "style": {		    	"app-plus": {		    		"titleNView": false,		    		"bounce": "none",		    		"navigationStyle": "custom"		    	},				"enablePullDownRefresh" : false		    }		}    ],	"globalStyle": {		"navigationBarTextStyle": "white",		"navigationBarBackgroundColor": "#0081ff",		"navigationBarTitleText" : "合小记",		"enablePullDownRefresh": true,		"scrollIndicator": "none",		"navigationStyle": "custom",		"navigationBarTextStyle": "white",		"app-plus": {			"pullToRefresh": {				"support": true,				"color": "#0081ff",				"style": "default"			}		}	},	"tabBar": {		"color": "#878d9d",		"selectedColor": "#2a54a0",		"borderStyle": "black",		"backgroundColor": "#ffffff",		"height": "50px",		"fontSize": "10px",		"iconWidth": "24px",		"spacing": "3px",		"list": [{				"pagePath": "pages/index/index",				"iconPath": "static/images/tabBar/index.png",				"selectedIconPath": "static/images/tabBar/index_selected.png",				"text": "家园"			},			{				"pagePath": "pages/friend/index",				"iconPath": "static/images/tabBar/take.png",				"selectedIconPath": "static/images/tabBar/take_selected.png",				"text": "阅览"			},			{				"pagePath": "pages/user/index",				"iconPath": "static/images/tabBar/mine.png",				"selectedIconPath": "static/images/tabBar/mine_selected.png",				"text": "我的"			}		]			},	// 自动加载组件	"easycom": {		"custom": {			"grace(.*)": "@/lib/graceUI/components/grace$1.vue",			"^y-(.*)": "@/lib/community/y-$1/y-$1.vue"		}	}}
 |