app.json 1.6 KB

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