随手精灵小程序,单独为了获取WIFI信息加强围栏告警功能能力
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

app.json 1.2KB

2 år sedan
123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {
  2. "pages": [
  3. "pages/home/home",
  4. "pages/more/more"
  5. ],
  6. "permission": {
  7. "scope.userLocation": {
  8. "desc": "你的位置信息将用于小程序位置接口的效果展示"
  9. }
  10. },
  11. "window": {
  12. "backgroundTextStyle": "dark",
  13. "navigationBarBackgroundColor": "#1772cb",
  14. "navigationBarTitleText": "随手精灵",
  15. "navigationBarTextStyle": "white"
  16. },
  17. "tabBar": {
  18. "color": "#7A7E83",
  19. "selectedColor": "#13227a",
  20. "backgroundColor": "#ffffff",
  21. "list": [
  22. {
  23. "pagePath": "pages/home/home",
  24. "iconPath": "images/icon/icon_home.png",
  25. "selectedIconPath": "images/icon/icon_home_active.png",
  26. "text": "首页"
  27. },
  28. {
  29. "pagePath": "pages/more/more",
  30. "iconPath": "images/icon/icon_more.png",
  31. "selectedIconPath": "images/icon/icon_more_active.png",
  32. "text": "更多"
  33. }
  34. ]
  35. },
  36. "networkTimeout": {
  37. "request": 10000,
  38. "downloadFile": 10000
  39. },
  40. "debug": true,
  41. "sitemapLocation": "sitemap.json"
  42. }