app.json 856 B

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