pages.json 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/login/index",
  5. "style": {
  6. "navigationBarTitleText": "登录",
  7. "navigationStyle": "custom"
  8. }
  9. },
  10. {
  11. "path": "pages/login/verify-code",
  12. "style": {
  13. "navigationBarTitleText": "验证码登录",
  14. "navigationStyle": "custom"
  15. }
  16. },
  17. {
  18. "path": "pages/index/index",
  19. "style": {
  20. "navigationBarTitleText": "首页"
  21. }
  22. },
  23. {
  24. "path": "pages/discover/index",
  25. "style": {
  26. "navigationBarTitleText": "发现",
  27. "navigationStyle": "custom"
  28. }
  29. },
  30. {
  31. "path": "pages/message/index",
  32. "style": {
  33. "navigationBarTitleText": "消息",
  34. "navigationStyle": "custom"
  35. }
  36. },
  37. {
  38. "path": "pages/mine/index",
  39. "style": {
  40. "navigationBarTitleText": "我的",
  41. "navigationStyle": "custom"
  42. }
  43. },
  44. {
  45. "path": "pages/search/index",
  46. "style": {
  47. "navigationBarTitleText": "课程搜索"
  48. }
  49. },
  50. {
  51. "path": "pages/calendar/index",
  52. "style": {
  53. "navigationBarTitleText": "课程日历"
  54. }
  55. },
  56. {
  57. "path": "pages/mine/profile",
  58. "style": { "navigationBarTitleText": "个人信息" }
  59. },
  60. {
  61. "path": "pages/mine/recycle",
  62. "style": { "navigationBarTitleText": "回收站" }
  63. },
  64. {
  65. "path": "pages/mine/notify",
  66. "style": { "navigationBarTitleText": "通知设置" }
  67. },
  68. {
  69. "path": "pages/mine/feedback",
  70. "style": { "navigationBarTitleText": "意见反馈" }
  71. },
  72. {
  73. "path": "pages/mine/service",
  74. "style": { "navigationBarTitleText": "在线客服" }
  75. },
  76. {
  77. "path": "pages/mine/about",
  78. "style": { "navigationBarTitleText": "了解小鹅通" }
  79. },
  80. {
  81. "path": "pages/mine/setting",
  82. "style": { "navigationBarTitleText": "设置" }
  83. },
  84. {
  85. "path": "pages/message/selected",
  86. "style": { "navigationBarTitleText": "课程精选" }
  87. },
  88. {
  89. "path" : "pages/mine/Merchant",
  90. "style" :
  91. {
  92. "navigationBarTitleText" : "商家后台管理"
  93. }
  94. },
  95. {
  96. "path" : "pages/mine/changePhone",
  97. "style" :
  98. {
  99. "navigationBarTitleText" : "更换手机号"
  100. }
  101. },
  102. {
  103. "path" : "pages/mine/unbindWechat",
  104. "style" :
  105. {
  106. "navigationBarTitleText" : "解绑微信"
  107. }
  108. },
  109. {
  110. "path" : "pages/mine/setPassword",
  111. "style" :
  112. {
  113. "navigationBarTitleText" : "设置密码"
  114. }
  115. },
  116. {
  117. "path" : "pages/mine/cancelAccount",
  118. "style" :
  119. {
  120. "navigationBarTitleText" : "账号注销"
  121. }
  122. },
  123. {
  124. "path": "pages/course/detail",
  125. "style": { "navigationBarTitleText": "课程详情" }
  126. }
  127. ],
  128. "globalStyle": {
  129. "navigationBarTextStyle": "black",
  130. "navigationBarTitleText": "小鹅通",
  131. "navigationBarBackgroundColor": "#F8F8F8",
  132. "backgroundColor": "#F8F8F8"
  133. },
  134. "uniIdRouter": {},
  135. "tabBar": {
  136. "color": "#888",
  137. "selectedColor": "#3498db",
  138. "backgroundColor": "#fff",
  139. "borderStyle": "black",
  140. "list": [
  141. {
  142. "pagePath": "pages/index/index",
  143. "iconPath": "static/tabbar/home.png",
  144. "selectedIconPath": "static/tabbar/home_selected.png",
  145. "text": "首页"
  146. },
  147. {
  148. "pagePath": "pages/discover/index",
  149. "iconPath": "static/tabbar/discover.png",
  150. "selectedIconPath": "static/tabbar/discover_selected.png",
  151. "text": "发现"
  152. },
  153. {
  154. "pagePath": "pages/message/index",
  155. "iconPath": "static/tabbar/message.png",
  156. "selectedIconPath": "static/tabbar/message_selected.png",
  157. "text": "消息"
  158. },
  159. {
  160. "pagePath": "pages/mine/index",
  161. "iconPath": "static/tabbar/mine.png",
  162. "selectedIconPath": "static/tabbar/mine_selected.png",
  163. "text": "我的"
  164. }
  165. ]
  166. }
  167. }