微信小店联盟带货小程序

app.json 1.3KB

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