pages.json 1.1 KB

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