pages.json 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. {
  2. "vue3": true,
  3. "pages": [ //pages数组中第一项表示应用启动页,参考:https://doc.dcloud.net.cn/uni-app-x/collocation/pagesjson.html
  4. {
  5. "path": "src/pages/index/console",
  6. "style": {
  7. "navigationBarTitleText": "控制台"
  8. }
  9. },
  10. {
  11. "path": "src/pages/index/my",
  12. "style": {
  13. "navigationBarTitleText": "我的"
  14. }
  15. },
  16. {
  17. "path": "src/pages/index/order",
  18. "style": {
  19. "navigationBarTitleText": "订单"
  20. }
  21. },
  22. {
  23. "path": "src/pages/index/account",
  24. "style": {
  25. "navigationBarTitleText": "账户"
  26. }
  27. },
  28. {
  29. "path": "src/pages/console/setOrderTime",
  30. "style": {
  31. "navigationBarTitleText": "接单时间"
  32. }
  33. },
  34. {
  35. "path": "src/pages/login/login",
  36. "style": {
  37. "navigationBarTitleText": ""
  38. }
  39. }
  40. ],
  41. "globalStyle": {
  42. "navigationBarTextStyle": "black",
  43. "navigationBarTitleText": "小丁到家--上门按摩",
  44. "navigationBarBackgroundColor": "#F8F8F8",
  45. "backgroundColor": "#F8F8F8"
  46. },
  47. "tabBar": {
  48. "selectedColor": "#000000",
  49. "backgroundColor": "#ffffff",
  50. "list": [{
  51. "pagePath": "pages/index/console",
  52. "iconPath": "static/iconInfo/noactive/homepage.png",
  53. "selectedIconPath": "static/iconInfo/active/homepage.png",
  54. "text": "控制台"
  55. }, {
  56. "pagePath": "pages/index/order",
  57. "iconPath": "static/iconInfo/noactive/order.png",
  58. "selectedIconPath": "static/iconInfo/active/order.png",
  59. "text": "订单"
  60. }, {
  61. "pagePath": "pages/index/account",
  62. "iconPath": "static/iconInfo/noactive/account.png",
  63. "selectedIconPath": "static/iconInfo/active/account.png",
  64. "text": "账户"
  65. },
  66. {
  67. "pagePath": "pages/index/my",
  68. "iconPath": "static/iconInfo/noactive/myhome.png",
  69. "selectedIconPath": "static/iconInfo/active/myhome.png",
  70. "text": "我的"
  71. }
  72. ]
  73. },
  74. "uniIdRouter": {}
  75. }