pages.json 996 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/index/index",
  5. "style": {
  6. "navigationBarTitleText": "首页",
  7. "navigationStyle": "default"
  8. },
  9. "meta": {
  10. "auth": false,
  11. "sync": true,
  12. "title": "推荐",
  13. "group": "平台"
  14. }
  15. },
  16. {
  17. "path": "pages/index/app-update",
  18. "style": {
  19. "navigationBarTitleText": ""
  20. }
  21. }
  22. ],
  23. /* 分包预载配置 */
  24. // "preloadRule": {
  25. // "pages/index/index": {
  26. // "network": "all",
  27. // "packages": ["pages/account", "pages/app", "pages/user"]
  28. // }
  29. // },
  30. "tabBar": {
  31. "backgroundColor": "#FFFFFF",
  32. "borderStyle": "white",
  33. "color": "#BEBEBE",
  34. "selectedColor": "#323232",
  35. "list": []
  36. },
  37. "globalStyle": {
  38. "navigationBarTextStyle": "black",
  39. "navigationBarTitleText": "先见平台",
  40. "navigationBarBackgroundColor": "#FAFAFC",
  41. "backgroundColor": "#FAFAFC",
  42. "navigationStyle": "custom"
  43. },
  44. "uniIdRouter": {}
  45. }