app.json 939 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "pages": [
  3. "pages/index/index",
  4. "pages/mine/mine",
  5. "pages/login/login"
  6. ],
  7. "subPackages": [
  8. {
  9. "root": "pageA",
  10. "pages": [
  11. "index",
  12. "xieyi",
  13. "yinsi"
  14. ]
  15. }
  16. ],
  17. "window": {
  18. "navigationBarTextStyle": "black",
  19. "navigationBarTitleText": "粉丝私域服务中心",
  20. "navigationBarBackgroundColor": "#F8F8F8",
  21. "backgroundColor": "#F8F8F8"
  22. },
  23. "tabBar": {
  24. "selectedColor": "#57C2F4",
  25. "color": "#7A7A7A ",
  26. "list": [
  27. {
  28. "iconPath": "/static/images/index.png",
  29. "selectedIconPath": "/static/images/index1.png",
  30. "text": "首页",
  31. "pagePath": "pages/index/index"
  32. },
  33. {
  34. "iconPath": "/static/images/mine.png",
  35. "selectedIconPath": "/static/images/mine1.png",
  36. "text": "我的",
  37. "pagePath": "pages/mine/mine"
  38. }
  39. ]
  40. },
  41. "runmode": "liberate",
  42. "usingComponents": {}
  43. }