app.json 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. {
  2. "pages": [
  3. "pages/index/index",
  4. "pages/test/test",
  5. "pages/login/login",
  6. "pages/add_member/add_member",
  7. "pages/lineage/lineage",
  8. "pages/member_detail/member_detail",
  9. "pages/family_circle/family_circle",
  10. "pages/my_entries/my_entries"
  11. ],
  12. "window": {
  13. "backgroundTextStyle": "light",
  14. "navigationBarBackgroundColor": "#ffffff",
  15. "navigationBarTitleText": "留家族",
  16. "navigationBarTextStyle": "black",
  17. "backgroundColor": "#f5f5f5"
  18. },
  19. "tabBar": {
  20. "custom": true,
  21. "color": "#999999",
  22. "selectedColor": "#8B4513",
  23. "borderStyle": "black",
  24. "backgroundColor": "#ffffff",
  25. "list": [
  26. {
  27. "pagePath": "pages/index/index",
  28. "text": "首页",
  29. "iconPath": "images/home.png",
  30. "selectedIconPath": "images/home-active.png"
  31. },
  32. {
  33. "pagePath": "pages/lineage/lineage",
  34. "text": "世系查询",
  35. "iconPath": "images/tree.png",
  36. "selectedIconPath": "images/tree-active.png"
  37. },
  38. {
  39. "pagePath": "pages/my_entries/my_entries",
  40. "text": "我的录入",
  41. "iconPath": "images/tree.png",
  42. "selectedIconPath": "images/tree-active.png"
  43. },
  44. {
  45. "pagePath": "pages/family_circle/family_circle",
  46. "text": "家族圈",
  47. "iconPath": "images/circle.png",
  48. "selectedIconPath": "images/circle-active.png"
  49. }
  50. ]
  51. },
  52. "permission": {
  53. "scope.userLocation": {
  54. "desc": "用于获取用户位置"
  55. }
  56. },
  57. "sitemapLocation": "sitemap.json"
  58. }