app.json 2.4 KB

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