app.json 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. {
  2. "pages": [
  3. "pages/index/index",
  4. "pages/category/index",
  5. "pages/service/index",
  6. "pages/my/index",
  7. "pages/map/index",
  8. "pages/qrPage/index"
  9. ],
  10. "subPackages": [],
  11. "window": {
  12. "navigationBarTextStyle": "white",
  13. "navigationBarTitleText": "uni-app",
  14. "navigationBarBackgroundColor": "#F8F8F8",
  15. "backgroundColor": "#F8F8F8",
  16. "navigationStyle": "custom"
  17. },
  18. "tabBar": {
  19. "color": "black",
  20. "selectedColor": "#1afa29",
  21. "borderStyle": "black",
  22. "backgroundColor": "#F8F8F8",
  23. "fontSize": "12px",
  24. "spacing": "5px",
  25. "height": "50px",
  26. "iconfontSrc": "static/fonts/iconfont.ttf",
  27. "list": [
  28. {
  29. "pagePath": "pages/index/index",
  30. "text": "首页",
  31. "iconPath": "static/tabbar/index.png",
  32. "selectedIconPath": "static/tabbar/index_a.png",
  33. "iconfont": {
  34. "text": "",
  35. "selectedText": "",
  36. "fontSize": "17px",
  37. "color": "#333",
  38. "selectedColor": "red"
  39. }
  40. },
  41. {
  42. "pagePath": "pages/category/index",
  43. "text": "分类",
  44. "iconPath": "static/tabbar/cat.png",
  45. "selectedIconPath": "static/tabbar/cat_a.png",
  46. "iconfont": {
  47. "text": "",
  48. "selectedText": "",
  49. "fontSize": "17px",
  50. "color": "#333",
  51. "selectedColor": "red"
  52. }
  53. },
  54. {
  55. "pagePath": "pages/service/index",
  56. "text": "售后",
  57. "iconPath": "static/tabbar/service.png",
  58. "selectedIconPath": "static/tabbar/service_a.png",
  59. "iconfont": {
  60. "text": "",
  61. "selectedText": "",
  62. "fontSize": "17px",
  63. "color": "#333",
  64. "selectedColor": "red"
  65. }
  66. },
  67. {
  68. "pagePath": "pages/my/index",
  69. "text": "我的",
  70. "iconPath": "static/tabbar/my.png",
  71. "selectedIconPath": "static/tabbar/my_a.png",
  72. "iconfont": {
  73. "text": "",
  74. "selectedText": "",
  75. "fontSize": "17px",
  76. "color": "#333",
  77. "selectedColor": "red"
  78. }
  79. }
  80. ]
  81. },
  82. "permission": {
  83. "scope.userLocation": {
  84. "desc": "用于小程序使用中为您提供位置信息"
  85. }
  86. },
  87. "requiredPrivateInfos": [
  88. "getLocation",
  89. "choosePoi",
  90. "chooseAddress",
  91. "chooseLocation"
  92. ],
  93. "usingComponents": {
  94. "nav-bar": "/components/navBar/index"
  95. }
  96. }