pages.json 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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/detail",
  16. "style": {
  17. "navigationBarTitleText": "菜品详情",
  18. "enablePullDownRefresh": false
  19. }
  20. },
  21. {
  22. "path": "pages/index",
  23. "style": {
  24. "navigationBarTitleText": "粤菜文化",
  25. "enablePullDownRefresh": false
  26. }
  27. }
  28. ],
  29. "globalStyle": {
  30. "navigationBarTitleText": "",
  31. "navigationBarBackgroundColor": "@navBgColor",
  32. "navigationBarTextStyle": "@navTxtStyle",
  33. "backgroundColor": "@bgColor",
  34. "backgroundTextStyle": "@bgTxtStyle",
  35. "backgroundColorTop": "@bgColorTop",
  36. "backgroundColorBottom": "@bgColorBottom"
  37. },
  38. "tabBar": {
  39. "color": "@tabFontColor",
  40. "selectedColor": "@tabSelectedColor",
  41. "backgroundColor": "@tabBgColor",
  42. "borderStyle": "@tabBorderStyle",
  43. "list": [{
  44. "iconPath": "@iconPath1",
  45. "selectedIconPath": "@selectedIconPath1",
  46. "text": "首页",
  47. "pagePath": "pages/yuecai/home/index"
  48. },{
  49. "iconPath": "@iconPath2",
  50. "selectedIconPath": "@selectedIconPath2",
  51. "text": "菜品详情2",
  52. "pagePath": "pages/yuecai/dish/detail"
  53. }]
  54. },
  55. "darkmode": true,
  56. "themeLocation": "theme.json"
  57. }