pages.json 1.2 KB

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