pages.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/home/home",
  5. "style": {}
  6. },
  7. {
  8. "path": "pages/userAuth/userAuth",
  9. "style": {}
  10. },
  11. {
  12. "path": "pages/videoPlayer/videoPlayer",
  13. "style": {}
  14. },
  15. {
  16. "path": "pages/webview/webview",
  17. "style": {}
  18. },
  19. {
  20. "path": "pages/search/search",
  21. "style": {}
  22. },
  23. {
  24. "path": "pages/uploadFile/uploadFile",
  25. "style": {}
  26. },
  27. {
  28. "path": "pages/myLike/myLike",
  29. "style": {}
  30. },
  31. {
  32. "path": "pages/doctorDetail/doctorDetail",
  33. "style": {}
  34. },
  35. {
  36. "path": "pages/myAttention/myAttention",
  37. "style": {}
  38. },
  39. {
  40. "path": "pages/shortVideo/shortVideo",
  41. "style": {
  42. "navigationBarTitleText": "优医视频"
  43. }
  44. },
  45. {
  46. "path": "pages/myVideos/myVideos",
  47. "style": {}
  48. }
  49. ],
  50. "globalStyle": {
  51. "navigationStyle": "custom", // 自定义导航栏
  52. "navigationBarTextStyle": "white",
  53. "navigationBarTitleText": "优医短视频"
  54. },
  55. "tabBar": {
  56. "color": "#8e8e8e",
  57. "selectedColor": "#000000",
  58. "borderStyle": "black",
  59. "fontSize": "22px",
  60. "backgroundColor": "#ffffff",
  61. "position": "bottom",
  62. "height": "40px",
  63. "list": [{
  64. "pagePath": "pages/shortVideo/shortVideo",
  65. "text": "短视频"
  66. },
  67. {
  68. "pagePath": "pages/home/home",
  69. "text": "我的"
  70. }
  71. ]
  72. }
  73. }