pages.json 971 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {
  2. "easycom": {
  3. "^u-(.*)": "uview-ui/components/u-$1/u-$1.vue"
  4. },
  5. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  6. {
  7. "path": "pages/index/index", // 首页
  8. "style": {
  9. "navigationBarTitleText": "",
  10. "navigationStyle": "custom",
  11. "enablePullDownRefresh": false
  12. }
  13. },
  14. {
  15. "path": "pages/store/storeList",
  16. "style": {
  17. "navigationBarTitleText": "网点列表"
  18. }
  19. }, {
  20. "path": "pages/store/storeDetail",
  21. "style": {
  22. "navigationBarTitleText": "网点详情"
  23. }
  24. }, {
  25. "path": "pages/userCenter/index",
  26. "style": {
  27. "navigationBarTitleText": "个人中心"
  28. }
  29. }, {
  30. "path": "pages/coupon/index/index",
  31. "style": {
  32. "navigationBarTitleText": "我的优惠卷"
  33. }
  34. }
  35. ],
  36. "globalStyle": {
  37. "navigationBarTextStyle": "black",
  38. "navigationBarTitleText": "uni-app",
  39. "navigationBarBackgroundColor": "#F8F8F8",
  40. "backgroundColor": "#F8F8F8"
  41. }
  42. }