pages.json 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/index/index",
  5. "style": {
  6. "navigationBarTitleText": "阿拉灯神丁"
  7. }
  8. }
  9. ,{
  10. "path" : "pages/chat/chat",
  11. "style" : {}
  12. }
  13. ,{
  14. "path" : "pages/chat/chatDetail/chatDetail",
  15. "style" : {}
  16. }
  17. ,{
  18. "path" : "pages/selfInfo/selfInfo",
  19. "style" : {
  20. "navigationBarTitleText": "个人中心"
  21. }
  22. }
  23. ,{
  24. "path" : "pages/selfInfo/rechargeRecord/rechargeRecord",
  25. "style" : {
  26. "navigationBarTitleText": "充值记录"
  27. }
  28. },
  29. {
  30. "path" : "pages/selfInfo/payList/payList",
  31. "style" : {
  32. "navigationBarTitleText": "套餐"
  33. }
  34. }
  35. ],
  36. "globalStyle": {
  37. "navigationBarTextStyle": "black",
  38. "navigationBarTitleText": "mini_rabot",
  39. "navigationBarBackgroundColor": "#F8F8F8",
  40. "backgroundColor": "#F8F8F8"
  41. }
  42. }