| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- {
- "pages": [{
- "path": "pages/index/index",
- "style": {
- "navigationBarTitleText": "首页"
- }
- },
- {
- "path": "pages/category/index",
- "style": {
- "navigationBarTitleText": "分类"
- }
- },
- {
- "path": "pages/service/index",
- "style": {
- "navigationBarTitleText": "售后"
- }
- },
- {
- "path": "pages/my/index",
- "style": {
- "navigationBarTitleText": "我的"
- }
- },
- {
- "path": "pages/map/index",
- "style": {
- "navigationBarTitleText": "地图"
- }
- }
- ],
- "globalStyle": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "uni-app",
- "navigationBarBackgroundColor": "#F8F8F8",
- "backgroundColor": "#F8F8F8",
- "navigationStyle": "custom",
- "app-plus": {
- "background": "#efeff4"
- }
- },
- "tabBar": {
- "color": "black", //字体颜色
- "selectedColor": "#1afa29", //选中时字体颜色
- "borderStyle": "black", //底部的上边框线条
- "backgroundColor": "#F8F8F8", //底部背景色
- "fontSize": "12px", //字体大小
- "spacing": "5px", //字体到图标的距离
- "height": "50px", //底部高
- "list": [{
- "pagePath": "pages/index/index",
- "text": "首页",
- "iconPath": "static/tabbar/index.png",
- "selectedIconPath": "static/tabbar/index_a.png"
- },
- {
- "pagePath": "pages/category/index",
- "text": "分类",
- "iconPath": "static/tabbar/cat.png",
- "selectedIconPath": "static/tabbar/cat_a.png"
- },
- {
- "pagePath": "pages/service/index",
- "text": "售后",
- "iconPath": "static/tabbar/service.png",
- "selectedIconPath": "static/tabbar/service_a.png"
- },
- {
- "pagePath": "pages/my/index",
- "text": "我的",
- "iconPath": "static/tabbar/my.png",
- "selectedIconPath": "static/tabbar/my_a.png"
- }
- ]
- }
- }
|