app.json 832 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "pages": [
  3. "pages/login/login",
  4. "pages/index/index",
  5. "pages/bind/bind",
  6. "pages/sample/sample",
  7. "pages/sample/list",
  8. "pages/sample/detail"
  9. ],
  10. "tabBar": {
  11. "list": [
  12. {
  13. "pagePath": "pages/sample/sample",
  14. "iconPath": "./resources/sample.png",
  15. "selectedIconPath": "./resources/sample_selected.png",
  16. "text": "样品单"
  17. },{
  18. "pagePath": "pages/index/index",
  19. "iconPath": "./resources/contract.png",
  20. "selectedIconPath": "./resources/contract_selected.png",
  21. "text": "采购合同"
  22. }
  23. ]
  24. },
  25. "window": {
  26. "backgroundTextStyle": "light",
  27. "navigationBarBackgroundColor": "#fff",
  28. "navigationBarTitleText": "WeChat",
  29. "navigationBarTextStyle": "black"
  30. },
  31. "style": "v2",
  32. "sitemapLocation": "sitemap.json"
  33. }