app.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. {
  2. "pages": [
  3. "pages/worktable/index",
  4. "pages/management/index"
  5. ],
  6. "subPackages": [
  7. {
  8. "root": "pagesA",
  9. "pages": [
  10. "member/index",
  11. "strikeBalance/index",
  12. "commodity/index",
  13. "goodsInfo/index",
  14. "clerk/index",
  15. "shop/index",
  16. "destroy/index"
  17. ]
  18. }
  19. ],
  20. "window": {
  21. "navigationBarTextStyle": "black",
  22. "navigationBarTitleText": "uni-app",
  23. "navigationBarBackgroundColor": "#F8F8F8",
  24. "backgroundColor": "#F8F8F8"
  25. },
  26. "tabBar": {
  27. "color": "#979594",
  28. "selectedColor": "#F57737",
  29. "borderStyle": "black",
  30. "backgroundColor": "#ffffff",
  31. "height": "120rpx",
  32. "fontSize": "24rpx",
  33. "iconWidth": "20px",
  34. "spacing": "14rpx",
  35. "list": [
  36. {
  37. "pagePath": "pages/worktable/index",
  38. "iconPath": "static/images/tab_home_nor@2x.png",
  39. "selectedIconPath": "static/images/tab_home_sel@2x.png",
  40. "text": "工作台"
  41. },
  42. {
  43. "pagePath": "pages/management/index",
  44. "iconPath": "static/images/tab_gl_nor@2x.png",
  45. "selectedIconPath": "static/images/tab_gl_sel@2x.png",
  46. "text": "管理"
  47. }
  48. ]
  49. },
  50. "preloadRule": {
  51. "pages/worktable/index": {
  52. "network": "all",
  53. "packages": [
  54. "pagesA"
  55. ]
  56. }
  57. },
  58. "usingComponents": {}
  59. }