12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- {
- "tabBar": {
- "custom": false,
- "color": "#656765",
- "selectedColor": "#22C572",
- "borderStyle": "black",
- "backgroundColor": "#ffffff",
- "list": [
- {
- "pagePath": "pages/index/index",
- "iconPath": "static/logo.png",
- "selectedIconPath": "static/logo.png",
- "text": "资讯"
- },
- {
- "pagePath": "pages/demo/demo",
- "iconPath": "static/logo.png",
- "selectedIconPath": "static/logo.png",
- "text": "demo"
- }
- ]
- },
- "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path": "pages/index/index",
- "style": {
- "navigationBarTitleText": "uni-app"
- }
- }
- ,{
- "path" : "pages/public/login",
- "style" :
- {
- "navigationBarTitleText": "登录",
- "enablePullDownRefresh": false
- }
-
- }
- ,{
- "path" : "pages/demo/demo",
- "style" :
- {
- "navigationBarTitleText": "",
- "enablePullDownRefresh": false
- }
-
- }
- ],
- "globalStyle": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "uni-app",
- "navigationBarBackgroundColor": "#F8F8F8",
- "backgroundColor": "#F8F8F8"
- }
- }
|