app.json 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. {
  2. "pages": [
  3. "pages/index/index",
  4. "pages/catalog/catalog",
  5. "pages/newGoods/newGoods",
  6. "pages/hotGoods/hotGoods",
  7. "pages/ucenter/index/index",
  8. "pages/ucenter/address/address",
  9. "pages/ucenter/addressAdd/addressAdd",
  10. "pages/ucenter/feedback/feedback",
  11. "pages/ucenter/footprint/footprint",
  12. "pages/ucenter/order/order",
  13. "pages/ucenter/orderDetail/orderDetail",
  14. "pages/ucenter/coupon/coupon",
  15. "pages/ucenter/collect/collect",
  16. "pages/auth/login/login",
  17. "pages/auth/accountLogin/accountLogin",
  18. "pages/auth/register/register",
  19. "pages/auth/reset/reset",
  20. "pages/payResult/payResult",
  21. "pages/comment/comment",
  22. "pages/commentPost/commentPost",
  23. "pages/topic/topic",
  24. "pages/topicComment/topicComment",
  25. "pages/topicDetail/topicDetail",
  26. "pages/topicCommentPost/topicCommentPost",
  27. "pages/brand/brand",
  28. "pages/brandDetail/brandDetail",
  29. "pages/search/search",
  30. "pages/category/category",
  31. "pages/cart/cart",
  32. "pages/checkout/checkout",
  33. "pages/goods/goods",
  34. "pages/about/about",
  35. "pages/groupon/myGroupon/myGroupon",
  36. "pages/groupon/grouponDetail/grouponDetail",
  37. "pages/groupon/grouponList/grouponList"
  38. ],
  39. "window": {
  40. "navigationBarBackgroundColor": "#FFFFFF",
  41. "navigationBarTitleText": "litemall小程序商城",
  42. "enablePullDownRefresh": true,
  43. "navigationBarTextStyle": "black",
  44. "backgroundColor": "#FFFFFF",
  45. "backgroundTextStyle": "dark"
  46. },
  47. "tabBar": {
  48. "backgroundColor": "#fafafa",
  49. "borderStyle": "white",
  50. "selectedColor": "#AB956D",
  51. "color": "#666",
  52. "list": [
  53. {
  54. "pagePath": "pages/index/index",
  55. "iconPath": "static/images/home.png",
  56. "selectedIconPath": "static/images/home@selected.png",
  57. "text": "首页"
  58. },
  59. {
  60. "pagePath": "pages/catalog/catalog",
  61. "iconPath": "static/images/category.png",
  62. "selectedIconPath": "static/images/category@selected.png",
  63. "text": "分类"
  64. },
  65. {
  66. "pagePath": "pages/cart/cart",
  67. "iconPath": "static/images/cart.png",
  68. "selectedIconPath": "static/images/cart@selected.png",
  69. "text": "购物车"
  70. },
  71. {
  72. "pagePath": "pages/ucenter/index/index",
  73. "iconPath": "static/images/my.png",
  74. "selectedIconPath": "static/images/my@selected.png",
  75. "text": "个人"
  76. }
  77. ]
  78. },
  79. "networkTimeout": {
  80. "request": 10000,
  81. "connectSocket": 10000,
  82. "uploadFile": 10000,
  83. "downloadFile": 10000
  84. },
  85. "debug": true
  86. }