1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
| "pages": [ "pages/shop/shop", "pages/shopping_cart/shopping_cart", "pages/custom_center/custom_center" ]
"tabBar":{ "color": "#999999", "selectedColor": "#13b2ae", "borderStyle": "white", "backgroundColor": "#fff", "list": [ { "pagePath": "pages/shop/shop", "text": "商场", "iconPath": "src/img/home.png", "selectedIconPath": "src/img/home-selected.png" }, { "pagePath": "pages/shopping_cart/shopping_cart", "text": "购物车", "iconPath": "src/img/menu.png", "selectedIconPath": "src/img/menu-selected.png" }, { "pagePath": "pages/custom_center/custom_center", "text": "我", "iconPath": "src/img/user.png", "selectedIconPath": "src/img/user-selected.png" } ] }
|