pages.json 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/index/index",
  5. "style": {
  6. // "disableScroll": true,
  7. "navigationBarTitleText": ""
  8. }
  9. },{
  10. "path": "pages/index/appointment",
  11. "style": {
  12. "navigationBarTitleText": ""
  13. }
  14. },{
  15. "path": "pages/tourist/index",
  16. "style": {
  17. "navigationBarTitleText": ""
  18. }
  19. },{
  20. "path": "pages/tourist/add",
  21. "style": {
  22. "navigationBarTitleText": ""
  23. }
  24. }, {
  25. "path": "pages/user/user",
  26. "style": {
  27. "navigationBarTitleText": ""
  28. }
  29. },{
  30. "path": "pages/user/guide",
  31. "style": {
  32. "navigationBarTitleText": ""
  33. }
  34. },{
  35. "path": "pages/order/index",
  36. "style": {
  37. "navigationBarTitleText": "我的订单"
  38. }
  39. },{
  40. "path": "pages/order/detail",
  41. "style": {
  42. "navigationBarTitleText": "订单详情"
  43. }
  44. },{
  45. "path": "pages/ticket/index",
  46. "style": {
  47. "navigationBarTitleText": ""
  48. }
  49. },{
  50. "path": "pages/ticket/detail",
  51. "style": {
  52. "navigationBarTitleText": "票信息"
  53. }
  54. },{
  55. "path": "pages/login/login",
  56. "style": {
  57. "navigationBarTitleText": "登录"
  58. }
  59. }
  60. ],
  61. "tabBar": {
  62. "color": "#B2BCCB",
  63. "selectedColor": "#26D9F2",
  64. "borderStyle": "#EEE",
  65. "backgroundColor": "#fff",
  66. "list": [{
  67. "iconPath": "static/tabbar/index-gray.png",
  68. "selectedIconPath": "static/tabbar/index.png",
  69. "pagePath": "pages/index/index",
  70. "text": "首页"
  71. }, {
  72. "iconPath": "static/tabbar/ticket-gray.png",
  73. "selectedIconPath": "static/tabbar/ticket.png",
  74. "pagePath": "pages/ticket/index",
  75. "text": "票夹"
  76. }, {
  77. "iconPath": "static/tabbar/user-gray.png",
  78. "selectedIconPath": "static/tabbar/user.png",
  79. "pagePath": "pages/user/user",
  80. "text": "我的"
  81. }]
  82. },
  83. "permission": {
  84. "scope.userLocation": {
  85. "desc": "获得当前位置"
  86. }
  87. },
  88. "globalStyle": {
  89. "navigationBarTextStyle": "black",
  90. "navigationBarTitleText": "丽江古城景区",
  91. "navigationBarBackgroundColor": "#FFFFFF",
  92. "backgroundColor": "#F8F8F8",
  93. "navigationStyle": "custom"
  94. }
  95. }