展品维保小程序前端代码接口
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

114 lines
2.2 KiB

2 weeks ago
2 weeks ago
2 weeks ago
2 weeks ago
2 weeks ago
2 weeks ago
2 weeks ago
2 weeks ago
2 weeks ago
2 weeks ago
2 weeks ago
2 weeks ago
2 weeks ago
2 weeks ago
2 weeks ago
2 weeks ago
2 weeks ago
2 weeks ago
2 weeks ago
2 weeks ago
2 weeks ago
2 weeks ago
2 weeks ago
2 weeks ago
  1. {
  2. "pages": [
  3. {
  4. "path": "pages/index/home",
  5. "style": {
  6. "navigationStyle": "custom",
  7. "enablePullDownRefresh": true
  8. }
  9. },
  10. {
  11. "path": "pages/index/maintain",
  12. "style": {
  13. "navigationBarTitleText": "维修",
  14. "enablePullDownRefresh": true
  15. }
  16. },
  17. {
  18. "path": "pages/index/user",
  19. "style": {
  20. "navigationStyle": "custom",
  21. "enablePullDownRefresh": true
  22. }
  23. }
  24. ],
  25. "subPackages":[
  26. {
  27. "root": "subPages",
  28. "pages":[
  29. {
  30. "path": "login/login",
  31. "style": {
  32. "navigationStyle": "custom"
  33. }
  34. },
  35. {
  36. "path": "login/userInfo",
  37. "style": {
  38. "navigationBarTitleText": "补充信息"
  39. }
  40. },
  41. {
  42. "path": "home/repairSubmit",
  43. "style": {
  44. "navigationBarTitleText": "报修提交"
  45. }
  46. },
  47. {
  48. "path": "home/maintainanceSubmit",
  49. "style": {
  50. "navigationBarTitleText": "保养提交"
  51. }
  52. },
  53. {
  54. "path": "home/RAArecord",
  55. "style": {
  56. "navigationBarTitleText": "报修/保养记录"
  57. }
  58. },
  59. {
  60. "path": "repair/maintainSubmit",
  61. "style": {
  62. "navigationBarTitleText": "维修单提交",
  63. "enablePullDownRefresh": true
  64. }
  65. },
  66. {
  67. "path": "user/profile",
  68. "style": {
  69. "navigationBarTitleText": "资料修改"
  70. }
  71. }
  72. ]
  73. }
  74. ],
  75. "preloadRule": {
  76. "pages/index/home": {
  77. "network": "all",
  78. "packages": ["subPages"]
  79. }
  80. },
  81. "globalStyle": {
  82. "navigationBarTextStyle": "white",
  83. "navigationBarTitleText": "uni-app",
  84. "navigationBarBackgroundColor": "#c70019",
  85. "backgroundColor": "#c70019"
  86. },
  87. "tabBar": {
  88. "color": "#999",
  89. "selectedColor": "#c70019",
  90. "borderStyle": "white",
  91. "backgroundColor": "#ffffff",
  92. "list": [
  93. {
  94. "pagePath": "pages/index/home",
  95. "text": "主页",
  96. "iconPath": "static/主页图标.png",
  97. "selectedIconPath": "static/主页图标-点击.png"
  98. },
  99. {
  100. "pagePath": "pages/index/maintain",
  101. "text": "维修",
  102. "iconPath": "static/维修图标.png",
  103. "selectedIconPath": "static/维修图标-点击.png"
  104. },
  105. {
  106. "pagePath": "pages/index/user",
  107. "text": "我的",
  108. "iconPath": "static/我的图标.png",
  109. "selectedIconPath": "static/我的图标-点击.png"
  110. }
  111. ]
  112. }
  113. }