pages.json 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. {
  2. "easycom": {
  3. "^u-(.*)": "@/uview-ui/components/u-$1/u-$1.vue"
  4. },
  5. "subPackages": [],
  6. // "requiredBackgroundModes": ["audio", "location"],
  7. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  8. {
  9. "path": "pages/yuecai/home/index",
  10. "style": {
  11. "navigationBarTitleText": "专业风采",
  12. "enablePullDownRefresh": false
  13. }
  14. },{
  15. "path": "pages/yuecai/dish/index",
  16. "style": {
  17. "navigationBarTitleText": "名菜",
  18. "enablePullDownRefresh": false
  19. }
  20. },{
  21. "path": "pages/yuecai/location/index",
  22. "style": {
  23. "navigationBarTitleText": "名点",
  24. "enablePullDownRefresh": false
  25. }
  26. },{
  27. "path": "pages/yuecai/restaurant/index",
  28. "style": {
  29. "navigationBarTitleText": "名店",
  30. "enablePullDownRefresh": false
  31. }
  32. },{
  33. "path": "pages/yuecai/usercenter/index",
  34. "style": {
  35. "navigationBarTitleText": "我的",
  36. "enablePullDownRefresh": false
  37. }
  38. },
  39. {
  40. "path": "pages/index",
  41. "style": {
  42. "navigationBarTitleText": "粤菜文化",
  43. "enablePullDownRefresh": false
  44. }
  45. }
  46. ],
  47. "globalStyle": {
  48. "navigationBarTitleText": "",
  49. "navigationBarBackgroundColor": "@navBgColor",
  50. "navigationBarTextStyle": "@navTxtStyle",
  51. "backgroundColor": "@bgColor",
  52. "backgroundTextStyle": "@bgTxtStyle",
  53. "backgroundColorTop": "@bgColorTop",
  54. "backgroundColorBottom": "@bgColorBottom"
  55. },
  56. "tabBar": {
  57. "color": "@tabFontColor",
  58. "selectedColor": "@tabSelectedColor",
  59. "backgroundColor": "@tabBgColor",
  60. "borderStyle": "@tabBorderStyle",
  61. "list": [{
  62. "iconPath": "@iconPath1",
  63. "selectedIconPath": "@selectedIconPath1",
  64. "text": "专业风采",
  65. "pagePath": "pages/yuecai/home/index"
  66. },{
  67. "iconPath": "@iconPath2",
  68. "selectedIconPath": "@selectedIconPath2",
  69. "text": "名菜",
  70. "pagePath": "pages/yuecai/dish/index"
  71. },{
  72. "iconPath": "@iconPath2",
  73. "selectedIconPath": "@selectedIconPath2",
  74. "text": "名点",
  75. "pagePath": "pages/yuecai/location/index"
  76. },{
  77. "iconPath": "@iconPath2",
  78. "selectedIconPath": "@selectedIconPath2",
  79. "text": "名店",
  80. "pagePath": "pages/yuecai/restaurant/index"
  81. },{
  82. "iconPath": "@iconPath2",
  83. "selectedIconPath": "@selectedIconPath2",
  84. "text": "我的",
  85. "pagePath": "pages/yuecai/usercenter/index"
  86. }]
  87. },
  88. "darkmode": true,
  89. "themeLocation": "theme.json"
  90. }