pages.json 1.16 KB
{
	"pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
		{
			"path": "pages/index/index",
			"style": {
				"navigationBarTitleText": "",
				"navigationStyle": "custom"
			}
		},
		{
			"path": "pages/my/my",
			"style": {
				"navigationBarTitleText": "",
				"navigationStyle": "custom"
			}
		},
		{
			"path" : "pages/login/login",
			"style" : 
			{
				"navigationBarTitleText" : "登录"
			}
		},
		{
			"path": "pages/signUp/signUp",
			"style": {
				"navigationBarTitleText": "报名"
			}
		},
		{
			"path": "pages/addStudent/addStudent",
			"style": {
				"navigationBarTitleText": "添加孩子"
			}
		}
	],
	"tabBar": {
		"color": "#7A7E83",
		"selectedColor": "#f96118",
		"list": [{
			"pagePath": "pages/index/index",
			"iconPath": "static/tabBar/home.png",
			"selectedIconPath": "static/tabBar/homeAc.png",
			"text": "发现"
		}, {
			"pagePath": "pages/my/my",
			"iconPath": "static/tabBar/my.png",
			"selectedIconPath": "static/tabBar/myAc.png",
			"text": "家长"
		}]
	},
	"globalStyle": {
		"navigationBarTextStyle": "black",
		"navigationBarBackgroundColor": "#eaecfb"
	},
	"uniIdRouter": {}
}