pages.json 930 B

123456789101112131415161718192021222324252627282930313233343536373839
  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. ,{
  21. "path" : "pages/userCenter/index",
  22. "style" : {
  23. "navigationBarTitleText": "个人中心"
  24. }
  25. }
  26. ,{
  27. "path" : "pages/coupon/index/index",
  28. "style" : {
  29. "navigationBarTitleText": "我的优惠卷"
  30. }
  31. }
  32. ],
  33. "globalStyle": {
  34. "navigationBarTextStyle": "black",
  35. "navigationBarTitleText": "uni-app",
  36. "navigationBarBackgroundColor": "#F8F8F8",
  37. "backgroundColor": "#F8F8F8"
  38. }
  39. }