pages.json 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  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/help/help",
  11. "style":{
  12. "navigationBarTitleText":"帮助中心"
  13. }
  14. },
  15. {
  16. "path":"pages/msgList/msgList",
  17. "style":{
  18. "navigationBarTitleText":"公告通知",
  19. "enablePullDownRefresh":true
  20. }
  21. },
  22. {
  23. "path":"pages/pay/pay"
  24. },
  25. {
  26. "path":"pages/payInfo/payInfo",
  27. "style":{
  28. "navigationBarTitleText":"缴纳标准"
  29. }
  30. },
  31. {
  32. "path":"pages/feedback/feedback",
  33. "style":{
  34. "navigationBarTitleText":"意见反馈"
  35. }
  36. },
  37. {
  38. "path":"pages/promise/promise",
  39. "style":{
  40. "navigationBarTitleText":"承诺书"
  41. }
  42. },
  43. {
  44. "path":"pages/msgInfo/msgInfo",
  45. "style":{
  46. "navigationBarTitleText":"公告详情"
  47. }
  48. },
  49. {
  50. "path":"pages/reviseUserInfo/reviseUserInfo",
  51. "style":{
  52. "navigationBarTitleText":"退出绑定"
  53. }
  54. },
  55. {
  56. "path":"pages/payList/payList",
  57. "style":{
  58. "navigationBarTitleText":"缴费明细",
  59. // "enablePullDownRefresh":true,
  60. "backgroundTextStyle":"dark",
  61. "disableScroll": true
  62. }
  63. },
  64. {
  65. "path":"pages/team/team",
  66. "style":{
  67. "navigationBarTitleText":"团队简介"
  68. }
  69. },
  70. {
  71. "path":"pages/pickTime/pickTime",
  72. "style":{
  73. "navigationBarTitleText":"选择时间"
  74. }
  75. },
  76. {
  77. "path":"pages/promiseList/promiseList",
  78. "style":{
  79. "navigationBarTitleText":"我的承诺书",
  80. "enablePullDownRefresh":true
  81. }
  82. },
  83. {
  84. "path":"pages/promiseInfo/promiseInfo",
  85. "style":{
  86. "navigationBarTitleText":"查看承诺书"
  87. }
  88. },
  89. {
  90. "path":"pages/downBook/downBook",
  91. "style":{
  92. "navigationBarTitleText":"下载承诺书"
  93. }
  94. }
  95. ],
  96. "globalStyle": {
  97. "navigationBarTextStyle": "white",
  98. "navigationBarTitleText": "缴费",
  99. "navigationBarBackgroundColor": "#1479f7",
  100. "backgroundColor": "#F6F5F5"
  101. }
  102. }