pages.json 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  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/login/login",
  8. "style": {
  9. "navigationStyle": "custom",
  10. "enablePullDownRefresh": false
  11. }
  12. },
  13. {
  14. "path": "pages/index/index",
  15. "style": {
  16. "navigationStyle": "custom",
  17. "enablePullDownRefresh": false
  18. }
  19. },
  20. {
  21. "path": "pages/my/my",
  22. "style": {
  23. "navigationStyle": "custom",
  24. "enablePullDownRefresh": false
  25. }
  26. },
  27. {
  28. "path" : "pages/scanCode/scanCode",
  29. "style" :
  30. {
  31. "navigationBarTitleText" : "扫码",
  32. "enablePullDownRefresh" : false
  33. }
  34. }
  35. ],
  36. "tabBar": {
  37. "color": "#999999",
  38. "selectedColor": "#333333",
  39. "borderStyle": "white",
  40. "backgroundColor": "#ffffff",
  41. "list": [{
  42. "pagePath": "pages/index/index",
  43. "iconPath": "static/tabBarImg/dianzan.png",
  44. "selectedIconPath": "static/tabBarImg/dianzan_cur.png",
  45. "text": "服务"
  46. }, {
  47. "pagePath": "pages/my/my",
  48. "iconPath": "static/tabBarImg/me.png",
  49. "selectedIconPath": "static/tabBarImg/me_cur.png",
  50. "text": "我的"
  51. }]
  52. },
  53. "globalStyle": {
  54. "navigationBarTextStyle": "black",
  55. // "navigationBarTitleText": "加载中",
  56. "navigationBarBackgroundColor": "#FFE05C",
  57. "backgroundColor": "#FFE05C"
  58. },
  59. "uniIdRouter": {}
  60. }