pages.json 1019 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "pages": [
  3. {
  4. "path": "pages/index/home",
  5. "style": {
  6. "navigationStyle": "custom"
  7. }
  8. }
  9. ],
  10. "subPackages": [
  11. {
  12. "root": "pages/user",
  13. "pages": [
  14. {
  15. "path": "login",
  16. "style": {
  17. "navigationStyle": "custom",
  18. "disableScroll": true
  19. }
  20. }
  21. ]
  22. }
  23. ],
  24. "globalStyle": {
  25. "navigationBarTitleText": "cool-unix",
  26. "navigationBarTextStyle": "@navTextStyle",
  27. "backgroundColorContent": "@bgContentColor",
  28. "backgroundColor": "@bgColor",
  29. "navigationBarBackgroundColor": "@navBgColor",
  30. "pageOrientation": "landscape"
  31. },
  32. "tabBar": {
  33. "custom": true,
  34. "color": "@tabColor",
  35. "selectedColor": "@tabSelectedColor",
  36. "backgroundColor": "@tabBgColor",
  37. "borderStyle": "@tabBorderStyle",
  38. "height": "60px",
  39. "list": [
  40. {
  41. "pagePath": "pages/index/home",
  42. "iconPath": "/static/icon/tabbar/home.png",
  43. "selectedIconPath": "/static/icon/tabbar/home2.png",
  44. "text": "首页"
  45. }
  46. ]
  47. },
  48. "uniIdRouter": {}
  49. }