app.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "pages": [
  3. "pages/main-order/main-order",
  4. "pages/logs/logs",
  5. "pages/main-message/main-message",
  6. "pages/main-my/main-my",
  7. "pages/my-manage-goods/my-manage-goods",
  8. "pages/my-manage-classify/my-manage-classify",
  9. "pages/my-manage-activity/my-manage-activity"
  10. ],
  11. "window": {
  12. "navigationBarBackgroundColor": "#ffffff",
  13. "navigationBarTextStyle": "black",
  14. "navigationBarTitleText": "商家端",
  15. "backgroundColor": "#eeeeee",
  16. "backgroundTextStyle": "light"
  17. },
  18. "tabBar": {
  19. "color": "#797979",
  20. "selectedColor": "#FF9B27",
  21. "borderStyle": "black",
  22. "list": [
  23. {
  24. "pagePath": "pages/main-order/main-order",
  25. "text": "首页",
  26. "iconPath": "./images/订单.png",
  27. "selectedIconPath": "./images/订单 -active.png"
  28. },
  29. {
  30. "pagePath": "pages/main-message/main-message",
  31. "text": "消息",
  32. "iconPath": "./images/消息.png",
  33. "selectedIconPath": "./images/消息-active.png"
  34. },
  35. {
  36. "pagePath": "pages/main-my/main-my",
  37. "text": "我的",
  38. "iconPath": "./images/我的.png",
  39. "selectedIconPath": "./images/我的-active.png"
  40. }
  41. ]
  42. },
  43. "sitemapLocation": "sitemap.json"
  44. }