app.json 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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. "pages/orderPaySn/orderPaySn"
  18. ],
  19. "window": {
  20. "backgroundTextStyle": "dark",
  21. "navigationBarBackgroundColor": "#eb4e4f",
  22. "navigationBarTitleText": "熊猫美妆",
  23. "navigationBarTextStyle": "white"
  24. },
  25. "tabBar": {
  26. "selectedColor": "#FF6760",
  27. "backgroundColor": "#ffffff",
  28. "borderStyle": "black",
  29. "list": [
  30. {
  31. "iconPath": "./image/tabbar/tabbar_home_default@2x.png",
  32. "selectedIconPath": "./image/tabbar/tabbar_home_hight@2x.png",
  33. "pagePath": "pages/index/index",
  34. "text": "首页"
  35. },
  36. {
  37. "iconPath": "./image/tabbar/tabbar_shopguide_default@2x.png",
  38. "selectedIconPath": "./image/tabbar/tabbar_shopguide_hight@2x.png",
  39. "pagePath": "pages/discover/discover",
  40. "text": "发现"
  41. },
  42. {
  43. "iconPath": "./image/tabbar/tabbar_shopcar_default@2x.png",
  44. "selectedIconPath": "./image/tabbar/tabbar_shopcar_hight@2x.png",
  45. "pagePath": "pages/shopCart/shopCart",
  46. "text": "购物车"
  47. },
  48. {
  49. "iconPath": "./image/tabbar/tabbar_set_default@2x.png",
  50. "selectedIconPath": "./image/tabbar/tabbar_set_hight@2x.png",
  51. "pagePath": "pages/person/person",
  52. "text": "我"
  53. }
  54. ]
  55. }
  56. }