app.json 908 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "pages": [
  3. "pages/index/index",
  4. "pages/my/my",
  5. "pages/personal/personal",
  6. "pages/mp/mp",
  7. "pages/about/about",
  8. "pages/room/room",
  9. "pages/myScene/myScene"
  10. ],
  11. "window": {
  12. "backgroundTextStyle": "light",
  13. "navigationBarBackgroundColor": "#fff",
  14. "navigationBarTitleText": "首页",
  15. "navigationBarTextStyle": "black"
  16. },
  17. "sitemapLocation": "sitemap.json",
  18. "usingComponents": {
  19. "t-tab-bar": "tdesign-miniprogram/tab-bar/tab-bar",
  20. "t-tab-bar-item": "tdesign-miniprogram/tab-bar/tab-bar-item",
  21. "t-icon": "tdesign-miniprogram/icon/icon"
  22. },
  23. "tabBar": {
  24. "custom": true,
  25. "color": "#000000",
  26. "selectedColor": "#000000",
  27. "backgroundColor": "#000000",
  28. "list": [
  29. {
  30. "pagePath": "pages/index/index",
  31. "text": "首页"
  32. },
  33. {
  34. "pagePath": "pages/my/my",
  35. "text": "我的"
  36. }
  37. ]
  38. }
  39. }