app.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {
  2. "pages": [
  3. "pages/index/index",
  4. "pages/login/login",
  5. "pages/privacy/privacy",
  6. "pages/home/index",
  7. "pages/contacts/index",
  8. "pages/discover/index",
  9. "pages/me/index"
  10. ],
  11. "window": {
  12. "navigationBarTextStyle": "black",
  13. "navigationBarTitleText": "uni-app",
  14. "navigationBarBackgroundColor": "#F8F8F8",
  15. "backgroundColor": "#F8F8F8"
  16. },
  17. "tabBar": {
  18. "color": "#999",
  19. "selectedColor": "#07c160",
  20. "backgroundColor": "#fff",
  21. "borderStyle": "black",
  22. "list": [
  23. {
  24. "pagePath": "pages/home/index",
  25. "iconPath": "static/tab_home.png",
  26. "selectedIconPath": "static/tab_home_active.png",
  27. "text": "微信"
  28. },
  29. {
  30. "pagePath": "pages/contacts/index",
  31. "iconPath": "static/tab_contacts.png",
  32. "selectedIconPath": "static/tab_contacts_active.png",
  33. "text": "通讯录"
  34. },
  35. {
  36. "pagePath": "pages/discover/index",
  37. "iconPath": "static/tab_discover.png",
  38. "selectedIconPath": "static/tab_discover_active.png",
  39. "text": "发现"
  40. },
  41. {
  42. "pagePath": "pages/me/index",
  43. "iconPath": "static/tab_me.png",
  44. "selectedIconPath": "static/tab_me_active.png",
  45. "text": "我"
  46. }
  47. ]
  48. },
  49. "usingComponents": {}
  50. }