pages.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path" : "pages/login/index",
  5. "style" :
  6. {
  7. "navigationBarTitleText" : "",
  8. "enablePullDownRefresh" : false,
  9. "navigationStyle": "custom",
  10. "app-plus": {
  11. "scrollIndicator": false
  12. }
  13. }
  14. },
  15. {
  16. "path": "pages/index/index",
  17. "style": {
  18. "navigationBarTitleText": "uni-app"
  19. }
  20. },
  21. {
  22. "path" : "pages/collectionList/index",
  23. "style" :
  24. {
  25. "navigationBarTitleText" : "价格采集",
  26. "enablePullDownRefresh" : false,
  27. "navigationStyle": "custom",
  28. "app-plus": {
  29. "scrollIndicator": false
  30. }
  31. }
  32. },
  33. {
  34. "path" : "pages/collectionDetail/index",
  35. "style" :
  36. {
  37. "navigationBarTitleText" : "价格采集",
  38. "enablePullDownRefresh" : false,
  39. "navigationStyle": "custom",
  40. "app-plus": {
  41. "scrollIndicator": false
  42. }
  43. }
  44. }
  45. ],
  46. "globalStyle": {
  47. "navigationBarTextStyle": "black",
  48. "navigationBarTitleText": "uni-app",
  49. "navigationBarBackgroundColor": "#F8F8F8",
  50. "backgroundColor": "#F8F8F8"
  51. },
  52. "uniIdRouter": {}
  53. }