pages.json 2.5 KB
{
	"pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
		{
			"path" : "pages/login/login",
			"style" : 
			{
				"navigationBarTitleText" : "",
				"navigationStyle": "custom"
			}
		},
		{
			"path": "pages/index/index",
			"style": {
				"navigationBarTitleText": "",
				"navigationStyle": "custom"
			}
		},
		{
			"path" : "pages/my/my",
			"style" : 
			{
				"navigationBarTitleText" : "",
				"navigationStyle": "custom"
			}
		},
		{
			"path" : "pages/carDetail/carDetail",
			"style" : 
			{
				"navigationBarTitleText" : "车辆信息",
				"navigationBarBackgroundColor": "#FFFFFF"
			}
		},
		{
			"path" : "pages/privacy/privacy",
			"style" : 
			{
				"navigationBarTitleText" : "车险小程序隐私政策"
			}
		},
		{
			"path" : "pages/companyHome/companyHome",
			"style" : 
			{
				"navigationBarTitleText" : "",
				"navigationStyle": "custom"
			}
		},
		{
			"path" : "pages/companyMy/companyMy",
			"style" : 
			{
				"navigationBarTitleText" : "",
				"navigationStyle": "custom"
			}
		},
		{
			"path" : "pages/ownerDetail/ownerDetail",
			"style" : 
			{
				"navigationBarTitleText" : "",
				"navigationStyle": "custom"
			}
		},
		{
			"path" : "pages/societyHome/societyHome",
			"style" : 
			{
				"navigationBarTitleText" : "",
				"navigationStyle": "custom"
			}
		},
		{
			"path" : "pages/societyMy/societyMy",
			"style" : 
			{
				"navigationBarTitleText" : "",
				"navigationStyle": "custom"
			}
		}
	],
	// 底部导航管理
	"tabBar": {
	  "color": "#707070",
	  "selectedColor": "#3680FE",
	  "borderStyle": "black",
	  "backgroundColor": "#ffffff",
	  "list": [
		{
	    "pagePath": "pages/index/index",
	    "iconPath": "static/tabbarIcon/car.png",
	    "selectedIconPath": "static/tabbarIcon/car-active.png",
	    "text": "车辆管理"
	  },
		{
	    "pagePath": "pages/my/my",
	    "iconPath": "static/tabbarIcon/my.png",
	    "selectedIconPath": "static/tabbarIcon/my-active.png",
	    "text": "我的"
	  }]
	},
	"easycom": {
		"autoscan": true,
		// 注意一定要放在custom里,否则无效,https://ask.dcloud.net.cn/question/131175
		"custom": {
			"^u--(.*)": "@/uni_modules/uview-plus/components/u-$1/u-$1.vue",
			"^up-(.*)": "@/uni_modules/uview-plus/components/u-$1/u-$1.vue",
			"^u-([^-].*)": "@/uni_modules/uview-plus/components/u-$1/u-$1.vue"
		}
	},
	"globalStyle": {
		"navigationBarTextStyle": "black",
		"navigationBarTitleText": "uni-app",
		"navigationBarBackgroundColor": "#F8F8F8",
		"backgroundColor": "#F8F8F8"
	},
	"uniIdRouter": {}
}