pages.json 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/login/login",
  5. "style": {
  6. "navigationStyle": "custom"
  7. }
  8. },
  9. {
  10. "path": "pages/login/merchant",
  11. "style": {
  12. "navigationStyle": "custom"
  13. }
  14. },
  15. {
  16. "path": "pages/wallet/detail",
  17. "navigationBarTitleText": "交易详情",
  18. "navigationBarBackgroundColor": "#FFFFFF"
  19. },{
  20. "path": "pages/wallet/transaction-list",
  21. "navigationBarTitleText": "交易列表",
  22. "navigationBarBackgroundColor": "#FFFFFF"
  23. },
  24. {
  25. "path": "pages/profile/edit",
  26. "navigationBarTitleText": "资料",
  27. "navigationBarBackgroundColor": "#FFFFFF"
  28. },
  29. {
  30. "path": "pages/wallet/withdraw",
  31. "navigationBarTitleText": "提现",
  32. "navigationBarBackgroundColor": "#FFFFFF"
  33. },
  34. {
  35. "path": "pages/wallet/withdraw-detail",
  36. "navigationBarTitleText": "提现",
  37. "navigationBarBackgroundColor": "#FFFFFF"
  38. },
  39. {
  40. "path": "pages/verification/index",
  41. "navigationBarTitleText": "订单核销",
  42. "navigationBarBackgroundColor": "#FFFFFF"
  43. },
  44. {
  45. "path": "pages/task/task",
  46. "style": {
  47. "navigationStyle": "custom",
  48. "navigationBarTextStyle": "white",
  49. "enablePullDownRefresh": true
  50. }
  51. },
  52. {
  53. "path": "pages/task/task1",
  54. "style": {
  55. "navigationStyle": "custom",
  56. "navigationBarTextStyle": "white",
  57. "enablePullDownRefresh": true
  58. }
  59. },
  60. {
  61. "path": "pages/income/income",
  62. "style": {
  63. "navigationBarTitleText": "收入明细",
  64. "navigationBarBackgroundColor": "#FFFFFF"
  65. }
  66. },
  67. {
  68. "path": "pages/order/order",
  69. "style": {
  70. "navigationBarTitleText": "订单",
  71. "navigationBarBackgroundColor": "#FFFFFF"
  72. }
  73. },
  74. {
  75. "path": "pages/order/order1",
  76. "style": {
  77. "navigationBarTitleText": "订单",
  78. "navigationBarBackgroundColor": "#FFFFFF"
  79. }
  80. },
  81. {
  82. "path": "pages/user/user",
  83. "style": {
  84. "navigationBarBackgroundColor": "#FFFFFF",
  85. "navigationBarTitleText": "我的"
  86. }
  87. },
  88. {
  89. "path": "pages/user/user1",
  90. "style": {
  91. "navigationBarTitleText": "我的",
  92. "navigationStyle": "custom"
  93. }
  94. },
  95. {
  96. "path": "pages/review/review-list",
  97. "style": {
  98. "navigationBarTitleText": "评价列表",
  99. "navigationBarBackgroundColor": "#FFFFFF",
  100. "enablePullDownRefresh": true
  101. }
  102. },
  103. {
  104. "path" : "pages/task/complete",
  105. "style" :
  106. {
  107. "navigationBarTitleText" : ""
  108. }
  109. }
  110. ],
  111. "globalStyle": {
  112. "navigationBarTextStyle": "black",
  113. "navigationBarTitleText": "uni-app",
  114. "navigationBarBackgroundColor": "#F8F8F8",
  115. "backgroundColor": "#F8F8F8"
  116. },
  117. "tabBar": {
  118. "color": "#C0C4CC",
  119. "selectedColor": "#000000",
  120. "borderStyle": "white",
  121. "backgroundColor": "#ffffff",
  122. "list": [{
  123. "pagePath": "pages/task/task",
  124. "iconPath": "static/tabbar/home.png",
  125. "selectedIconPath": "static/tabbar/home_active.png",
  126. "text": "首页"
  127. },
  128. {
  129. "pagePath": "pages/user/user",
  130. "iconPath": "static/tabbar/mine.png",
  131. "selectedIconPath": "static/tabbar/mine_active.png",
  132. "text": "我的"
  133. }
  134. ]
  135. }
  136. }