pages.json 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. {
  2. "vue3": true,
  3. "pages": [ //pages数组中第一项表示应用启动页,参考:https://doc.dcloud.net.cn/uni-app-x/collocation/pagesjson.html
  4. {
  5. "path": "pages/index/console",
  6. "style": {
  7. "navigationBarTitleText": "控制台"
  8. }
  9. },
  10. {
  11. "path": "pages/index/my",
  12. "style": {
  13. "navigationBarTitleText": "我的"
  14. }
  15. },
  16. {
  17. "path": "pages/index/order",
  18. "style": {
  19. "navigationBarTitleText": "订单"
  20. }
  21. },
  22. {
  23. "path": "pages/index/account",
  24. "style": {
  25. "navigationBarTitleText": "账户"
  26. }
  27. },
  28. {
  29. "path": "pages/console/setOrderTime",
  30. "style": {
  31. "navigationBarTitleText": "接单时间"
  32. }
  33. },
  34. {
  35. "path": "pages/login/login",
  36. "style": {
  37. "navigationBarTitleText": ""
  38. }
  39. },
  40. {
  41. "path": "pages/console/serviceProject",
  42. "style": {
  43. "navigationBarTitleText": "服务项目"
  44. }
  45. },
  46. {
  47. "path": "pages/myEdit/myEdit",
  48. "style": {
  49. "navigationBarTitleText": "个人信息"
  50. }
  51. },
  52. {
  53. "path": "pages/login/verifyManager",
  54. "style": {
  55. "navigationBarTitleText": ""
  56. }
  57. }, {
  58. "path": "pages/login/full-webview-page",
  59. "style": {
  60. "navigationBarTitleText": ""
  61. }
  62. },
  63. {
  64. "path": "pages/login/merchantRecuitment",
  65. "style": {
  66. "navigationBarTitleText": "商户招募"
  67. }
  68. },
  69. {
  70. "path": "pages/myEdit/setting",
  71. "style": {
  72. "navigationBarTitleText": "设置"
  73. }
  74. },
  75. {
  76. "path": "pages/orderStatisics/orderStatisics",
  77. "style": {
  78. "navigationBarTitleText": "数据统计"
  79. }
  80. }
  81. ],
  82. "globalStyle": {
  83. "navigationBarTextStyle": "black",
  84. "navigationBarTitleText": "小丁到家--上门按摩",
  85. "navigationBarBackgroundColor": "#F8F8F8",
  86. "backgroundColor": "#F8F8F8"
  87. },
  88. "tabBar": {
  89. "selectedColor": "#000000",
  90. "backgroundColor": "#ffffff",
  91. "list": [{
  92. "pagePath": "pages/index/console",
  93. "iconPath": "static/iconInfo/noactive/homepage.png",
  94. "selectedIconPath": "static/iconInfo/active/homepage.png",
  95. "text": "控制台"
  96. }, {
  97. "pagePath": "pages/index/order",
  98. "iconPath": "static/iconInfo/noactive/order.png",
  99. "selectedIconPath": "static/iconInfo/active/order.png",
  100. "text": "订单"
  101. }, {
  102. "pagePath": "pages/index/account",
  103. "iconPath": "static/iconInfo/noactive/account.png",
  104. "selectedIconPath": "static/iconInfo/active/account.png",
  105. "text": "账户"
  106. },
  107. {
  108. "pagePath": "pages/index/my",
  109. "iconPath": "static/iconInfo/noactive/myhome.png",
  110. "selectedIconPath": "static/iconInfo/active/myhome.png",
  111. "text": "我的"
  112. }
  113. ]
  114. },
  115. "uniIdRouter": {}
  116. }