pages.json 1.9 KB
Newer Older
杜庆泉's avatar
init  
杜庆泉 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
{
	"pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
		
	    {
            "path" : "pages/tabBar/Primer/Primer",
            "style" :                                                                                    
            {
                "navigationBarTitleText": "",
                "enablePullDownRefresh": false
            }
            
        },
        {
            "path" : "pages/tabBar/Advance/Advance",
            "style" :                                                                                    
            {
                "navigationBarTitleText": "",
                "enablePullDownRefresh": false
            }
            
        },
		{
		    "path" : "pages/tabBar/SystemAPI/SystemAPI",
		    "style" :                                                                                    
		    {
		        "navigationBarTitleText": "",
		        "enablePullDownRefresh": false
		    }
		    
		},
		{
		    "path" : "pages/tabBar/SDKIntegration/SDKIntegration",
		    "style" :                                                                                    
		    {
		        "navigationBarTitleText": "",
		        "enablePullDownRefresh": false
		    }
		    
		}
杜庆泉's avatar
杜庆泉 已提交
40
		
杜庆泉's avatar
init  
杜庆泉 已提交
41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
    ],
	"tabBar": {
		"color": "#7A7E83",
		"selectedColor": "#007AFF",
		"borderStyle": "black",
		"backgroundColor": "#F8F8F8",
		"list": [{
				"pagePath": "pages/tabBar/Primer/Primer",
				"text": "入门"
			},
			{
				"pagePath": "pages/tabBar/Advance/Advance",
				"text": "进阶"
			}, {
				"pagePath": "pages/tabBar/SystemAPI/SystemAPI",
				"text": "系统API"
			}, {
				"pagePath": "pages/tabBar/SDKIntegration/SDKIntegration",
				"text": "三方SDK"
			}
		]
	},
	"globalStyle": {
		"navigationBarTextStyle": "black",
		"navigationBarTitleText": "uni-app",
		"navigationBarBackgroundColor": "#F8F8F8",
		"backgroundColor": "#F8F8F8"
	},
	"uniIdRouter": {}
}