pages.json 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. {
  2. "easycom": {
  3. "^u-(.*)": "@/uni_modules/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": "uni-app"
  10. }
  11. }, {
  12. "path": "pages/tabbar/user",
  13. "style": {
  14. "navigationBarTitleText": "我的",
  15. "navigationStyle": "custom"
  16. }
  17. }, {
  18. "path": "pages/auth/login",
  19. "style": {
  20. "navigationBarTitleText": "登录",
  21. "navigationStyle":"custom",
  22. "app-plus": {
  23. "animationType": "slide-in-bottom"
  24. }
  25. }
  26. }, {
  27. "path" : "pages/set/userInfo",
  28. "style" : {
  29. "navigationBarTitleText": "个人资料"
  30. }
  31. }
  32. ],
  33. "globalStyle": {
  34. "navigationBarTextStyle": "black",
  35. "navigationBarTitleText": "uni-app",
  36. "navigationBarBackgroundColor": "#F8F8F8",
  37. "backgroundColor": "#F8F8F8"
  38. },
  39. "tabBar": {
  40. "color": "#666",
  41. "selectedColor": "#FF5A5F",
  42. "borderStyle": "black",
  43. "list": [{
  44. "text": "首页",
  45. "pagePath": "pages/index/index",
  46. "iconPath": "static/tarbar/index.png",
  47. "selectedIconPath": "static/tarbar/index-active.png"
  48. }, {
  49. "text": "商品",
  50. "pagePath": "pages/product/list",
  51. "iconPath": "static/tarbar/product.png",
  52. "selectedIconPath": "static/tarbar/product-active.png"
  53. }, {
  54. "text": "我的",
  55. "pagePath": "pages/tabbar/user",
  56. "iconPath": "static/tarbar/ucenter.png",
  57. "selectedIconPath": "static/tarbar/ucenter-active.png"
  58. }]
  59. }
  60. }