展品维保小程序前端代码接口
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.

126 lines
2.4 KiB

2 months ago
2 months ago
2 months ago
2 months ago
2 months ago
2 months ago
2 months ago
2 months ago
2 months ago
2 months ago
2 months ago
2 months ago
1 month ago
2 months ago
2 months ago
2 months ago
2 months ago
2 months ago
2 months ago
2 months ago
2 months ago
2 months ago
2 months ago
2 months ago
2 months ago
2 months 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": "home/repairChange",
  61. "style": {
  62. "navigationBarTitleText": "报修修改"
  63. }
  64. },
  65. {
  66. "path": "home/maintainChange",
  67. "style": {
  68. "navigationBarTitleText": "保养修改"
  69. }
  70. },
  71. {
  72. "path": "repair/maintainSubmit",
  73. "style": {
  74. "navigationBarTitleText": "维修单提交",
  75. "enablePullDownRefresh": true
  76. }
  77. },
  78. {
  79. "path": "user/profile",
  80. "style": {
  81. "navigationBarTitleText": "资料修改"
  82. }
  83. }
  84. ]
  85. }
  86. ],
  87. "preloadRule": {
  88. "pages/index/home": {
  89. "network": "all",
  90. "packages": ["subPages"]
  91. }
  92. },
  93. "globalStyle": {
  94. "navigationBarTextStyle": "white",
  95. "navigationBarTitleText": "uni-app",
  96. "navigationBarBackgroundColor": "#c70019",
  97. "backgroundColor": "#c70019"
  98. },
  99. "tabBar": {
  100. "color": "#999",
  101. "selectedColor": "#c70019",
  102. "borderStyle": "white",
  103. "backgroundColor": "#ffffff",
  104. "list": [
  105. {
  106. "pagePath": "pages/index/home",
  107. "text": "主页",
  108. "iconPath": "static/主页图标.png",
  109. "selectedIconPath": "static/主页图标-点击.png"
  110. },
  111. {
  112. "pagePath": "pages/index/maintain",
  113. "text": "维修",
  114. "iconPath": "static/维修图标.png",
  115. "selectedIconPath": "static/维修图标-点击.png"
  116. },
  117. {
  118. "pagePath": "pages/index/user",
  119. "text": "我的",
  120. "iconPath": "static/我的图标.png",
  121. "selectedIconPath": "static/我的图标-点击.png"
  122. }
  123. ]
  124. }
  125. }