uniapp

173 阅读1分钟

{ "pages": [ //pages数组中第一项表示应用启动页,参考:uniapp.dcloud.io/collocation… { "path":"pages/found/found" }, { "path":"pages/user/user" }, { "path": "pages/index/index", "style": { "navigationBarTitleText": "uni-app" } }

],
"globalStyle": {
	"navigationBarTextStyle": "black",
	"navigationBarTitleText": "uni-app",
	"navigationBarBackgroundColor": "#F8F8F8",
	"backgroundColor": "#F8F8F8"
},
"tabBar":{
	"color":"black",
	"selectedColor":"red",
	"list":[
		{
			"pagePath":"pages/found/found",
			"text":"发现",
			"iconPath":"static/jd.png",
			"selectedIconPath":"static/jt_active.png"
		},{
			"pagePath":"pages/index/index",
			"text":"首页",
			"iconPath":"static/job.png",
			"selectedIconPath":"static/job_active.png"
		},{
			"pagePath":"pages/user/user",
			"text":"我的",
			"iconPath":"static/user.png",
			"selectedIconPath":"static/user_active.png"
		}
	]
}

}