app.json 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "pages": [
  3. "pages/tabber/home/index",
  4. "pages/tabber/order/index",
  5. "pages/tabber/set/index",
  6. "pages/tabber/builds/index"
  7. ],
  8. "window": {
  9. "backgroundTextStyle": "light",
  10. "navigationBarBackgroundColor": "#fff",
  11. "navigationBarTitleText": "Weixin",
  12. "navigationBarTextStyle": "black"
  13. },
  14. "tabBar": {
  15. "color": "#666666",
  16. "selectedColor": "#4699FF",
  17. "backgroundColor": "#fff",
  18. "list": [
  19. {
  20. "pagePath": "pages/tabber/home/index",
  21. "text": "首页",
  22. "iconPath": "image/tabber/home.png",
  23. "selectedIconPath": "image/tabber/home-active.png"
  24. },
  25. {
  26. "pagePath": "pages/tabber/order/index",
  27. "text": "分拣单",
  28. "iconPath": "image/tabber/order.png",
  29. "selectedIconPath": "image/tabber/order-active.png"
  30. },
  31. {
  32. "pagePath": "pages/tabber/builds/index",
  33. "text": "打包",
  34. "iconPath": "image/tabber/build.png",
  35. "selectedIconPath": "image/tabber/build-active.png"
  36. },
  37. {
  38. "pagePath": "pages/tabber/set/index",
  39. "text": "设置",
  40. "iconPath": "image/tabber/set.png",
  41. "selectedIconPath": "image/tabber/set-active.png"
  42. }
  43. ]
  44. },
  45. "sitemapLocation": "sitemap.json"
  46. }