app.json 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. {
  2. "pages": [
  3. "pages/tabBar/home",
  4. "pages/tabBar/medicine",
  5. "pages/tabBar/mine",
  6. "pages/home/shop",
  7. "pages/home/certification",
  8. "pages/home/productDetails",
  9. "pages/medicine/consultation",
  10. "pages/medicine/extractionRoot",
  11. "pages/medicine/inform",
  12. "pages/index/index",
  13. "pages/mine/address",
  14. "pages/mine/drugUser",
  15. "pages/mine/newAddress"
  16. ],
  17. "subPackages": [],
  18. "window": {
  19. "navigationBarTextStyle": "black",
  20. "navigationBarTitleText": "uni-app",
  21. "navigationBarBackgroundColor": "#ffffff",
  22. "backgroundColor": "#ffffff"
  23. },
  24. "tabBar": {
  25. "color": "#707070",
  26. "selectedColor": "#4CAF50",
  27. "borderStyle": "white",
  28. "spacing": "1px",
  29. "backgroundColor": "#fbfbfb",
  30. "list": [
  31. {
  32. "pagePath": "pages/tabBar/home",
  33. "iconPath": "/static/tabbar/drugstore.png",
  34. "selectedIconPath": "/static/tabbar/drugstoreHL.png",
  35. "text": "首页"
  36. },
  37. {
  38. "pagePath": "pages/tabBar/medicine",
  39. "iconPath": "/static/tabbar/medicine.png",
  40. "selectedIconPath": "/static/tabbar/medicineHL.png",
  41. "text": "购物车"
  42. },
  43. {
  44. "pagePath": "pages/tabBar/mine",
  45. "iconPath": "/static/tabbar/mine.png",
  46. "selectedIconPath": "/static/tabbar/mineHL.png",
  47. "text": "我的"
  48. }
  49. ]
  50. },
  51. "permission": {
  52. "scope.userLocation": {
  53. "desc": "获取用户当前位置,以提供更好的服务"
  54. }
  55. },
  56. "requiredPrivateInfos": [
  57. "chooseLocation"
  58. ],
  59. "usingComponents": {}
  60. }