app.json 812 B

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