1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- {
- "pages": [
- "pages/tabBar/home/home",
- "pages/tabBar/discover/discover",
- "pages/tabBar/tree/tree",
- "pages/tabBar/shopping/shopping",
- "pages/tabBar/mine/mine"
- ],
- "window": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "飞鸟有味",
- "navigationBarBackgroundColor": "#FFFFFF",
- "backgroundColor": "#F8F8F8"
- },
- "tabBar": {
- "color": "#898989",
- "selectedColor": "#000000",
- "borderStyle": "black",
- "backgroundColor": "#FFFFFF",
- "list": [
- {
- "pagePath": "pages/tabBar/home/home",
- "iconPath": "static/tabBar/home.png",
- "selectedIconPath": "static/tabBar/home-active.png",
- "text": "首页"
- },
- {
- "pagePath": "pages/tabBar/discover/discover",
- "iconPath": "static/tabBar/bag.png",
- "selectedIconPath": "static/tabBar/bag-active.png",
- "text": "逛一逛"
- },
- {
- "pagePath": "pages/tabBar/tree/tree",
- "iconPath": "static/tabBar/tree.png",
- "selectedIconPath": "static/tabBar/tree-active.png",
- "text": "守护"
- },
- {
- "pagePath": "pages/tabBar/shopping/shopping",
- "iconPath": "static/tabBar/car.png",
- "selectedIconPath": "static/tabBar/car-active.png",
- "text": "购物车"
- },
- {
- "pagePath": "pages/tabBar/mine/mine",
- "iconPath": "static/tabBar/user.png",
- "selectedIconPath": "static/tabBar/user-active.png",
- "text": "个人中心"
- }
- ]
- },
- "permission": {
- "scope.userLocation": {
- "desc": "需要获取您的位置以显示地图"
- }
- },
- "usingComponents": {}
- }
|