pages.json 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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/share/sharePage",
  11. "style": {
  12. "navigationBarTitleText": "邀好友 赚查询次数"
  13. }
  14. },
  15. {
  16. "path" : "pages/auth/index",
  17. "style": {
  18. "navigationBarTitleText": "授权登录"
  19. }
  20. },
  21. {
  22. "path" : "pages/chat/chat",
  23. "style" : {}
  24. }
  25. ,{
  26. "path" : "pages/chat/chatDetail/chatDetail",
  27. "style" : {}
  28. }
  29. ,{
  30. "path" : "pages/selfInfo/selfInfo",
  31. "style" : {
  32. "navigationBarTitleText": "个人中心"
  33. }
  34. }
  35. ,{
  36. "path" : "pages/selfInfo/rechargeRecord/rechargeRecord",
  37. "style" : {
  38. "navigationBarTitleText": "充值记录"
  39. }
  40. },
  41. {
  42. "path" : "pages/selfInfo/payList/payList",
  43. "style" : {
  44. "navigationBarTitleText": "套餐"
  45. }
  46. },
  47. {
  48. "path" : "pages/share/shareCode/index",
  49. "style" : {
  50. "navigationBarTitleText": "二维码分享"
  51. }
  52. },
  53. {
  54. "path" : "pages/share/rulePage/index",
  55. "style" : {
  56. "navigationBarTitleText": "活动规则"
  57. }
  58. }
  59. ,{
  60. "path" : "pages/selfInfo/shareDetail/shareDetail",
  61. "style" : {
  62. "navigationBarTitleText": "查询次数明细"
  63. }
  64. }
  65. ],
  66. "globalStyle": {
  67. "navigationBarTextStyle": "black",
  68. "navigationBarTitleText": "mini_rabot",
  69. "navigationBarBackgroundColor": "#F8F8F8",
  70. "backgroundColor": "#F8F8F8"
  71. }
  72. }