pages.json 1018 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "pages": [
  3. {
  4. "path": "pages/login/login",
  5. "style": {
  6. "navigationBarTitleText": "登录",
  7. "navigationStyle": "custom"
  8. }
  9. },
  10. {
  11. "path": "pages/index/index",
  12. "style": {
  13. "navigationBarTitleText": "今楚联合育种种猪智能选留系统"
  14. }
  15. },
  16. {
  17. "path": "pages/mine/manage",
  18. "style": {
  19. "navigationBarTitleText": "个人中心"
  20. }
  21. }
  22. ],
  23. "globalStyle": {
  24. "navigationBarTextStyle": "black",
  25. "navigationBarTitleText": "uni-app",
  26. "navigationBarBackgroundColor": "#F8F8F8",
  27. "backgroundColor": "#F8F8F8"
  28. },
  29. "tabBar": {
  30. "color": "#999999",
  31. "selectedColor": "#ff0000",
  32. "backgroundColor": "#ffffff",
  33. "list": [
  34. {
  35. "pagePath": "pages/index/index",
  36. "text": "首页",
  37. "iconPath": "static/menu_search.png",
  38. "selectedIconPath": "static/menu_search_selected.png"
  39. },
  40. {
  41. "pagePath": "pages/mine/manage",
  42. "text": "我的",
  43. "iconPath": "static/menu_mine.png",
  44. "selectedIconPath": "static/menu_mine_selected.png"
  45. }
  46. ]
  47. }
  48. }