app.json 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "pages":[
  3. "pages/index/index",
  4. "pages/userinfo/userinfo"
  5. ],
  6. "window":{
  7. "backgroundTextStyle":"light",
  8. "navigationBarBackgroundColor": "#fff",
  9. "navigationBarTitleText": "WeChat",
  10. "navigationBarTextStyle":"black"
  11. },
  12. "tabBar":{
  13. "backgroundColor": "#111111",
  14. "list": [
  15. {
  16. "pagePath": "pages/index/index",
  17. "text": "",
  18. "iconPath": "images/btn_home_n@2x.png",
  19. "selectedIconPath": "images/btn_home_s@2x.png"
  20. },
  21. {
  22. "pagePath": "pages/index/index",
  23. "text": "",
  24. "iconPath": "images/btn_gonggao_n@2x.png",
  25. "selectedIconPath": "images/btn_gonggao_s@2x.png"
  26. },
  27. {
  28. "pagePath": "pages/index/index",
  29. "text": "",
  30. "iconPath": "images/btn_wenzhang_n@2x.png",
  31. "selectedIconPath": "images/btn_wenzhang_s@2x.png"
  32. },
  33. {
  34. "pagePath": "pages/userinfo/userinfo",
  35. "text": "",
  36. "iconPath": "images/btn_me_n@2x.png",
  37. "selectedIconPath": "images/btn_me_s@2x.png"
  38. }
  39. ]
  40. }
  41. }