pages.json 944 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/index/index",
  5. "style": {
  6. "navigationBarTitleText": "访客预约",
  7. "enablePullDownRefresh": true,
  8. "app-plus": {
  9. "titleNView": false
  10. }
  11. }
  12. },
  13. {
  14. "path": "pages/index/wechat",
  15. "style": {
  16. "navigationBarTitleText": "登录",
  17. "app-plus": {
  18. "titleNView": false
  19. }
  20. }
  21. },
  22. {
  23. "path": "pages/index/add",
  24. "style": {
  25. "navigationBarTitleText": "预约信息",
  26. "app-plus": {
  27. "titleNView": false
  28. }
  29. }
  30. },
  31. {
  32. "path": "pages/index/detail",
  33. "style": {
  34. "navigationBarTitleText": "通行码",
  35. "app-plus": {
  36. "titleNView": false
  37. }
  38. }
  39. }
  40. ],
  41. "globalStyle": {
  42. "navigationBarTextStyle": "white",
  43. "navigationBarTitleText": "访客预约",
  44. "navigationBarBackgroundColor": "#089875",
  45. "backgroundColor": "#089875"
  46. }
  47. }