app.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "pages": [
  3. "pages/login/index",
  4. "pages/home/index",
  5. "pages/mine/index",
  6. "pages/chat/index",
  7. "pages/web-view/index",
  8. "pages/category/symptom",
  9. "pages/category/disease",
  10. "pages/category/medicine"
  11. ],
  12. "subPackages": [],
  13. "window": {
  14. "navigationBarTextStyle": "black",
  15. "navigationBarTitleText": "uni-app",
  16. "navigationBarBackgroundColor": "#F8F8F8",
  17. "backgroundColor": "#F8F8F8"
  18. },
  19. "tabBar": {
  20. "color": "#666",
  21. "selectedColor": "#4CAF50",
  22. "backgroundColor": "#ffffff",
  23. "borderStyle": "black",
  24. "list": [
  25. {
  26. "pagePath": "pages/home/index",
  27. "text": "首页",
  28. "iconPath": "static/icons/home.png",
  29. "selectedIconPath": "static/icons/home-active.png"
  30. },
  31. {
  32. "pagePath": "pages/mine/index",
  33. "text": "我的",
  34. "iconPath": "static/icons/mine.png",
  35. "selectedIconPath": "static/icons/mine-active.png"
  36. }
  37. ]
  38. },
  39. "permission": {
  40. "scope.userInfo": {
  41. "desc": "你的个人信息将用于小程序登录和个性化服务"
  42. },
  43. "scope.login": {
  44. "desc": "获取你的登录凭证"
  45. }
  46. },
  47. "usingComponents": {}
  48. }