app.json 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. "pages": [
  3. "pages/login/login",
  4. "pages/index/index",
  5. "pages/discover/discover",
  6. "pages/shopCart/shopCart",
  7. "pages/person/person",
  8. "pages/details/details"
  9. ],
  10. "window": {
  11. "backgroundTextStyle": "dark",
  12. "navigationBarBackgroundColor": "#FF6760",
  13. "navigationBarTitleText": "熊猫美妆",
  14. "navigationBarTextStyle": "white"
  15. },
  16. "tabBar": {
  17. "selectedColor": "#FF6760",
  18. "backgroundColor": "#ffffff",
  19. "borderStyle": "black",
  20. "list": [
  21. {
  22. "iconPath": "./image/tabbar/tabbar_home_default@2x.png",
  23. "selectedIconPath": "./image/tabbar/tabbar_home_hight@2x.png",
  24. "pagePath": "pages/index/index",
  25. "text": "首页"
  26. },
  27. {
  28. "iconPath": "./image/tabbar/tabbar_shopguide_default@2x.png",
  29. "selectedIconPath": "./image/tabbar/tabbar_shopguide_hight@2x.png",
  30. "pagePath": "pages/discover/discover",
  31. "text": "发现"
  32. },
  33. {
  34. "iconPath": "./image/tabbar/tabbar_shopcar_default@2x.png",
  35. "selectedIconPath": "./image/tabbar/tabbar_shopcar_hight@2x.png",
  36. "pagePath": "pages/shopCart/shopCart",
  37. "text": "购物车"
  38. },
  39. {
  40. "iconPath": "./image/tabbar/tabbar_set_default@2x.png",
  41. "selectedIconPath": "./image/tabbar/tabbar_set_hight@2x.png",
  42. "pagePath": "pages/person/person",
  43. "text": "我"
  44. }
  45. ]
  46. }
  47. }