pages.json 1.0 KB
Newer Older
1 2 3 4 5
{
	"pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
		{
			"path": "pages/index/index",
			"style": {
郭胜强 已提交
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
				"navigationBarTitleText": "小程序组件示例"
			}
		},
		{
			"path": "pages/vant/vant",
			"style": {
				"navigationBarTitleText": "vant组件示例",
				"usingComponents": {
					"van-nav-bar": "/wxcomponents/vant-weapp/dist/nav-bar/index",
					"van-icon": "/wxcomponents/vant-weapp/dist/icon/index"
				}
			}
		},
		{
			"path": "pages/wux/wux",
			"style": {
				"navigationBarTitleText": "wux组件示例",
				"usingComponents": {
					"wux-calendar": "/wxcomponents/wux-weapp/dist/calendar/index",
					"wux-cell-group": "/wxcomponents/wux-weapp/dist/cell-group/index",
					"wux-cell": "/wxcomponents/wux-weapp/dist/cell/index"
				}
28 29 30 31 32
			}
		}
	],
	"globalStyle": {
		"navigationBarTextStyle": "black",
郭胜强 已提交
33
		"navigationBarTitleText": "小程序组件示例",
34 35 36 37
		"navigationBarBackgroundColor": "#F8F8F8",
		"backgroundColor": "#F8F8F8"
	}
}