app.json 2.6 KB

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