app.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. {
  2. "pages": [
  3. "pages/index/index",
  4. "pages/me/me",
  5. "pages/notice/notice",
  6. "pages/notice/notice_details",
  7. "pages/denglu/denglu"
  8. ],
  9. "requiredPrivateInfos": [
  10. "getLocation"
  11. ],
  12. "permission": {
  13. "scope.userLocation": {
  14. "desc": "小道要获取你的位置信息"
  15. }
  16. },
  17. "window": {
  18. "backgroundTextStyle": "light",
  19. "navigationBarBackgroundColor": "#fff",
  20. "navigationBarTitleText": "Weixin",
  21. "navigationBarTextStyle": "black"
  22. },
  23. "tabBar": {
  24. "index": "-1",
  25. "color": "#737373",
  26. "selectedColor": "#f94b0e",
  27. "borderStyle": "black",
  28. "backgroundColor": "#f9f9f9",
  29. "list": [
  30. {
  31. "text": "首页",
  32. "pagePath": "pages/index/index",
  33. "iconPath": "pages/images/index2.png",
  34. "selectedIconPath": "pages/images/index1.png"
  35. },
  36. {
  37. "text": "我的",
  38. "pagePath": "pages/me/me",
  39. "iconPath": "pages/images/me2.png",
  40. "selectedIconPath": "pages/images/me1.png"
  41. }
  42. ]
  43. },
  44. "style": "v2",
  45. "sitemapLocation": "sitemap.json",
  46. "lazyCodeLoading": "requiredComponents"
  47. }