apply-clients 7.1.35 → 7.1.36

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (431) hide show
  1. package/android.html +4 -0
  2. package/build/css-loaders.js +34 -0
  3. package/build/dev-client.js +8 -0
  4. package/build/dev-server.js +151 -0
  5. package/build/example-server.js +80 -0
  6. package/build/release.sh +28 -0
  7. package/build/utils.js +80 -0
  8. package/build/webpack.base.conf.js +123 -0
  9. package/build/webpack.baseandroid.conf.js +123 -0
  10. package/build/webpack.dev.conf.js +43 -0
  11. package/build/webpack.devandroid.conf.js +34 -0
  12. package/build/webpack.example.conf.js +49 -0
  13. package/build/webpack.prod.conf.js +60 -0
  14. package/build/webpack.prodandroid.conf.js +60 -0
  15. package/dist-android.7z +0 -0
  16. package/dist.7z +0 -0
  17. package/index.html +4 -1
  18. package/package.json +11 -7
  19. package/src/AndroidApp.vue +21 -14
  20. package/src/App.vue +18 -20
  21. package/{dist-android/static → src/android-bootstrap/fonts}/glyphicons-halflings-regular.eot +0 -0
  22. package/{dist-android/static → src/android-bootstrap/fonts}/glyphicons-halflings-regular.svg +0 -0
  23. package/{dist-android/static → src/android-bootstrap/fonts}/glyphicons-halflings-regular.ttf +0 -0
  24. package/{dist-android/static → src/android-bootstrap/fonts}/glyphicons-halflings-regular.woff +0 -0
  25. package/{dist-android/static → src/android-bootstrap/fonts}/glyphicons-halflings-regular.woff2 +0 -0
  26. package/src/android-bootstrap/less/.csscomb.json +304 -0
  27. package/src/android-bootstrap/less/.csslintrc +19 -0
  28. package/src/android-bootstrap/less/alerts.less +73 -0
  29. package/src/android-bootstrap/less/badges.less +66 -0
  30. package/src/android-bootstrap/less/bootstrap.less +56 -0
  31. package/src/android-bootstrap/less/breadcrumbs.less +26 -0
  32. package/src/android-bootstrap/less/button-groups.less +247 -0
  33. package/src/android-bootstrap/less/buttons.less +173 -0
  34. package/src/android-bootstrap/less/carousel.less +269 -0
  35. package/src/android-bootstrap/less/close.less +34 -0
  36. package/src/android-bootstrap/less/code.less +69 -0
  37. package/src/android-bootstrap/less/component-animations.less +33 -0
  38. package/src/android-bootstrap/less/dropdowns.less +216 -0
  39. package/src/android-bootstrap/less/forms.less +626 -0
  40. package/src/android-bootstrap/less/glyphicons.less +305 -0
  41. package/src/android-bootstrap/less/grid.less +84 -0
  42. package/src/android-bootstrap/less/input-groups.less +167 -0
  43. package/src/android-bootstrap/less/jumbotron.less +52 -0
  44. package/src/android-bootstrap/less/labels.less +64 -0
  45. package/src/android-bootstrap/less/list-group.less +141 -0
  46. package/src/android-bootstrap/less/media.less +66 -0
  47. package/src/android-bootstrap/less/mixins/alerts.less +14 -0
  48. package/src/android-bootstrap/less/mixins/background-variant.less +9 -0
  49. package/src/android-bootstrap/less/mixins/border-radius.less +18 -0
  50. package/src/android-bootstrap/less/mixins/buttons.less +69 -0
  51. package/src/android-bootstrap/less/mixins/center-block.less +7 -0
  52. package/src/android-bootstrap/less/mixins/clearfix.less +22 -0
  53. package/src/android-bootstrap/less/mixins/forms.less +90 -0
  54. package/src/android-bootstrap/less/mixins/gradients.less +59 -0
  55. package/src/android-bootstrap/less/mixins/grid-framework.less +92 -0
  56. package/src/android-bootstrap/less/mixins/grid.less +122 -0
  57. package/src/android-bootstrap/less/mixins/hide-text.less +21 -0
  58. package/src/android-bootstrap/less/mixins/image.less +33 -0
  59. package/src/android-bootstrap/less/mixins/labels.less +12 -0
  60. package/src/android-bootstrap/less/mixins/list-group.less +30 -0
  61. package/src/android-bootstrap/less/mixins/nav-divider.less +10 -0
  62. package/src/android-bootstrap/less/mixins/nav-vertical-align.less +9 -0
  63. package/src/android-bootstrap/less/mixins/opacity.less +8 -0
  64. package/src/android-bootstrap/less/mixins/pagination.less +24 -0
  65. package/src/android-bootstrap/less/mixins/panels.less +24 -0
  66. package/src/android-bootstrap/less/mixins/progress-bar.less +10 -0
  67. package/src/android-bootstrap/less/mixins/reset-filter.less +8 -0
  68. package/src/android-bootstrap/less/mixins/reset-text.less +18 -0
  69. package/src/android-bootstrap/less/mixins/resize.less +6 -0
  70. package/src/android-bootstrap/less/mixins/responsive-visibility.less +15 -0
  71. package/src/android-bootstrap/less/mixins/size.less +10 -0
  72. package/src/android-bootstrap/less/mixins/tab-focus.less +9 -0
  73. package/src/android-bootstrap/less/mixins/table-row.less +44 -0
  74. package/src/android-bootstrap/less/mixins/text-emphasis.less +9 -0
  75. package/src/android-bootstrap/less/mixins/text-overflow.less +8 -0
  76. package/src/android-bootstrap/less/mixins/vendor-prefixes.less +227 -0
  77. package/src/android-bootstrap/less/mixins.less +40 -0
  78. package/src/android-bootstrap/less/modals.less +151 -0
  79. package/src/android-bootstrap/less/navbar.less +660 -0
  80. package/src/android-bootstrap/less/navs.less +302 -0
  81. package/src/android-bootstrap/less/normalize.less +424 -0
  82. package/src/android-bootstrap/less/pager.less +76 -0
  83. package/src/android-bootstrap/less/pagination.less +89 -0
  84. package/src/android-bootstrap/less/panels.less +274 -0
  85. package/src/android-bootstrap/less/popovers.less +131 -0
  86. package/src/android-bootstrap/less/print.less +101 -0
  87. package/src/android-bootstrap/less/progress-bars.less +87 -0
  88. package/src/android-bootstrap/less/responsive-embed.less +35 -0
  89. package/src/android-bootstrap/less/responsive-utilities.less +194 -0
  90. package/src/android-bootstrap/less/scaffolding.less +161 -0
  91. package/src/android-bootstrap/less/tables.less +262 -0
  92. package/src/android-bootstrap/less/theme.less +291 -0
  93. package/src/android-bootstrap/less/thumbnails.less +36 -0
  94. package/src/android-bootstrap/less/tooltip.less +102 -0
  95. package/src/android-bootstrap/less/type.less +303 -0
  96. package/src/android-bootstrap/less/utilities.less +55 -0
  97. package/src/android-bootstrap/less/variables.less +896 -0
  98. package/src/android-bootstrap/less/wells.less +29 -0
  99. package/src/android.js +7 -4
  100. package/src/apply.js +85 -69
  101. package/src/applyAndroid.js +52 -39
  102. package/src/assets//345/210/240/351/231/244.png +0 -0
  103. package/src/components/android/AppOnetomany.vue +301 -0
  104. package/src/components/android/AppServiceView.vue +568 -0
  105. package/src/components/android/AppSign.vue +169 -0
  106. package/src/components/android/AppTakePic.vue +142 -0
  107. package/src/components/android/AppUpload.vue +232 -0
  108. package/src/components/android/Ignition/VentilationIgnition.vue +328 -0
  109. package/src/components/android/Ignition/VentilationIgnitionHandle.vue +330 -0
  110. package/src/components/android/Process/AppExplorationUser.vue +352 -0
  111. package/src/components/android/Process/AppServiceControl.vue +1050 -0
  112. package/src/components/android/Process/Processes/AppDevicesManagement.vue +336 -0
  113. package/src/components/android/Process/Processes/AppInstallationDetails.vue +770 -0
  114. package/src/components/android/Process/Processes/SurveyUserSign.vue +56 -0
  115. package/src/components/android/Sign/AppSignTask.vue +182 -0
  116. package/src/components/android/Sign/SignProcess.vue +102 -0
  117. package/src/components/android/Supervisory/AppProcessSupervisory.vue +183 -0
  118. package/src/components/android/Supervisory/AppSupervisoryCart.vue +121 -0
  119. package/src/components/android/Task/Build/BuildTsak.vue +114 -0
  120. package/src/components/android/Task/Survey/SurveyTsak.vue +112 -0
  121. package/src/components/android/TaskGraph.vue +130 -0
  122. package/src/components/android/newPackage/customerServiceManager.vue +218 -0
  123. package/src/components/android/newPackage/designDrawings.vue +94 -0
  124. package/src/components/android/newPackage/detailedData.vue +24 -0
  125. package/src/components/android/newPackage/projectPrice.vue +218 -0
  126. package/src/components/image/dwg.png +0 -0
  127. package/src/components/image/dxf.png +0 -0
  128. package/src/components/product/ApplyCharge/ApplyChargeList.vue +141 -62
  129. package/src/components/product/ApplyCharge/ApplyChargeSearch.vue +2 -2
  130. package/src/components/product/Function/InstallFunction.vue +53 -69
  131. package/src/components/product/Function/InstallInfoSelect.vue +118 -105
  132. package/src/components/product/Function/Service/FunctionServiceControl.vue +323 -148
  133. package/src/components/product/Ignition/IgnitionDispatch.vue +277 -0
  134. package/src/components/product/Ignition/IgnitionRecord.vue +216 -0
  135. package/src/components/product/Onetomany.vue +377 -0
  136. package/src/components/product/Print/BuildOrder/buildOrderList.vue +229 -0
  137. package/src/components/product/Print/BuildOrder/printBuildOrder.vue +265 -0
  138. package/src/components/product/Process/ExplorationSelect.vue +374 -347
  139. package/src/components/product/Process/ExplorationUser.vue +151 -138
  140. package/src/components/product/Process/Processes/ApplyMapCom.vue +83 -0
  141. package/src/components/product/Process/Processes/ExhibitionPicture.vue +27 -0
  142. package/src/components/product/Process/Processes/InstallationDetails.vue +823 -484
  143. package/src/components/product/Process/Processes/Print/img/10101.png +0 -0
  144. package/src/components/product/Process/Processes/Print/img/1010109.png +0 -0
  145. package/src/components/product/Process/Processes/Print/img/1010110.png +0 -0
  146. package/src/components/product/Process/Processes/Print/img/1010111.png +0 -0
  147. package/src/components/product/Process/Processes/Print/img/1010112.png +0 -0
  148. package/src/components/product/Process/Processes/Print/printCharge.vue +142 -0
  149. package/src/components/product/Process/Processes/addressAndUserinfoManagement.vue +59 -113
  150. package/src/components/product/Process/Processes/chargeManagement.vue +546 -562
  151. package/src/components/product/Process/Processes/devicesManagement.vue +360 -0
  152. package/src/components/product/Process/Processes/selectApply.vue +250 -0
  153. package/src/components/product/Process/Processes/selectUserinfo.vue +182 -0
  154. package/src/components/product/Process/Processes/supplementalAgreement.vue +182 -181
  155. package/src/components/product/Process/Service/ServiceControl.vue +1417 -856
  156. package/src/components/product/Process/Service/ShowBackReason.vue +33 -0
  157. package/src/components/product/ServiceView.vue +557 -680
  158. package/src/components/product/Stop/StopApply.vue +105 -0
  159. package/src/components/product/Stop/StopApplyList.vue +224 -0
  160. package/src/components/product/Supervisory/NewSupervisoryhCart.vue +167 -0
  161. package/src/components/product/Supervisory/Service/SupervisoryServiceControl.vue +231 -199
  162. package/src/components/product/Supervisory/SupervisoryControl.vue +22 -33
  163. package/src/components/product/Supervisory/SupervisoryList.vue +258 -208
  164. package/src/components/product/Supervisory/SupervisoryhCart.vue +52 -36
  165. package/src/components/product/VueUtils/ApplyUpload.vue +279 -261
  166. package/src/components/product/VueUtils/HighMeter.vue +208 -0
  167. package/src/expandcssAndroid.less +1034 -0
  168. package/src/main.js +27 -23
  169. package/src/public/history/HistoryApplyList.vue +108 -0
  170. package/src/public/history/PublicHistoryApply.vue +39 -0
  171. package/src/public/history/PublicSupervisoryhCart.vue +72 -0
  172. package/src/public/order/PublicOrderApply.vue +387 -0
  173. package/dist-android/index.html +0 -3
  174. package/dist-android/static/.gitkeep +0 -0
  175. package/dist-android/static/0.js +0 -2
  176. package/dist-android/static/0.js.map +0 -1
  177. package/dist-android/static/1.js +0 -2
  178. package/dist-android/static/1.js.map +0 -1
  179. package/dist-android/static/10.js +0 -2
  180. package/dist-android/static/10.js.map +0 -1
  181. package/dist-android/static/100.js +0 -2
  182. package/dist-android/static/100.js.map +0 -1
  183. package/dist-android/static/11.js +0 -2
  184. package/dist-android/static/11.js.map +0 -1
  185. package/dist-android/static/12.js +0 -2
  186. package/dist-android/static/12.js.map +0 -1
  187. package/dist-android/static/13.js +0 -2
  188. package/dist-android/static/13.js.map +0 -1
  189. package/dist-android/static/14.js +0 -2
  190. package/dist-android/static/14.js.map +0 -1
  191. package/dist-android/static/15.js +0 -2
  192. package/dist-android/static/15.js.map +0 -1
  193. package/dist-android/static/16.js +0 -2
  194. package/dist-android/static/16.js.map +0 -1
  195. package/dist-android/static/17.js +0 -2
  196. package/dist-android/static/17.js.map +0 -1
  197. package/dist-android/static/18.js +0 -2
  198. package/dist-android/static/18.js.map +0 -1
  199. package/dist-android/static/19.js +0 -2
  200. package/dist-android/static/19.js.map +0 -1
  201. package/dist-android/static/2.js +0 -2
  202. package/dist-android/static/2.js.map +0 -1
  203. package/dist-android/static/20.js +0 -2
  204. package/dist-android/static/20.js.map +0 -1
  205. package/dist-android/static/21.js +0 -2
  206. package/dist-android/static/21.js.map +0 -1
  207. package/dist-android/static/22.js +0 -2
  208. package/dist-android/static/22.js.map +0 -1
  209. package/dist-android/static/23.js +0 -2
  210. package/dist-android/static/23.js.map +0 -1
  211. package/dist-android/static/24.js +0 -2
  212. package/dist-android/static/24.js.map +0 -1
  213. package/dist-android/static/25.js +0 -2
  214. package/dist-android/static/25.js.map +0 -1
  215. package/dist-android/static/26.js +0 -2
  216. package/dist-android/static/26.js.map +0 -1
  217. package/dist-android/static/27.js +0 -2
  218. package/dist-android/static/27.js.map +0 -1
  219. package/dist-android/static/28.js +0 -2
  220. package/dist-android/static/28.js.map +0 -1
  221. package/dist-android/static/29.js +0 -2
  222. package/dist-android/static/29.js.map +0 -1
  223. package/dist-android/static/3.js +0 -2
  224. package/dist-android/static/3.js.map +0 -1
  225. package/dist-android/static/30.js +0 -2
  226. package/dist-android/static/30.js.map +0 -1
  227. package/dist-android/static/31.js +0 -2
  228. package/dist-android/static/31.js.map +0 -1
  229. package/dist-android/static/32.js +0 -2
  230. package/dist-android/static/32.js.map +0 -1
  231. package/dist-android/static/33.js +0 -2
  232. package/dist-android/static/33.js.map +0 -1
  233. package/dist-android/static/34.js +0 -2
  234. package/dist-android/static/34.js.map +0 -1
  235. package/dist-android/static/35.js +0 -2
  236. package/dist-android/static/35.js.map +0 -1
  237. package/dist-android/static/36.js +0 -2
  238. package/dist-android/static/36.js.map +0 -1
  239. package/dist-android/static/37.js +0 -2
  240. package/dist-android/static/37.js.map +0 -1
  241. package/dist-android/static/38.js +0 -2
  242. package/dist-android/static/38.js.map +0 -1
  243. package/dist-android/static/39.js +0 -2
  244. package/dist-android/static/39.js.map +0 -1
  245. package/dist-android/static/4.js +0 -2
  246. package/dist-android/static/4.js.map +0 -1
  247. package/dist-android/static/40.js +0 -2
  248. package/dist-android/static/40.js.map +0 -1
  249. package/dist-android/static/41.js +0 -2
  250. package/dist-android/static/41.js.map +0 -1
  251. package/dist-android/static/42.js +0 -2
  252. package/dist-android/static/42.js.map +0 -1
  253. package/dist-android/static/43.js +0 -2
  254. package/dist-android/static/43.js.map +0 -1
  255. package/dist-android/static/44.js +0 -2
  256. package/dist-android/static/44.js.map +0 -1
  257. package/dist-android/static/45.js +0 -2
  258. package/dist-android/static/45.js.map +0 -1
  259. package/dist-android/static/46.js +0 -2
  260. package/dist-android/static/46.js.map +0 -1
  261. package/dist-android/static/47.js +0 -2
  262. package/dist-android/static/47.js.map +0 -1
  263. package/dist-android/static/48.js +0 -2
  264. package/dist-android/static/48.js.map +0 -1
  265. package/dist-android/static/49.js +0 -2
  266. package/dist-android/static/49.js.map +0 -1
  267. package/dist-android/static/5.js +0 -2
  268. package/dist-android/static/5.js.map +0 -1
  269. package/dist-android/static/50.js +0 -2
  270. package/dist-android/static/50.js.map +0 -1
  271. package/dist-android/static/51.js +0 -2
  272. package/dist-android/static/51.js.map +0 -1
  273. package/dist-android/static/52.js +0 -2
  274. package/dist-android/static/52.js.map +0 -1
  275. package/dist-android/static/53.js +0 -2
  276. package/dist-android/static/53.js.map +0 -1
  277. package/dist-android/static/54.js +0 -2
  278. package/dist-android/static/54.js.map +0 -1
  279. package/dist-android/static/55.js +0 -2
  280. package/dist-android/static/55.js.map +0 -1
  281. package/dist-android/static/56.js +0 -2
  282. package/dist-android/static/56.js.map +0 -1
  283. package/dist-android/static/57.js +0 -2
  284. package/dist-android/static/57.js.map +0 -1
  285. package/dist-android/static/58.js +0 -2
  286. package/dist-android/static/58.js.map +0 -1
  287. package/dist-android/static/59.js +0 -2
  288. package/dist-android/static/59.js.map +0 -1
  289. package/dist-android/static/6.js +0 -2
  290. package/dist-android/static/6.js.map +0 -1
  291. package/dist-android/static/60.js +0 -2
  292. package/dist-android/static/60.js.map +0 -1
  293. package/dist-android/static/61.js +0 -2
  294. package/dist-android/static/61.js.map +0 -1
  295. package/dist-android/static/62.js +0 -2
  296. package/dist-android/static/62.js.map +0 -1
  297. package/dist-android/static/63.js +0 -2
  298. package/dist-android/static/63.js.map +0 -1
  299. package/dist-android/static/64.js +0 -2
  300. package/dist-android/static/64.js.map +0 -1
  301. package/dist-android/static/65.js +0 -2
  302. package/dist-android/static/65.js.map +0 -1
  303. package/dist-android/static/66.js +0 -2
  304. package/dist-android/static/66.js.map +0 -1
  305. package/dist-android/static/67.js +0 -2
  306. package/dist-android/static/67.js.map +0 -1
  307. package/dist-android/static/68.js +0 -2
  308. package/dist-android/static/68.js.map +0 -1
  309. package/dist-android/static/69.js +0 -2
  310. package/dist-android/static/69.js.map +0 -1
  311. package/dist-android/static/7.js +0 -6
  312. package/dist-android/static/7.js.map +0 -1
  313. package/dist-android/static/70.js +0 -2
  314. package/dist-android/static/70.js.map +0 -1
  315. package/dist-android/static/71.js +0 -2
  316. package/dist-android/static/71.js.map +0 -1
  317. package/dist-android/static/72.js +0 -2
  318. package/dist-android/static/72.js.map +0 -1
  319. package/dist-android/static/73.js +0 -2
  320. package/dist-android/static/73.js.map +0 -1
  321. package/dist-android/static/74.js +0 -2
  322. package/dist-android/static/74.js.map +0 -1
  323. package/dist-android/static/75.js +0 -2
  324. package/dist-android/static/75.js.map +0 -1
  325. package/dist-android/static/76.js +0 -2
  326. package/dist-android/static/76.js.map +0 -1
  327. package/dist-android/static/77.js +0 -2
  328. package/dist-android/static/77.js.map +0 -1
  329. package/dist-android/static/78.js +0 -2
  330. package/dist-android/static/78.js.map +0 -1
  331. package/dist-android/static/79.js +0 -2
  332. package/dist-android/static/79.js.map +0 -1
  333. package/dist-android/static/8.js +0 -2
  334. package/dist-android/static/8.js.map +0 -1
  335. package/dist-android/static/80.js +0 -2
  336. package/dist-android/static/80.js.map +0 -1
  337. package/dist-android/static/81.js +0 -2
  338. package/dist-android/static/81.js.map +0 -1
  339. package/dist-android/static/82.js +0 -2
  340. package/dist-android/static/82.js.map +0 -1
  341. package/dist-android/static/83.js +0 -2
  342. package/dist-android/static/83.js.map +0 -1
  343. package/dist-android/static/84.js +0 -2
  344. package/dist-android/static/84.js.map +0 -1
  345. package/dist-android/static/85.js +0 -2
  346. package/dist-android/static/85.js.map +0 -1
  347. package/dist-android/static/86.js +0 -2
  348. package/dist-android/static/86.js.map +0 -1
  349. package/dist-android/static/87.js +0 -2
  350. package/dist-android/static/87.js.map +0 -1
  351. package/dist-android/static/88.js +0 -2
  352. package/dist-android/static/88.js.map +0 -1
  353. package/dist-android/static/89.js +0 -2
  354. package/dist-android/static/89.js.map +0 -1
  355. package/dist-android/static/9.js +0 -3
  356. package/dist-android/static/9.js.map +0 -1
  357. package/dist-android/static/90.js +0 -2
  358. package/dist-android/static/90.js.map +0 -1
  359. package/dist-android/static/91.js +0 -2
  360. package/dist-android/static/91.js.map +0 -1
  361. package/dist-android/static/92.js +0 -2
  362. package/dist-android/static/92.js.map +0 -1
  363. package/dist-android/static/93.js +0 -2
  364. package/dist-android/static/93.js.map +0 -1
  365. package/dist-android/static/94.js +0 -2
  366. package/dist-android/static/94.js.map +0 -1
  367. package/dist-android/static/95.js +0 -2
  368. package/dist-android/static/95.js.map +0 -1
  369. package/dist-android/static/96.js +0 -2
  370. package/dist-android/static/96.js.map +0 -1
  371. package/dist-android/static/97.js +0 -2
  372. package/dist-android/static/97.js.map +0 -1
  373. package/dist-android/static/98.js +0 -2
  374. package/dist-android/static/98.js.map +0 -1
  375. package/dist-android/static/99.js +0 -2
  376. package/dist-android/static/99.js.map +0 -1
  377. package/dist-android/static/app.css +0 -2
  378. package/dist-android/static/app.css.map +0 -1
  379. package/dist-android/static/app.js +0 -80
  380. package/dist-android/static/app.js.map +0 -1
  381. package/dist-android/static/batchleft.png +0 -0
  382. package/dist-android/static/batchright.png +0 -0
  383. package/dist-android/static/bluemainbg.jpg +0 -0
  384. package/dist-android/static/config.json +0 -7
  385. package/dist-android/static/denglu.png +0 -0
  386. package/dist-android/static/huangtengbiaozhi.png +0 -0
  387. package/dist-android/static/jingyin.jpg +0 -0
  388. package/dist-android/static/login_bg.jpg +0 -0
  389. package/dist-android/static/login_title.png +0 -0
  390. package/dist-android/static/login_title1.png +0 -0
  391. package/dist-android/static/loginbg.jpg +0 -0
  392. package/dist-android/static/loginlogo.png +0 -0
  393. package/dist-android/static/main_logo.png +0 -0
  394. package/dist-android/static/mainbg.jpg +0 -0
  395. package/dist-android/static/menulogo.png +0 -0
  396. package/dist-android/static/newmainbg.jpg +0 -0
  397. package/dist-android/static/psicon.png +0 -0
  398. package/dist-android/static/singleleft.png +0 -0
  399. package/dist-android/static/singleright.png +0 -0
  400. package/dist-android/static/treeopen.png +0 -0
  401. package/dist-android/static/treeout.png +0 -0
  402. package/dist-android/static/treeset.png +0 -0
  403. package/dist-android/static/usericon.png +0 -0
  404. package/dist-android/static/workflow_apply.json +0 -766
  405. package/dist-android/static/xinxi.png +0 -0
  406. package/dist-android/static//344/277/256/346/224/271/345/257/206/347/240/201.png +0 -0
  407. package/dist-android/static//345/256/211/346/243/200/345/257/274/350/210/252/347/253/226/345/261/2173.png +0 -0
  408. package/dist-android/static//345/257/274/345/207/272/346/225/260/346/215/256.png +0 -0
  409. package/dist-android/static//346/270/205/347/251/272/346/225/260/346/215/256.png +0 -0
  410. package/src/components/app_apply/Acceptance.vue +0 -298
  411. package/src/components/app_apply/ApplyApp.vue +0 -91
  412. package/src/components/app_apply/ApplyDownList.vue +0 -166
  413. package/src/components/app_apply/ApplyInfo.vue +0 -56
  414. package/src/components/app_apply/ApplyListUpload.vue +0 -258
  415. package/src/components/app_apply/ApplyToDoList.vue +0 -165
  416. package/src/components/app_apply/ApplyUserInfo.vue +0 -56
  417. package/src/components/app_apply/FieldExploration.vue +0 -267
  418. package/src/components/app_apply/PlaceControler.vue +0 -258
  419. package/src/components/app_apply/ServiceControl.vue +0 -267
  420. package/src/components/app_apply/ServiceView.vue +0 -355
  421. package/src/components/app_apply/ToolsPage.vue +0 -51
  422. package/src/components/app_apply/Ventilation.vue +0 -199
  423. package/src/components/product/ApplyCharge/ApplyChargeReport.vue +0 -107
  424. package/src/components/product/Function/StopApplyCrrdList.vue +0 -176
  425. package/src/components/product/Function/functions/ApplyRecordCancel.vue +0 -102
  426. package/src/components/product/Function/functions/StopInstall.vue +0 -106
  427. package/src/components/product/Process/Processes/printCharge.vue +0 -126
  428. package/src/components/product/Process/ShowBackReason.vue +0 -32
  429. package/src/components/product/ReportForm/GasIgnitionSummary.vue +0 -352
  430. package/src/components/product/VueUtils/ToolsPage.vue +0 -51
  431. package/src/components/product/VueUtils/Tree.vue +0 -330
@@ -0,0 +1,1034 @@
1
+ /* 表单内输入框 */
2
+ .form-input-group-large {
3
+ display: -webkit-box;
4
+ display: -webkit-flex;
5
+ display: -ms-flexbox;
6
+ display: flex;
7
+ label {
8
+ width: 110px;
9
+ //padding-top: 6px;
10
+ text-align: right;
11
+ + * {
12
+ -webkit-box-flex:1;
13
+ -webkit-flex:1;
14
+ -ms-flexbox-flex:1;
15
+ flex: 1;
16
+ box-sizing: border-box;
17
+ vertical-align:middle;
18
+ }
19
+ }
20
+ }
21
+ .form-input-group {
22
+ display: -webkit-box;
23
+ display: -webkit-flex;
24
+ display: -ms-flexbox;
25
+ display: flex;
26
+ label {
27
+ width: 110px;
28
+ // padding-top: 6px;
29
+ text-align: right;
30
+ + * {
31
+ -webkit-box-flex:1;
32
+ -webkit-flex:1;
33
+ -ms-flexbox-flex:1;
34
+ flex: 1;
35
+ box-sizing: border-box;
36
+ vertical-align:middle;
37
+ }
38
+ }
39
+ }
40
+ .form-input-group-small {
41
+ display: -webkit-box;
42
+ display: -webkit-flex;
43
+ display: -ms-flexbox;
44
+ display: flex;
45
+ label {
46
+ width: 110px;
47
+ //padding-top: 6px;
48
+ text-align: right;
49
+ + * {
50
+ -webkit-box-flex:1;
51
+ -webkit-flex:1;
52
+ -ms-flexbox-flex:1;
53
+ flex: 1;
54
+ box-sizing: border-box;
55
+ vertical-align:middle;
56
+ }
57
+ }
58
+ }
59
+ .bg-white {
60
+ background-color: white;
61
+ }
62
+ .mgb-5 {
63
+ margin-bottom: 5px;
64
+ }
65
+ .pdl-12 {
66
+ padding-left: 12px;
67
+ }
68
+ // 字体加粗
69
+ .fwb {
70
+ font-weight: bold;
71
+ }
72
+ // 浮动右对齐
73
+ .fr {
74
+ float: right;
75
+ }
76
+ .pl-12 {
77
+ padding-left: 12px;
78
+ }
79
+ .p-10 {
80
+ padding: 10px;
81
+ }
82
+ .pt-8 {
83
+ padding-top: 8px;
84
+ }
85
+ // 下拉选择框占据剩余全部空间
86
+ .select-overspread {
87
+ .form-group {
88
+ // margin: 0px 5px 10px 0px;
89
+ .form-control {
90
+ margin-right: 0px;
91
+ }
92
+ }
93
+ .btn-group, .btn-group-vertical {
94
+ width: 100%;
95
+ // padding-right: 5px;
96
+ button {
97
+ width: 100%;
98
+ display: flex;
99
+ justify-content: space-between;
100
+ align-items: center;
101
+ }
102
+ }
103
+ .dropdown-menu {
104
+ min-width: 100%
105
+ }
106
+ }
107
+ .app-bg {
108
+ background: #F5F5F5;
109
+ }
110
+ .app-input {
111
+ background: #FFF;
112
+ border-bottom: 1px solid #ccc;
113
+ }
114
+ .app-input input, .app-input label {
115
+ padding: 8px 10px;
116
+ border: none;
117
+ outline: none;
118
+ margin: 0px;
119
+ }
120
+ .app-textarea {
121
+ display: block;
122
+ padding: 10px 15px;
123
+ border: 0;
124
+ resize: none;
125
+ width: 100%;
126
+ color: inherit;
127
+ font-size: 1em;
128
+ line-height: inherit;
129
+ outline: 0;
130
+ }
131
+ .app-cells {
132
+ height: auto;
133
+ background-color: #FFFFFF;
134
+ font-size: 1.2em;
135
+ overflow: hidden;
136
+ position: relative;
137
+ }
138
+ .app-cells label {
139
+ padding: 10px;
140
+ margin: 0px;
141
+ color: #999999;
142
+ font-weight: normal;
143
+ }
144
+ .app-cells * + * {
145
+ border-top: 1px solid #D5D5D6;
146
+ }
147
+ .app-btn {
148
+ display: flex;
149
+ width: 100%;
150
+ }
151
+ .app-btn button{
152
+ flex: 1;
153
+ border-radius: 17px;
154
+ margin: 10px;
155
+ }
156
+ .app-btn button:focus, .app-btn button::selection {
157
+ outline: none;
158
+ }
159
+ .app-list {
160
+ margin-top: 8px;
161
+ background: #FFF;
162
+ }
163
+ .app-list div {
164
+ padding: 6px 10px;
165
+ }
166
+ .app-list div:first-child{
167
+ border-bottom: 1px solid #ccc;
168
+ }
169
+ .app-input .datepicker-input[readonly] {
170
+ border: none;
171
+ background: none;
172
+ }
173
+ div[contenteditable=true]{
174
+ height: 80px;
175
+ width: 100%;
176
+ outline: none;
177
+ padding: 8px;
178
+ overflow: scroll;
179
+ }
180
+
181
+ .flex-between {
182
+ display: flex;
183
+ justify-content: space-between;
184
+ align-items: center;
185
+ }
186
+ .flex-between span {
187
+ padding-right: 10px;
188
+ }
189
+ .flex-full {
190
+ flex: 1;
191
+ }
192
+ /* app卡片样式 */
193
+ .app-preview {
194
+ position: relative;
195
+ background-color: #FFF;
196
+ height: auto;
197
+ }
198
+ .app-preview > .head > * {
199
+ padding: 0px;
200
+ margin: 0px;
201
+ }
202
+ .app-preview > .head {
203
+ display: flex;
204
+ justify-content: space-between;
205
+ padding: 10px 15px;
206
+ line-height: 2.5em;
207
+ border-bottom: 1px solid #D5D5D6;
208
+ }
209
+ .app-preview-btn-default {
210
+ color: #999999;
211
+ }
212
+ .app-preview-btn-success {
213
+ color: #3CC51F;
214
+ }
215
+ .app-preview > .body {
216
+ padding: 10px 15px;
217
+ border-bottom: 1px solid #D5D5D6;
218
+
219
+ }
220
+ .app-preview > .body > div > label {
221
+ text-align: justify;
222
+ text-align-last: justify;
223
+ min-width: 70px;
224
+ }
225
+ .app-preview > .foot {
226
+ display: flex;
227
+ height: 50px;
228
+ }
229
+ .app-preview > .foot > * {
230
+ flex: 1;
231
+ display: block;
232
+ flex: 1;
233
+
234
+ text-align: center;
235
+ }
236
+ .app-preview > .foot > * + * {
237
+ border-left: 1px solid #D5D5D6;
238
+ }
239
+ // 为工单列表样式
240
+ .compatible {
241
+ padding: 8px;
242
+ }
243
+ .compatible .form-input-group {
244
+ margin: 3px 0px;
245
+ padding: 0 8px;
246
+ }
247
+ @media screen and (min-width:992px) {
248
+ .hd-disappear{
249
+ display: none;
250
+ }
251
+ }
252
+
253
+ #work-history ul {
254
+ padding: 0px;
255
+ }
256
+
257
+ // 从order文件夹拷贝
258
+ // 为blockquote写的通用样式
259
+ // 大背景
260
+ .repair-bg {
261
+ background: #DBDBDB;
262
+ }
263
+ // 头部信息提示
264
+ .bq-parent {
265
+ height: auto;
266
+ background: #FFF;
267
+ padding: 10px 15px;
268
+ >blockquote {
269
+ padding: 0px;
270
+ padding-left: 8px;
271
+ margin: 0px;
272
+ font-size: 18px;
273
+ font-weight: bold;
274
+ border-left-color: #4C647A;
275
+ }
276
+ }
277
+ // 为移动端提供左侧修饰性边框
278
+ .lb-left {
279
+ padding-left: 8px;
280
+ border: none;
281
+ border-left: 5px solid #A2C2EB;
282
+ }
283
+ // 内容块
284
+ .repair-info-content {
285
+ margin: 15px;
286
+ background: #FFF;
287
+ border-radius: 5px;
288
+ }
289
+ @media screen and (max-width:768px) {
290
+ .repair-info-content {
291
+ margin: 0px;
292
+ padding: 8px;
293
+ background: #FFF;
294
+ border-radius: 0px;
295
+ }
296
+ }
297
+ // 为a标签:berfor伪元素写的通用样式
298
+ .tab-befor-img (@url) {
299
+ content: '';
300
+ background-image: url("@{url}");
301
+ background-size: 30px;
302
+ display: inline-block;
303
+ margin-right: 8px;
304
+ height: 30px;
305
+ width: 30px;
306
+ vertical-align: -35%;
307
+ }
308
+ .android-repair-order {
309
+ > div {
310
+ > ul {
311
+ background: #4C647A;
312
+ overflow: auto;
313
+ li {
314
+ display: block;
315
+ width: 100%;
316
+ }
317
+ > .active {
318
+ a {
319
+ background: #7599C4!important;
320
+ color: #FFF!important;
321
+ border: none;
322
+ display: block;
323
+ font-weight: bold;
324
+ &::after {
325
+ content: "";
326
+ width: 0px;
327
+ height: 0px;
328
+ border-width: 8px 8px 8px 0px;
329
+ border-color: transparent #FFF;
330
+ border-style: solid;
331
+ position: absolute;
332
+ right: 0;
333
+ top: 50%;
334
+ transform: translateY(-50%);
335
+ }
336
+ &:focus {
337
+ color: #FFF;
338
+ background: none;
339
+ }
340
+ }
341
+ }
342
+ a {
343
+ font-size: 18px;
344
+ color: #FFF;
345
+ padding: 13px 16px;
346
+ }
347
+ }
348
+ }
349
+ }
350
+
351
+ // 从app中考出
352
+ .no-close .nav-tabs a {
353
+ padding: 5px 12px;
354
+ }
355
+ /* checkbox和radio的样式 */
356
+ .magic-radio,
357
+ .magic-checkbox {
358
+ position: absolute;
359
+ display: none;
360
+ }
361
+
362
+ .magic-radio[disabled],
363
+ .magic-checkbox[disabled] {
364
+ cursor: not-allowed;
365
+ }
366
+
367
+ .magic-radio + label,
368
+ .magic-checkbox + label {
369
+ position: relative;
370
+ display: block;
371
+ padding-left: 30px;
372
+ cursor: pointer;
373
+ vertical-align: middle;
374
+ text-align: left;
375
+ }
376
+
377
+ .magic-radio + label:hover:before,
378
+ .magic-checkbox + label:hover:before {
379
+ animation-duration: 0.4s;
380
+ animation-fill-mode: both;
381
+ animation-name: hover-color;
382
+ }
383
+
384
+ .magic-radio + label:before,
385
+ .magic-checkbox + label:before {
386
+ position: absolute;
387
+ top: 0;
388
+ left: 0;
389
+ display: inline-block;
390
+ width: 20px;
391
+ height: 20px;
392
+ content: '';
393
+ border: 1px solid #c0c0c0;
394
+ }
395
+
396
+ .magic-radio + label:after,
397
+ .magic-checkbox + label:after {
398
+ position: absolute;
399
+ display: none;
400
+ content: '';
401
+ }
402
+
403
+ .magic-radio[disabled] + label,
404
+ .magic-checkbox[disabled] + label {
405
+ cursor: not-allowed;
406
+ color: #e4e4e4;
407
+ }
408
+
409
+ .magic-radio[disabled] + label:hover, .magic-radio[disabled] + label:before, .magic-radio[disabled] + label:after,
410
+ .magic-checkbox[disabled] + label:hover,
411
+ .magic-checkbox[disabled] + label:before,
412
+ .magic-checkbox[disabled] + label:after {
413
+ cursor: not-allowed;
414
+ }
415
+
416
+ .magic-radio[disabled] + label:hover:before,
417
+ .magic-checkbox[disabled] + label:hover:before {
418
+ border: 1px solid #e4e4e4;
419
+ animation-name: none;
420
+ }
421
+
422
+ .magic-radio[disabled] + label:before,
423
+ .magic-checkbox[disabled] + label:before {
424
+ border-color: #e4e4e4;
425
+ }
426
+
427
+ .magic-radio:checked + label:before,
428
+ .magic-checkbox:checked + label:before {
429
+ animation-name: none;
430
+ }
431
+
432
+ .magic-radio:checked + label:after,
433
+ .magic-checkbox:checked + label:after {
434
+ display: block;
435
+ }
436
+
437
+ .magic-radio + label:before {
438
+ border-radius: 50%;
439
+ }
440
+
441
+ .magic-radio + label:after {
442
+ top: 4px;
443
+ left: 4px;
444
+ width: 12px;
445
+ height: 12px;
446
+ border-radius: 50%;
447
+ background: #7697c4;
448
+ }
449
+
450
+ .magic-radio:checked + label:before {
451
+ border: 2px solid #7697c4;
452
+ }
453
+
454
+ .magic-radio:checked[disabled] + label:before {
455
+ border: 2px solid #c9e2f9;
456
+ }
457
+
458
+ /*.magic-radio:checked[disabled] + label:after {
459
+ background: #c9e2f9; }*/
460
+
461
+ .magic-checkbox + label:before {
462
+ border-radius: 3px;
463
+ }
464
+
465
+ .magic-checkbox + label:after {
466
+ top: 2px;
467
+ left: 7px;
468
+ box-sizing: border-box;
469
+ width: 6px;
470
+ height: 12px;
471
+ transform: rotate(45deg);
472
+ border-width: 2px;
473
+ border-style: solid;
474
+ border-color: #fff;
475
+ border-top: 0;
476
+ border-left: 0;
477
+ }
478
+
479
+ .magic-checkbox:checked + label:before {
480
+ border: #7697c4;
481
+ background: #7697c4;
482
+ }
483
+
484
+ .magic-checkbox:checked[disabled] + label:before {
485
+ border: #c9e2f9;
486
+ background: #c9e2f9;
487
+ }
488
+ /* 滚动条样式 */
489
+ /*---滚动条默认显示样式--*/
490
+ ::-webkit-scrollbar-thumb{
491
+ // display: none;
492
+ background-color:rgba(0,0,0,0.2);
493
+ height:50px;
494
+ outline-offset:-2px;
495
+ /*outline:2px solid #fff;*/
496
+ -webkit-border-radius:4px;
497
+ /*border: 2px solid #fff;*/
498
+ }
499
+
500
+ /*---鼠标点击滚动条显示样式--*/
501
+ ::-webkit-scrollbar-thumb:hover{
502
+ // display: inherit;
503
+ background-color:rgba(0,0,0,0.4);
504
+ height:50px;
505
+ -webkit-border-radius:4px;
506
+ }
507
+ /*---滚动条大小--*/
508
+ ::-webkit-scrollbar{
509
+ width:8px;
510
+ height:8px;
511
+ }
512
+ /*---滚动框背景样式--*/
513
+ ::-webkit-scrollbar-track-piece{
514
+ /* 全透明,不显示 */
515
+ background-color:rgba(255,255,255,0);
516
+ -webkit-border-radius:0;
517
+ }
518
+ /* 表单内输入框 */
519
+ .form-input-group-large {
520
+ display: -webkit-box;
521
+ display: -webkit-flex;
522
+ display: -ms-flexbox;
523
+ display: flex;
524
+ label {
525
+ width: 110px;
526
+ //padding-top: 6px;
527
+ text-align: right;
528
+ + * {
529
+ -webkit-box-flex:1;
530
+ -webkit-flex:1;
531
+ -ms-flexbox-flex:1;
532
+ flex: 1;
533
+ box-sizing: border-box;
534
+ vertical-align:middle;
535
+ }
536
+ }
537
+ }
538
+ .form-input-group {
539
+ display: -webkit-box;
540
+ display: -webkit-flex;
541
+ display: -ms-flexbox;
542
+ display: flex;
543
+ label {
544
+ width: 110px;
545
+ // padding-top: 6px;
546
+ text-align: right;
547
+ + * {
548
+ -webkit-box-flex:1;
549
+ -webkit-flex:1;
550
+ -ms-flexbox-flex:1;
551
+ flex: 1;
552
+ box-sizing: border-box;
553
+ vertical-align:middle;
554
+ }
555
+ }
556
+ }
557
+ .form-input-group-small {
558
+ display: -webkit-box;
559
+ display: -webkit-flex;
560
+ display: -ms-flexbox;
561
+ display: flex;
562
+ label {
563
+ width: 110px;
564
+ //padding-top: 6px;
565
+ text-align: right;
566
+ + * {
567
+ -webkit-box-flex:1;
568
+ -webkit-flex:1;
569
+ -ms-flexbox-flex:1;
570
+ flex: 1;
571
+ box-sizing: border-box;
572
+ vertical-align:middle;
573
+ }
574
+ }
575
+ }
576
+ .bg-white {
577
+ background-color: white;
578
+ }
579
+ .mgb-5 {
580
+ margin-bottom: 5px;
581
+ }
582
+ .pdl-12 {
583
+ padding-left: 12px;
584
+ }
585
+ // 字体加粗
586
+ .fwb {
587
+ font-weight: bold;
588
+ }
589
+ // 浮动右对齐
590
+ .fr {
591
+ float: right;
592
+ }
593
+ .pl-12 {
594
+ padding-left: 12px;
595
+ }
596
+ .p-10 {
597
+ padding: 10px;
598
+ }
599
+ .pt-8 {
600
+ padding-top: 8px;
601
+ }
602
+ // 下拉选择框占据剩余全部空间
603
+ .select-overspread {
604
+ .form-group {
605
+ // margin: 0px 5px 10px 0px;
606
+ .form-control {
607
+ margin-right: 0px;
608
+ }
609
+ }
610
+ .btn-group, .btn-group-vertical {
611
+ width: 100%;
612
+ // padding-right: 5px;
613
+ button {
614
+ width: 100%;
615
+ display: flex;
616
+ justify-content: space-between;
617
+ align-items: center;
618
+ }
619
+ }
620
+ .dropdown-menu {
621
+ min-width: 100%
622
+ }
623
+ }
624
+ .app-bg {
625
+ background: #F5F5F5;
626
+ }
627
+ .app-input {
628
+ background: #FFF;
629
+ border-bottom: 1px solid #ccc;
630
+ }
631
+ .app-input input, .app-input label {
632
+ padding: 8px 10px;
633
+ border: none;
634
+ outline: none;
635
+ margin: 0px;
636
+ }
637
+ .app-textarea {
638
+ display: block;
639
+ padding: 10px 15px;
640
+ border: 0;
641
+ resize: none;
642
+ width: 100%;
643
+ color: inherit;
644
+ font-size: 1em;
645
+ line-height: inherit;
646
+ outline: 0;
647
+ }
648
+ .app-cells {
649
+ height: auto;
650
+ background-color: #FFFFFF;
651
+ font-size: 1.2em;
652
+ overflow: hidden;
653
+ position: relative;
654
+ }
655
+ .app-cells label {
656
+ padding: 10px;
657
+ margin: 0px;
658
+ color: #999999;
659
+ font-weight: normal;
660
+ }
661
+ .app-cells * + * {
662
+ border-top: 1px solid #D5D5D6;
663
+ }
664
+ .app-btn {
665
+ display: flex;
666
+ width: 100%;
667
+ }
668
+ .app-btn button{
669
+ flex: 1;
670
+ border-radius: 17px;
671
+ margin: 10px;
672
+ }
673
+ .app-btn button:focus, .app-btn button::selection {
674
+ outline: none;
675
+ }
676
+ .app-list {
677
+ margin-top: 8px;
678
+ background: #FFF;
679
+ }
680
+ .app-list div {
681
+ padding: 6px 10px;
682
+ }
683
+ .app-list div:first-child{
684
+ border-bottom: 1px solid #ccc;
685
+ }
686
+ .app-input .datepicker-input[readonly] {
687
+ border: none;
688
+ background: none;
689
+ }
690
+ div[contenteditable=true]{
691
+ height: 80px;
692
+ width: 100%;
693
+ outline: none;
694
+ padding: 8px;
695
+ overflow: scroll;
696
+ }
697
+
698
+ .flex-between {
699
+ display: flex;
700
+ justify-content: space-between;
701
+ align-items: center;
702
+ }
703
+ .flex-between span {
704
+ padding-right: 10px;
705
+ }
706
+ .flex-full {
707
+ flex: 1;
708
+ }
709
+ /* app卡片样式 */
710
+ .app-preview {
711
+ position: relative;
712
+ background-color: #FFF;
713
+ height: auto;
714
+ }
715
+ .app-preview > .head > * {
716
+ padding: 0px;
717
+ margin: 0px;
718
+ }
719
+ .app-preview > .head {
720
+ display: flex;
721
+ justify-content: space-between;
722
+ padding: 10px 15px;
723
+ line-height: 2.5em;
724
+ border-bottom: 1px solid #D5D5D6;
725
+ }
726
+ .app-preview-btn-default {
727
+ color: #999999;
728
+ }
729
+ .app-preview-btn-success {
730
+ color: #3CC51F;
731
+ }
732
+ .app-preview > .body {
733
+ padding: 10px 15px;
734
+ border-bottom: 1px solid #D5D5D6;
735
+
736
+ }
737
+ .app-preview > .body > div > label {
738
+ text-align: justify;
739
+ text-align-last: justify;
740
+ min-width: 70px;
741
+ }
742
+ .app-preview > .foot {
743
+ display: flex;
744
+ height: 50px;
745
+ }
746
+ .app-preview > .foot > * {
747
+ flex: 1;
748
+ display: block;
749
+ flex: 1;
750
+
751
+ text-align: center;
752
+ }
753
+ .app-preview > .foot > * + * {
754
+ border-left: 1px solid #D5D5D6;
755
+ }
756
+ // 为工单列表样式
757
+ .compatible {
758
+ padding: 8px;
759
+ }
760
+ .compatible .form-input-group {
761
+ margin: 3px 0px;
762
+ padding: 0 8px;
763
+ }
764
+ @media screen and (min-width:992px) {
765
+ .hd-disappear{
766
+ display: none;
767
+ }
768
+ }
769
+
770
+ #work-history ul {
771
+ padding: 0px;
772
+ }
773
+
774
+ // 从order文件夹拷贝
775
+ // 为blockquote写的通用样式
776
+ // 大背景
777
+ .repair-bg {
778
+ background: #DBDBDB;
779
+ }
780
+ // 头部信息提示
781
+ .bq-parent {
782
+ height: auto;
783
+ background: #FFF;
784
+ padding: 10px 15px;
785
+ >blockquote {
786
+ padding: 0px;
787
+ padding-left: 8px;
788
+ margin: 0px;
789
+ font-size: 18px;
790
+ font-weight: bold;
791
+ border-left-color: #4C647A;
792
+ }
793
+ }
794
+ // 为移动端提供左侧修饰性边框
795
+ .lb-left {
796
+ padding-left: 8px;
797
+ border: none;
798
+ border-left: 5px solid #A2C2EB;
799
+ }
800
+ // 内容块
801
+ .repair-info-content {
802
+ margin: 15px;
803
+ background: #FFF;
804
+ border-radius: 5px;
805
+ }
806
+ @media screen and (max-width:768px) {
807
+ .repair-info-content {
808
+ margin: 0px;
809
+ padding: 8px;
810
+ background: #FFF;
811
+ border-radius: 0px;
812
+ }
813
+ }
814
+ // 为a标签:berfor伪元素写的通用样式
815
+ .tab-befor-img (@url) {
816
+ content: '';
817
+ background-image: url("@{url}");
818
+ background-size: 30px;
819
+ display: inline-block;
820
+ margin-right: 8px;
821
+ height: 30px;
822
+ width: 30px;
823
+ vertical-align: -35%;
824
+ }
825
+ .android-repair-order {
826
+ > div {
827
+ > ul {
828
+ background: #4C647A;
829
+ overflow: auto;
830
+ li {
831
+ display: block;
832
+ width: 100%;
833
+ }
834
+ > .active {
835
+ a {
836
+ background: #7599C4!important;
837
+ color: #FFF!important;
838
+ border: none;
839
+ display: block;
840
+ font-weight: bold;
841
+ &::after {
842
+ content: "";
843
+ width: 0px;
844
+ height: 0px;
845
+ border-width: 8px 8px 8px 0px;
846
+ border-color: transparent #FFF;
847
+ border-style: solid;
848
+ position: absolute;
849
+ right: 0;
850
+ top: 50%;
851
+ transform: translateY(-50%);
852
+ }
853
+ &:focus {
854
+ color: #FFF;
855
+ background: none;
856
+ }
857
+ }
858
+ }
859
+ a {
860
+ font-size: 18px;
861
+ color: #FFF;
862
+ padding: 13px 16px;
863
+ }
864
+ }
865
+ }
866
+ }
867
+
868
+ // 从app中考出
869
+ .no-close .nav-tabs a {
870
+ padding: 5px 12px;
871
+ }
872
+ /* checkbox和radio的样式 */
873
+ .magic-radio,
874
+ .magic-checkbox {
875
+ position: absolute;
876
+ display: none;
877
+ }
878
+
879
+ .magic-radio[disabled],
880
+ .magic-checkbox[disabled] {
881
+ cursor: not-allowed;
882
+ }
883
+
884
+ .magic-radio + label,
885
+ .magic-checkbox + label {
886
+ position: relative;
887
+ display: block;
888
+ padding-left: 30px;
889
+ cursor: pointer;
890
+ vertical-align: middle;
891
+ text-align: left;
892
+ }
893
+
894
+ .magic-radio + label:hover:before,
895
+ .magic-checkbox + label:hover:before {
896
+ animation-duration: 0.4s;
897
+ animation-fill-mode: both;
898
+ animation-name: hover-color;
899
+ }
900
+
901
+ .magic-radio + label:before,
902
+ .magic-checkbox + label:before {
903
+ position: absolute;
904
+ top: 0;
905
+ left: 0;
906
+ display: inline-block;
907
+ width: 20px;
908
+ height: 20px;
909
+ content: '';
910
+ border: 1px solid #c0c0c0;
911
+ }
912
+
913
+ .magic-radio + label:after,
914
+ .magic-checkbox + label:after {
915
+ position: absolute;
916
+ display: none;
917
+ content: '';
918
+ }
919
+
920
+ .magic-radio[disabled] + label,
921
+ .magic-checkbox[disabled] + label {
922
+ cursor: not-allowed;
923
+ color: #e4e4e4;
924
+ }
925
+
926
+ .magic-radio[disabled] + label:hover, .magic-radio[disabled] + label:before, .magic-radio[disabled] + label:after,
927
+ .magic-checkbox[disabled] + label:hover,
928
+ .magic-checkbox[disabled] + label:before,
929
+ .magic-checkbox[disabled] + label:after {
930
+ cursor: not-allowed;
931
+ }
932
+
933
+ .magic-radio[disabled] + label:hover:before,
934
+ .magic-checkbox[disabled] + label:hover:before {
935
+ border: 1px solid #e4e4e4;
936
+ animation-name: none;
937
+ }
938
+
939
+ .magic-radio[disabled] + label:before,
940
+ .magic-checkbox[disabled] + label:before {
941
+ border-color: #e4e4e4;
942
+ }
943
+
944
+ .magic-radio:checked + label:before,
945
+ .magic-checkbox:checked + label:before {
946
+ animation-name: none;
947
+ }
948
+
949
+ .magic-radio:checked + label:after,
950
+ .magic-checkbox:checked + label:after {
951
+ display: block;
952
+ }
953
+
954
+ .magic-radio + label:before {
955
+ border-radius: 50%;
956
+ }
957
+
958
+ .magic-radio + label:after {
959
+ top: 4px;
960
+ left: 4px;
961
+ width: 12px;
962
+ height: 12px;
963
+ border-radius: 50%;
964
+ background: #7697c4;
965
+ }
966
+
967
+ .magic-radio:checked + label:before {
968
+ border: 2px solid #7697c4;
969
+ }
970
+
971
+ .magic-radio:checked[disabled] + label:before {
972
+ border: 2px solid #c9e2f9;
973
+ }
974
+
975
+ /*.magic-radio:checked[disabled] + label:after {
976
+ background: #c9e2f9; }*/
977
+
978
+ .magic-checkbox + label:before {
979
+ border-radius: 3px;
980
+ }
981
+
982
+ .magic-checkbox + label:after {
983
+ top: 2px;
984
+ left: 7px;
985
+ box-sizing: border-box;
986
+ width: 6px;
987
+ height: 12px;
988
+ transform: rotate(45deg);
989
+ border-width: 2px;
990
+ border-style: solid;
991
+ border-color: #fff;
992
+ border-top: 0;
993
+ border-left: 0;
994
+ }
995
+
996
+ .magic-checkbox:checked + label:before {
997
+ border: #7697c4;
998
+ background: #7697c4;
999
+ }
1000
+
1001
+ .magic-checkbox:checked[disabled] + label:before {
1002
+ border: #c9e2f9;
1003
+ background: #c9e2f9;
1004
+ }
1005
+ /* 滚动条样式 */
1006
+ /*---滚动条默认显示样式--*/
1007
+ ::-webkit-scrollbar-thumb{
1008
+ // display: none;
1009
+ background-color:rgba(0,0,0,0.2);
1010
+ height:50px;
1011
+ outline-offset:-2px;
1012
+ /*outline:2px solid #fff;*/
1013
+ -webkit-border-radius:4px;
1014
+ /*border: 2px solid #fff;*/
1015
+ }
1016
+
1017
+ /*---鼠标点击滚动条显示样式--*/
1018
+ ::-webkit-scrollbar-thumb:hover{
1019
+ // display: inherit;
1020
+ background-color:rgba(0,0,0,0.4);
1021
+ height:50px;
1022
+ -webkit-border-radius:4px;
1023
+ }
1024
+ /*---滚动条大小--*/
1025
+ ::-webkit-scrollbar{
1026
+ width:8px;
1027
+ height:8px;
1028
+ }
1029
+ /*---滚动框背景样式--*/
1030
+ ::-webkit-scrollbar-track-piece{
1031
+ /* 全透明,不显示 */
1032
+ background-color:rgba(255,255,255,0);
1033
+ -webkit-border-radius:0;
1034
+ }