Newer
Older
gdtMimiProgram / pages.json
dutingting on 15 Nov 2022 1 KB init
{
	// "easycom": {
	// 	// 下载安装的方式需要前面的"@/",npm安装的方式无需"@/"
	// 	// 下载安装方式
	// 	"^u-(.*)": "@/uview-ui/components/u-$1/u-$1.vue"
	// 	// npm安装方式
	// 	// "^u-(.*)": "uview-ui/components/u-$1/u-$1.vue"
	// },
	"pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
		{
			"path": "pages/index/index",
			"style": {
				"navigationBarTitleText": "安防平台小程序"
			}
		},
		{
			"path" : "pages/mine/mine",
			"style" :                                                                                    
			{
				"navigationBarTitleText": "我的",
				"enablePullDownRefresh": false
			}	
		},
		{
			"path" : "pages/login/login",
			"style" :                                                                                    
			{
				"navigationBarTitleText": "登录",
				"enablePullDownRefresh": false
			}	
		},
		{
			"path" : "pages/findPassword/findPassword",
			"style" :                                                                                    
			{
				"navigationBarTitleText": "找回密码",
				"enablePullDownRefresh": false
			}	
		},
		{
			"path" : "pages/register/register",
			"style" :                                                                                    
			{
					"navigationBarTitleText": "注册",
					"enablePullDownRefresh": false
			}		
		}
    ],
	"globalStyle": {
		"navigationBarTextStyle": "black",
		"navigationBarTitleText": "安防平台小程序",
		"navigationBarBackgroundColor": "#F8F8F8",
		"backgroundColor": "#F8F8F8"
	},
	"uniIdRouter": {}
}