pages.json 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. {
  2. // "condition": { //模式配置,仅开发期间生效
  3. // "current": 0, //当前激活的模式(list 的索引项)
  4. // "list": []
  5. // },
  6. //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  7. "pages": [
  8. {
  9. "path" : "pages/signs/main/main",
  10. "style" : {
  11. "navigationBarTitleText": "",
  12. "enablePullDownRefresh": false,
  13. "navigationStyle": "custom",
  14. "navigationBarTextStyle":"black"
  15. }
  16. }
  17. ,{
  18. "path" : "pages/signs/me/me",
  19. "style" : {
  20. "navigationBarTitleText": "",
  21. "enablePullDownRefresh": false,
  22. "navigationStyle": "custom",
  23. "navigationBarTextStyle":"black"
  24. }
  25. },
  26. {
  27. "path" : "pages/loading/loading",
  28. "style" :
  29. {
  30. "navigationBarTitleText": "加载页面",
  31. "enablePullDownRefresh": false,
  32. "navigationStyle": "custom",
  33. "navigationBarTextStyle":"white"
  34. }
  35. }
  36. ,{
  37. "path" : "pages/signs/subscribe/subscribe",
  38. "style" : {
  39. "navigationBarTitleText": "立即预约",
  40. "enablePullDownRefresh": false,
  41. "navigationBarTextStyle":"black"
  42. }
  43. }
  44. ,{
  45. "path" : "pages/signs/address/address",
  46. "style" :
  47. {
  48. "navigationBarTitleText": "添加阁位",
  49. "enablePullDownRefresh": false,
  50. "navigationBarTextStyle":"black"
  51. }
  52. }
  53. ,{
  54. "path" : "pages/signs/invitation/invitation",
  55. "style" :
  56. {
  57. "navigationBarTitleText": "预约完成",
  58. "enablePullDownRefresh": false,
  59. "navigationBarTextStyle":"black"
  60. }
  61. }
  62. ,{
  63. "path" : "pages/signs/userCenter/userCenter",
  64. "style" :
  65. {
  66. "navigationBarTitleText": "个人中心",
  67. "enablePullDownRefresh": false
  68. }
  69. },
  70. {
  71. "path" : "pages/signs/contract/contract",
  72. "style" :
  73. {
  74. "navigationBarTitleText": "",
  75. "enablePullDownRefresh": false
  76. }
  77. }
  78. ],
  79. "subPackages": [],
  80. "preloadRule": {
  81. // "pages/views": {
  82. // "network": "all",
  83. // "packages": []
  84. // }
  85. },
  86. "globalStyle": {
  87. "navigationBarTextStyle": "black",
  88. "navigationBarTitleText": "",
  89. "navigationBarBackgroundColor": "#FFFFFF",
  90. "backgroundColor": "#FFFFFF"
  91. },
  92. "tabBar": {
  93. "color": "#bbbbbb",
  94. "selectedColor": "#333",
  95. "backgroundColor": "#ffffff",
  96. "borderStyle": "black",
  97. "list": [{
  98. "pagePath": "pages/signs/main/main",
  99. "iconPath": "static/app/tabs/tab1.png",
  100. "selectedIconPath": "static/app/tabs/tab1_on.png",
  101. "text": "预约"
  102. },
  103. {
  104. "pagePath": "pages/signs/me/me",
  105. "iconPath": "static/app/tabs/tab2.png",
  106. "selectedIconPath": "static/app/tabs/tab2_on.png",
  107. "text": "我的"
  108. }
  109. ]
  110. }
  111. }