微信小店联盟带货小程序

app.json 1.3KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {
  2. "pages": [
  3. "pages/index/index",
  4. "pages/search/index",
  5. "pages/search/result",
  6. "pages/user/index",
  7. "pages/order/list",
  8. "pages/distribution/index",
  9. "pages/distribution/rules",
  10. "pages/team/index",
  11. "pages/promotion/poster",
  12. "pages/promotion/qrcode",
  13. "pages/goods/detail",
  14. "pages/income/index",
  15. "pages/income/withdraw",
  16. "pages/invite/index",
  17. "pages/bank/list",
  18. "pages/bank/add",
  19. "pages/bank/edit",
  20. "pages/settings/index",
  21. "pages/category/index"
  22. ],
  23. "window": {
  24. "backgroundTextStyle": "light",
  25. "navigationBarBackgroundColor": "#fff",
  26. "navigationBarTitleText": "分销商城",
  27. "navigationBarTextStyle": "black"
  28. },
  29. "tabBar": {
  30. "color": "#999999",
  31. "selectedColor": "#ff4d4f",
  32. "backgroundColor": "#ffffff",
  33. "borderStyle": "black",
  34. "list": [
  35. {
  36. "pagePath": "pages/index/index",
  37. "text": "首页",
  38. "iconPath": "static/images/tabbar/home.png",
  39. "selectedIconPath": "static/images/tabbar/home_selected.png"
  40. },
  41. {
  42. "pagePath": "pages/user/index",
  43. "text": "我的",
  44. "iconPath": "static/images/tabbar/user.png",
  45. "selectedIconPath": "static/images/tabbar/user_selected.png"
  46. }
  47. ]
  48. },
  49. "style": "v2",
  50. "sitemapLocation": "sitemap.json"
  51. }