| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- {
- "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path" : "pages/taxationLesson/index",
- "style" :
- {
- "navigationBarTitleText": "创业社区",
- "navigationBarTextStyle": "black"
- }
-
- },
- {
- "path" : "pages/appCenter/index",
- "style" :
- {
- "navigationBarTitleText": "应用中心",
- "navigationBarTextStyle": "black"
- }
-
- },
- {
- "path": "pages/index/index",
- "style": {
- "navigationBarTitleText": "首页",
- "navigationBarTextStyle": "black"
- }
- },
- {
- "path": "pages/self/index",
- "style": {
- "navigationBarTitleText": "我的",
- "navigationBarTextStyle": "black",
- "backgroundColor": "#f3f3f3"
- }
- },
- {
- "path" : "pages/auth/index",
- "style" :
- {
- "navigationBarTitleText": "鑫恩华",
- "enablePullDownRefresh": false
- }
-
- },
- {
- "path" : "pages/webview/web-view",
- "style" :
- {
- "navigationBarTitleText": "外部链接",
- "enablePullDownRefresh": false
- }
-
- }
- ],
- "globalStyle": {
- "navigationBarTextStyle": "white",
- "navigationBarTitleText": "鑫恩华",
- "navigationBarBackgroundColor": "#FFFFFF",
- "backgroundColor": "#FFFFFF"
- },
- "tabBar": {
- "borderStyle":"white",
- "list": [{
- "pagePath": "pages/index/index",
- "iconPath": "/static/tabbar/activity.png",
- "selectedIconPath": "/static/tabbar/activty-ed.png",
- "text": "首页"
- },
- {
- "pagePath": "pages/taxationLesson/index",
- "iconPath": "/static/tabbar/honer.png",
- "selectedIconPath": "/static/tabbar/honer-ed.png",
- "text": "财税课堂"
- },
- {
- "pagePath": "pages/appCenter/index",
- "iconPath": "/static/tabbar/honer.png",
- "selectedIconPath": "/static/tabbar/honer-ed.png",
- "text": "应用中心"
- },
- {
- "pagePath": "pages/self/index",
- "iconPath": "/static/tabbar/self.png",
- "selectedIconPath": "/static/tabbar/self-ed.png",
- "text": "我的"
- }
- ]
- }
- }
|