app.json 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. {
  2. "pages": [
  3. "pages/index/index",
  4. "pages/all/all",
  5. "pages/cart/cart",
  6. "pages/my/my",
  7. "pages/detail/detail",
  8. "pages/login/login"
  9. ],
  10. "window": {
  11. "backgroundColor": "#FFFFFF",
  12. "backgroundTextStyle": "dark",
  13. "navigationBarBackgroundColor": "#dfefec",
  14. "navigationBarTitleText": "谷鹿鹿Q",
  15. "navigationBarTextStyle": "black",
  16. "pageOrientation": "portrait"
  17. },
  18. "style": "v2",
  19. "renderer": "skyline",
  20. "rendererOptions": {
  21. "skyline": {
  22. "defaultDisplayBlock": true,
  23. "defaultContentBox": true,
  24. "tagNameStyleIsolation": "legacy",
  25. "disableABTest": true,
  26. "sdkVersionBegin": "3.0.0",
  27. "sdkVersionEnd": "15.255.255"
  28. }
  29. },
  30. "componentFramework": "glass-easel",
  31. "sitemapLocation": "sitemap.json",
  32. "lazyCodeLoading": "requiredComponents",
  33. "tabBar": {
  34. "color": "#333333",
  35. "selectedColor": "#8dbbb8",
  36. "borderStyle": "white",
  37. "backgroundColor": "#dfefec",
  38. "list": [
  39. {
  40. "pagePath": "pages/index/index",
  41. "text": "主页"
  42. },
  43. {
  44. "pagePath": "pages/all/all",
  45. "text": "全部商品"
  46. },
  47. {
  48. "pagePath": "pages/cart/cart",
  49. "text": "购物车"
  50. },
  51. {
  52. "pagePath": "pages/my/my",
  53. "text": "我的"
  54. }
  55. ]
  56. }
  57. }