| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- {
- "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- // {
- // "path": "pages/login/login",
- // "style": {
- // "navigationBarTitleText": "登录页面",
- // "navigationBarBackgroundColor": "#d11c1c",
- // "navigationBarTextStyle": "white"
- // }
- // },
- {
- "path": "pages/home/index",
- "style": {
- "navigationBarTitleText": "首页",
- "navigationBarBackgroundColor": "#d11c1c",
- "navigationBarTextStyle": "white"
- }
- }, {
- "path": "pages/my/my",
- "style": {
- "navigationBarTitleText": "我的",
- "navigationBarBackgroundColor": "#449bd1",
- "enablePullDownRefresh": false,
- "navigationBarTextStyle": "white"
- }
- },
- {
- "path": "pages/message/message",
- "style": {
- "navigationBarTitleText": "消息",
- "navigationBarBackgroundColor": "#d11c1c",
- "enablePullDownRefresh": false,
- "navigationBarTextStyle": "white"
- }
- },
- {
- "path": "pages/communicate/communicate",
- "style": {
- "navigationBarTitleText": "沟通",
- "navigationBarBackgroundColor": "#d11c1c",
- "enablePullDownRefresh": false,
- "navigationBarTextStyle": "white"
- }
- }
- ],
- "globalStyle": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "uni-app",
- "navigationBarBackgroundColor": "#F8F8F8",
- "backgroundColor": "#F8F8F8"
- },
- "tabBar": {
- "color": "#7A7E83",
- "selectedColor": "#1296db",
- "borderStyle": "black",
- "backgroundColor": "#ffffff",
- "list": [{
- "pagePath": "pages/home/index",
- "iconPath": "static/home.png",
- "selectedIconPath": "static/homeselect.png",
- "text": "首页"
- },
- {
- "pagePath": "pages/message/message",
- "iconPath": "static/goutong.png",
- "selectedIconPath": "static/goutong1.png",
- "text": "消息"
- },
- {
- "pagePath": "pages/communicate/communicate",
- "iconPath": "static/kefu.png",
- "selectedIconPath": "static/kefu1.png",
- "text": "沟通"
- }, {
- "pagePath": "pages/my/my",
- "iconPath": "static/my.png",
- "selectedIconPath": "static/myselect.png",
- "text": "我的"
- }
- ]
- }
- }
|