十七 pages.json

138 阅读1分钟
{
	"easycom": {
		"^u-(.*)": "@/uni_modules/uview-ui/components/u-$1/u-$1.vue"
	},
	"pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
		{
			"path": "pages/index/index",
			"style": {
				"navigationStyle": "custom"  //代表自定义头部
			}
		},
		{
			"path": "pages/tabbar/list",
			"style": {
				"navigationBarTitleText": "分类"
			}
		},
		{
			"path": "pages/tabbar/my",
			"style": {
				"navigationStyle": "custom"  //代表自定义头部
			}
		},
		{
			"path": "pages/goods-detail"
		}
	],
	"subPackages": [
		{
			"root": "login",
			"pages": [
				{
					"path": "login",
					"style": {
						"navigationBarTitleText": "登录"
					}
				},
				{
					"path": "bindPhone",
					"style": {
						"navigationBarTitleText": "绑定手机号"
					}
				}
			]
		},
		{
			"root": "order",
			"pages": [
				{
					"path": "confirmOrder",
					"style": {
						"navigationBarTitleText": "确认订单"
					}
				},
				{
					"path": "order-list",
					"style": {
						"navigationBarTitleText": "订单列表",
						"enablePullDownRefresh":true
					}
				},
				{
					"path": "order-details",
					"style": {
						"navigationBarTitleText": "订单详情"
					}
				},
				{
					"path": "applyRefund",
					"style": {
						"navigationBarTitleText": "申请售后"
					}
				},
				{
					"path": "refund",
					"style": {
						"navigationBarTitleText": "申请退换货"
					}
				}
			]
		},
		{
			"root": "address",
			"pages": [
				{
					"path": "address-list",
					"style": {
						"navigationBarTitleText": "我的收货地址"
					}
				},
				{
					"path": "address-add",
					"style": {
						"navigationBarTitleText": "新增收货地址"
					}
				}
			]
		},
		{
			"root": "my",
			"pages": [
				{
					"path": "fav",
					"style": {
						"navigationBarTitleText": "我的收藏"
					}
				}
			]
		}
	],
	"tabBar": {
		"color": "#D5D5D5",
		"selectedColor": "#000000",
		"borderStyle": "black",
		"backgroundColor": "#ffffff",
		"list": [{
			"pagePath": "pages/index/index",
			"iconPath": "static/images/recommend1.png",
			"selectedIconPath": "static/images/recommend2.png",
			"text": "组件"
		}, {
			"pagePath": "pages/tabbar/list",
			"iconPath": "static/images/classify1.png",
			"selectedIconPath": "static/images/classify2.png",
			"text": "分类"
		},{
			"pagePath": "pages/tabbar/my",
			"iconPath": "static/images/my1.png",
			"selectedIconPath": "static/images/my2.png",
			"text": "我的"
		}]
	},
	"globalStyle": {
		"navigationBarTextStyle": "black",
		"navigationBarTitleText": "uni-app",
		"navigationBarBackgroundColor": "#F8F8F8",
		"backgroundColor": "#F8F8F8"
	},
	"uniIdRouter": {}
}