pages.json 1.5 KB

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