app.json 916 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "pages":[
  3. "pages/home/home",
  4. "pages/index/index",
  5. "pages/logs/logs",
  6. "pages/query/query",
  7. "pages/workbench/workbench",
  8. "pages/my/my"
  9. ],
  10. "window":{
  11. "backgroundTextStyle":"light",
  12. "navigationBarBackgroundColor": "#fff",
  13. "navigationBarTitleText": "冷链追溯系统",
  14. "navigationBarTextStyle":"black"
  15. },
  16. "tabBar": {
  17. "list": [{
  18. "pagePath": "pages/home/home",
  19. "text": "首页"
  20. }, {
  21. "pagePath": "pages/query/query",
  22. "iconPath":"",
  23. "text": "查询"
  24. }
  25. , {
  26. "pagePath":"pages/workbench/workbench",
  27. "iconPath":"",
  28. "text": "工作台"
  29. }
  30. , {
  31. "pagePath":"pages/my/my",
  32. "iconPath":"",
  33. "text": "我的"
  34. }]
  35. },
  36. "permission": {
  37. "scope.userLocation": {
  38. "desc": "你的位置信息将用于定位效果展示"
  39. }
  40. },
  41. "style": "v2",
  42. "sitemapLocation": "sitemap.json"
  43. }