pages.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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. }
  12. },
  13. {
  14. "path": "pages/code/code",
  15. "style": {
  16. "navigationBarTitleText": "二维码出示",
  17. "navigationStyle":"custom"
  18. // "navigationBarBackgroundColor": "#009FE8",
  19. // "navigationBarTextStyle": "white"
  20. }
  21. },
  22. {
  23. "path": "pages/mine/mine",
  24. "style": {
  25. "navigationBarTitleText": "我的",
  26. "navigationStyle":"custom"
  27. }
  28. }
  29. ],
  30. "tabBar":{
  31. "color": "#AAAAAA",
  32. "selectedColor": "#343434",
  33. "borderStyle": "black",
  34. "backgroundColor": "#ffffff",
  35. "list": [{
  36. "pagePath": "pages/index/index"
  37. },
  38. {
  39. "pagePath": "pages/mine/mine"
  40. }]
  41. },
  42. "globalStyle": {
  43. "navigationBarTextStyle": "black",
  44. "navigationBarTitleText": "uni-app",
  45. "navigationBarBackgroundColor": "#F8F8F8",
  46. "backgroundColor": "#F8F8F8"
  47. }
  48. }