app.json 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. {
  2. "pages": [
  3. "pages/home/index",
  4. "pages/user/index",
  5. "pages/list/index",
  6. "pages/home/live",
  7. "pages/games/index",
  8. "pages/home/living",
  9. "pages/login/login"
  10. ],
  11. "window": {
  12. "navigationBarTextStyle": "black",
  13. "navigationBarTitleText": "【S直播】",
  14. "navigationBarBackgroundColor": "#f5f5f5",
  15. "backgroundColor": "#f7f8fa"
  16. },
  17. "tabBar": {
  18. "color": "#AEAEAE",
  19. "selectedColor": "#000000",
  20. "borderStyle": "black",
  21. "backgroundColor": "#fff",
  22. "list": [
  23. {
  24. "pagePath": "pages/list/index",
  25. "iconPath": "/static/tabBar/query.png",
  26. "selectedIconPath": "/static/tabBar/query_active.png",
  27. "text": "列表"
  28. },
  29. {
  30. "pagePath": "pages/games/index",
  31. "iconPath": "/static/tabBar/pulverize.png",
  32. "selectedIconPath": "/static/tabBar/pulverize_active.png",
  33. "text": "合同粉碎"
  34. },
  35. {
  36. "pagePath": "pages/user/index",
  37. "iconPath": "/static/tabBar/user.png",
  38. "selectedIconPath": "/static/tabBar/user_active.png",
  39. "text": "我的"
  40. }
  41. ]
  42. },
  43. "secureNetwork": {
  44. "enable": true
  45. },
  46. "permission": {
  47. "scope.userLocation": {
  48. "desc": "需要获取您当前的位置,展示附近的服务"
  49. }
  50. },
  51. "__usePrivacyCheck__": true,
  52. "requiredPrivateInfos": [
  53. "getLocation",
  54. "chooseLocation"
  55. ],
  56. "usingComponents": {}
  57. }