| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- {
- "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path": "pages/taxationLesson/index",
- "style": {
- "navigationBarTitleText": "创业社区"
- }
- },
- {
- "path": "pages/appCenter/index",
- "style": {
- "navigationBarTitleText": "应用中心"
- }
- },
- {
- "path": "pages/index/index",
- "style": {
- "navigationBarTitleText": "首页"
- }
- },
- {
- "path": "pages/self/index",
- "style": {
- "navigationBarTitleText": "我的"
- }
- },
- {
- "path": "pages/auth/index",
- "style": {
- "navigationBarTitleText": "鑫恩华"
- }
- },
- {
- "path": "pages/webview/web-view",
- "style": {
- "navigationBarTitleText": "外部链接"
- }
- },
- {
- "path": "pages/self/about",
- "style": {
- "navigationBarTitleText": "关于我们"
- }
- },
- {
- "path": "pages/self/info",
- "style": {
- "navigationBarTitleText": "个人资料"
- }
- },
- {
- "path" : "pages/self/enterpriseInfo",
- "style" :
- {
- "navigationBarTitleText" : "企业资料"
- }
- }
- ],
- "globalStyle": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "鑫恩华",
- "navigationBarBackgroundColor": "#FFFFFF",
- "backgroundColor": "#f3f3f3"
- },
- "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": "我的"
- }
- ]
- }
- }
|