pages.json 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/index/index",
  5. "style": {
  6. "navigationStyle": "custom"
  7. }
  8. },
  9. {
  10. "path": "pages/mobile/index",
  11. "style": {
  12. "navigationStyle": "custom",
  13. "enablePullDownRefresh": true
  14. }
  15. },
  16. {
  17. "path": "pages/pc/index",
  18. "style": {
  19. "navigationStyle": "custom"
  20. }
  21. }, {
  22. "path": "pages/mobile/topTab",
  23. "style": {
  24. "navigationStyle": "custom",
  25. "enablePullDownRefresh": true
  26. }
  27. }, {
  28. "path": "pages/mobile/search",
  29. "style": {
  30. "navigationStyle": "custom",
  31. "enablePullDownRefresh": false
  32. }
  33. }, {
  34. "path": "pages/mobile/list",
  35. "style": {
  36. "navigationStyle": "custom",
  37. "enablePullDownRefresh": true
  38. }
  39. }
  40. ],
  41. "globalStyle": {
  42. "navigationBarTextStyle": "black",
  43. "navigationBarTitleText": "门店学院",
  44. "navigationBarBackgroundColor": "#F8F8F8",
  45. "backgroundColor": "#F8F8F8"
  46. }
  47. }