app.json 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {
  2. "pages": [
  3. "pages/index/index",
  4. "pages/community/index",
  5. "pages/legou/index",
  6. "pages/cart/index",
  7. "pages/user/index",
  8. "pages/auth/login",
  9. "pages/search/index",
  10. "pages/product/detail",
  11. "pages/test/auth-test"
  12. ],
  13. "subPackages": [],
  14. "window": {
  15. "navigationBarTextStyle": "black",
  16. "navigationBarTitleText": "酒谷",
  17. "navigationBarBackgroundColor": "#F8F8F8",
  18. "backgroundColor": "#F8F8F8"
  19. },
  20. "tabBar": {
  21. "custom": true,
  22. "color": "#999999",
  23. "selectedColor": "#FF6600",
  24. "backgroundColor": "#FFFFFF",
  25. "borderStyle": "black",
  26. "list": [
  27. {
  28. "pagePath": "pages/index/index",
  29. "text": "首页"
  30. },
  31. {
  32. "pagePath": "pages/community/index",
  33. "text": "社区"
  34. },
  35. {
  36. "pagePath": "pages/legou/index",
  37. "text": "乐购"
  38. },
  39. {
  40. "pagePath": "pages/cart/index",
  41. "text": "购物车"
  42. },
  43. {
  44. "pagePath": "pages/user/index",
  45. "text": "我的"
  46. }
  47. ]
  48. },
  49. "usingComponents": {}
  50. }