app.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "pages": [
  3. "pages/index/index",
  4. "pages/recommend/recommend",
  5. "pages/mine/mine",
  6. "pages/infoEdit/infoEdit",
  7. "pages/infoLook/infoLook",
  8. "pages/checkAttention/checkAttention",
  9. "pages/serviceExplain/serviceExplain",
  10. "pages/vipMember/vipMember"
  11. ],
  12. "window": {
  13. "backgroundTextStyle": "light",
  14. "navigationBarBackgroundColor": "#fff",
  15. "navigationBarTitleText": "子女相亲角",
  16. "navigationBarTextStyle": "black"
  17. },
  18. "sitemapLocation": "sitemap.json",
  19. "usingComponents": {},
  20. "tabBar": {
  21. "custom": true,
  22. "color": "#999999",
  23. "selectedColor": "#5674F0",
  24. "backgroundColor": "#ffffff",
  25. "borderStyle": "black",
  26. "list": [
  27. {
  28. "pagePath": "pages/index/index",
  29. "text": "资料"
  30. },
  31. {
  32. "pagePath": "pages/recommend/recommend",
  33. "text": "推荐"
  34. },
  35. {
  36. "pagePath": "pages/mine/mine",
  37. "text": "我的"
  38. }
  39. ]
  40. },
  41. "permission": {
  42. "scope.userLocation": {
  43. "desc": "你的位置信息将用于小程序位置接口的效果展示"
  44. }
  45. }
  46. }