pages.json 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  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. "globalStyle": {
  54. "navigationBarTextStyle": "black",
  55. "navigationBarTitleText": "小丁到家--上门按摩",
  56. "navigationBarBackgroundColor": "#F8F8F8",
  57. "backgroundColor": "#F8F8F8"
  58. },
  59. "tabBar": {
  60. "selectedColor": "#000000",
  61. "backgroundColor": "#ffffff",
  62. "list": [{
  63. "pagePath": "pages/index/console",
  64. "iconPath": "static/iconInfo/noactive/homepage.png",
  65. "selectedIconPath": "static/iconInfo/active/homepage.png",
  66. "text": "控制台"
  67. }, {
  68. "pagePath": "pages/index/order",
  69. "iconPath": "static/iconInfo/noactive/order.png",
  70. "selectedIconPath": "static/iconInfo/active/order.png",
  71. "text": "订单"
  72. }, {
  73. "pagePath": "pages/index/account",
  74. "iconPath": "static/iconInfo/noactive/account.png",
  75. "selectedIconPath": "static/iconInfo/active/account.png",
  76. "text": "账户"
  77. },
  78. {
  79. "pagePath": "pages/index/my",
  80. "iconPath": "static/iconInfo/noactive/myhome.png",
  81. "selectedIconPath": "static/iconInfo/active/myhome.png",
  82. "text": "我的"
  83. }
  84. ]
  85. },
  86. "uniIdRouter": {}
  87. }