apply-clients 7.1.33 → 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 +33 -30
  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 +31 -15
  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 +131 -147
  131. package/src/components/product/Function/InstallInfoSelect.vue +294 -281
  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 +281 -254
  139. package/src/components/product/Process/ExplorationUser.vue +151 -134
  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 +616 -277
  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 +207 -249
  150. package/src/components/product/Process/Processes/chargeManagement.vue +331 -347
  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 +1314 -753
  156. package/src/components/product/Process/Service/ShowBackReason.vue +33 -0
  157. package/src/components/product/ServiceView.vue +632 -755
  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 +110 -121
  163. package/src/components/product/Supervisory/SupervisoryList.vue +98 -48
  164. package/src/components/product/Supervisory/SupervisoryhCart.vue +119 -103
  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,114 @@
1
+ <template>
2
+ <div>
3
+ <tabset v-ref:tabs :close="false" nav-style="tabs nav-apply-tab" :active.sync="active">
4
+ <tab header='任务地图'>
5
+ <div class="auto tip">
6
+ <p>当前任务数量:{{ tasknumber }}</p>
7
+ <p>当前任务点:{{labelmarksarray.length}}</p>
8
+ </div>
9
+ <amap-location
10
+ :islocation="true"
11
+ :locationzoomcenter="false"
12
+ :usenative="true"
13
+ :isshowsearch="false"
14
+ :mylocationinfo="false"
15
+ :islocationclearmark="false"
16
+ :isshowmapmodel="false"
17
+ :locationwindow="false"
18
+ mapmodel="dragMarker"
19
+ :labelmarksarray="labelmarksarray"
20
+ @diyspotmouseclick="diyspotmouseclick"
21
+ ></amap-location>
22
+ </tab>
23
+ <tab header='任务列表'>
24
+ <app-exploration-user v-ref:exploration :defname="defname" :f_lat="f_lat" :f_lng="f_lng"></app-exploration-user>
25
+ </tab>
26
+ </tabset>
27
+ </div>
28
+ </template>
29
+ <script>
30
+ import {HttpResetClass, PagedList} from 'vue-client'
31
+ import Vue from 'vue'
32
+
33
+ export default {
34
+ title: '工程施工',
35
+ data () {
36
+ return {
37
+ labelmarksarray: [],
38
+ tasknumber: 0,
39
+ active: 0,
40
+ f_lat: null,
41
+ f_lng: null,
42
+ defname: '工程施工'
43
+ }
44
+ },
45
+ ready () {
46
+ console.log('进入工程施工')
47
+ this.getApplyTaskDot()
48
+ },
49
+ methods: {
50
+ diyspotmouseclick (data) {
51
+ this.f_lat = data.f_lat
52
+ this.f_lng = data.f_lng
53
+
54
+ this.active = 1
55
+ },
56
+ async getApplyTaskDot () {
57
+ console.log('==========查询任务点==============')
58
+ this.tasknumber = 0
59
+ let http = new HttpResetClass()
60
+ let data = {
61
+ defname: this.defname,
62
+ userid: Vue.user.id
63
+ }
64
+ let res = await http.load(
65
+ 'POST',
66
+ `${this.$androidUtil.getProxyUrl()}/rs/sql/getBuildTaskDot`,
67
+ {data: data},
68
+ {
69
+ resolveMsg: null,
70
+ rejectMsg: '任务点获取失败!!!'
71
+ })
72
+ this.labelmarksarray = res.data.map(item => {
73
+ this.tasknumber += item.count
74
+ return {
75
+ data: {
76
+ data: item,
77
+ content: `<p>任务数:${item.count}</p>`
78
+ },
79
+ position: [item.f_lng, item.f_lat],
80
+ isclearmarker: false,
81
+ islabel: false
82
+ }
83
+ })
84
+ }
85
+ },
86
+ events: {
87
+ 'refreshDot' () {
88
+ this.getApplyTaskDot()
89
+ }
90
+ },
91
+ watch: {
92
+ },
93
+ computed: {
94
+ }
95
+ }
96
+ </script>
97
+ <style scoped>
98
+ .tip{
99
+ position: absolute;
100
+ z-index: 1000;
101
+ color: red;
102
+ font-size: 24px;
103
+ right: 30px;
104
+ padding-top: 20px;
105
+ }
106
+ </style>
107
+ <style lang="less">
108
+ .nav-apply-tab {
109
+ li {
110
+ width: 50%;
111
+ text-align: center;
112
+ }
113
+ }
114
+ </style>
@@ -0,0 +1,112 @@
1
+ <template>
2
+ <div>
3
+ <tabset v-ref:tabs :close="false" nav-style="tabs nav-apply-tab" :active.sync="active">
4
+ <tab header='任务地图'>
5
+ <div class="auto tip">
6
+ <p>当前任务数量:{{ tasknumber }}</p>
7
+ <p>当前任务点:{{labelmarksarray.length}}</p>
8
+ </div>
9
+ <amap-location
10
+ :islocation="true"
11
+ :locationzoomcenter="false"
12
+ :usenative="true"
13
+ :isshowsearch="false"
14
+ :mylocationinfo="false"
15
+ :islocationclearmark="false"
16
+ :isshowmapmodel="false"
17
+ :locationwindow="false"
18
+ mapmodel="dragMarker"
19
+ :labelmarksarray="labelmarksarray"
20
+ @diyspotmouseclick="diyspotmouseclick"
21
+ ></amap-location>
22
+ </tab>
23
+ <tab header='任务列表'>
24
+ <app-exploration-user v-ref:exploration :defname="defname" :f_lat="f_lat" :f_lng="f_lng"></app-exploration-user>
25
+ </tab>
26
+ </tabset>
27
+ </div>
28
+ </template>
29
+ <script>
30
+ import {HttpResetClass, PagedList} from 'vue-client'
31
+ import Vue from 'vue'
32
+
33
+ export default {
34
+ title: '现场勘察',
35
+ data () {
36
+ return {
37
+ labelmarksarray: [],
38
+ tasknumber: 0,
39
+ active: 0,
40
+ f_lat: null,
41
+ f_lng: null,
42
+ defname: '现场勘察'
43
+ }
44
+ },
45
+ ready () {
46
+ this.getApplyTaskDot()
47
+ },
48
+ methods: {
49
+ diyspotmouseclick (data) {
50
+ this.f_lat = data.f_lat
51
+ this.f_lng = data.f_lng
52
+
53
+ this.active = 1
54
+ },
55
+ async getApplyTaskDot () {
56
+ this.tasknumber = 0
57
+ let http = new HttpResetClass()
58
+ let data = {
59
+ defname: this.defname,
60
+ userid: Vue.user.id
61
+ }
62
+ let res = await http.load(
63
+ 'POST',
64
+ `${this.$androidUtil.getProxyUrl()}/rs/sql/getApplyTaskDot`,
65
+ {data: data},
66
+ {
67
+ resolveMsg: null,
68
+ rejectMsg: '任务点获取失败!!!'
69
+ })
70
+ this.labelmarksarray = res.data.map(item => {
71
+ this.tasknumber += item.count
72
+ return {
73
+ data: {
74
+ data: item,
75
+ content: `<p>任务数:${item.count}</p>`
76
+ },
77
+ position: [item.f_lng, item.f_lat],
78
+ isclearmarker: false,
79
+ islabel: false
80
+ }
81
+ })
82
+ }
83
+ },
84
+ events: {
85
+ 'refreshDot' () {
86
+ this.getApplyTaskDot()
87
+ }
88
+ },
89
+ watch: {
90
+ },
91
+ computed: {
92
+ }
93
+ }
94
+ </script>
95
+ <style scoped>
96
+ .tip{
97
+ position: absolute;
98
+ z-index: 1000;
99
+ color: red;
100
+ font-size: 24px;
101
+ right: 30px;
102
+ padding-top: 20px;
103
+ }
104
+ </style>
105
+ <style lang="less">
106
+ .nav-apply-tab {
107
+ li {
108
+ width: 50%;
109
+ text-align: center;
110
+ }
111
+ }
112
+ </style>
@@ -0,0 +1,130 @@
1
+ <template>
2
+ <div>
3
+ <div :style="'height:' + AmapHeight">
4
+ <amap-location
5
+ :islocation="true"
6
+ :locationzoomcenter="false"
7
+ :usenative="true"
8
+ :isshowsearch="false"
9
+ :mylocationinfo="false"
10
+ :islocationclearmark="false"
11
+ :isshowmapmodel="false"
12
+ :locationwindow="false"
13
+ mapmodel="dragMarker"
14
+ :labelmarksarray="labelmarksarray"
15
+ @diyspotmouseclick="diyspotmouseclick"
16
+ ></amap-location>
17
+ </div>
18
+ <div class="auto row" v-if="selectdata">
19
+ <div class="col-sm-12 col-xs-12 form-group app-input" style="margin-top: 10px"></div>
20
+ <template v-for="item in fileds">
21
+ <div class="col-sm-12 col-xs-12 form-group app-input">
22
+ <label class="">{{ item.label }}</label>
23
+ <div :class="item.type === 'tel' || item.type === 'map' ? 'col-sm-8 col-xs-8' : 'col-sm-8 col-xs-9'">
24
+ <input style="width: 100%" type="text" placeholder="" v-model="selectdata[item.field]" :value="selectdata[item.field]" readonly>
25
+ <svg v-if="item.type === 'tel'" @click.prevent="dialNumber(selectdata[item.field])" style="width: 25px;height: 25px;position: absolute;bottom: 8px;" t="1628575136009" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="2374" width="200" height="200"><path d="M682.25 465.262c0 16.695 11.115 27.811 27.81 27.811s27.812-11.116 27.812-27.811A167.395 167.395 0 0 0 570.96 298.35c-16.695 0-27.811 11.116-27.811 27.811s11.16 27.812 27.811 27.812a111.597 111.597 0 0 1 111.29 111.289z m111.289 0c0 16.695 11.115 27.811 27.81 27.811s27.812-11.116 27.812-27.811c0-152.984-125.217-278.201-278.2-278.201-16.696 0-27.812 11.16-27.812 27.855s11.16 27.811 27.811 27.811c122.405 0 222.579 100.174 222.579 222.535zM417.976 367.9c30.623-30.579 33.391-77.898 5.58-111.289L337.31 148.134c-27.811-36.16-80.666-41.74-116.869-13.928-2.768 2.812-5.536 2.812-5.536 5.58l-75.13 75.13c-72.318 72.318 30.623 267.041 217.042 453.417C543.15 854.708 735.06 954.88 807.378 885.33l75.13-75.13c33.392-33.391 33.392-86.246 0-116.825l-5.536-5.58-108.52-86.246c-33.348-27.81-80.623-25.043-111.246 5.58l-47.275 47.319c-50.087-30.623-94.593-64.014-133.564-102.941-38.927-38.971-72.275-83.478-102.898-133.565l44.507-50.043z m-38.927-75.13c8.348 11.16 8.348 27.855-2.812 36.203l-61.202 63.97a29.569 29.569 0 0 0-5.536 33.392 721.425 721.425 0 0 0 122.405 164.1 721.512 721.512 0 0 0 164.1 122.405 29.569 29.569 0 0 0 33.39-5.58l63.971-63.97c11.16-11.116 25.043-11.116 36.203-2.769l108.477 89.014s2.768 0 2.768 2.768a26.889 26.889 0 0 1 0 38.971l-75.13 75.13c-36.115 36.115-208.606-55.666-372.75-217.042-164.1-161.332-253.114-336.548-216.955-372.75l77.854-77.899c11.16-8.348 30.623-8.348 38.971 5.58l86.246 108.521z" fill="#8A8A8A" p-id="2375"></path></svg>
26
+ <svg v-if="item.type === 'map'" @click="openAmap(selectdata[item.field])" style="width: 25px;height: 25px;position: absolute;bottom: 8px;" t="1628575336648" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="3201" width="200" height="200"><path d="M512 956h-1.1c-10.9 0-20.5-6.9-24.7-17L369.9 654.1 85 537.8c-10.1-4.1-16.8-13.7-17.2-24.6-0.4-10.9 5.6-21 15.3-25.9l833-416.5c10.7-5.3 23.6-3.2 32.1 5.2s10.5 21.4 5.2 32.1L536.8 940.9c-4.7 9.4-14.3 15.1-24.8 15.1zM162.7 509.6l239 97.6c6.9 2.8 12.4 8.3 15.2 15.2l97.6 239 351.9-703.8-703.7 352z" fill="#666666" p-id="3202"></path></svg>
27
+ </div>
28
+ </div>
29
+ </template>
30
+ <div class="col-sm-12 col-xs-12 form-group app-btn">
31
+ <button class="btn btn-info" @click.prevent="click()">查看详情</button>
32
+ </div>
33
+ </div>
34
+ </div>
35
+ </template>
36
+ <script>
37
+ import Vue from 'vue'
38
+ export default {
39
+ title: '地图任务点',
40
+ props: {
41
+ data: {
42
+ type: Array,
43
+ default: []
44
+ },
45
+ fileds: {
46
+ type: Array,
47
+ default: []
48
+ }
49
+ },
50
+ data () {
51
+ return {
52
+ labelmarksarray: [],
53
+ selectdata: null,
54
+ AmapHeight: '100%'
55
+ }
56
+ },
57
+ ready () {
58
+ this.getLocatingPoint()
59
+ },
60
+ methods: {
61
+ renew () {
62
+ this.AmapHeight = '100%'
63
+ this.selectdata = null
64
+ this.$dispatch('renew')
65
+ },
66
+ // 查看详情
67
+ click () {
68
+ let _this = this
69
+ this.$dispatch('gotoson', {
70
+ _this: _this,
71
+ title: _this.selectdata.defname,
72
+ safe: true
73
+ })
74
+ this.$goto('app-service-control', {selectdata: _this.selectdata}, 'self', _this.renew)
75
+ },
76
+ // 导航
77
+ openAmap (address) {
78
+ let _this = this
79
+ HostApp.openThirdPartyMap({
80
+ lon: _this.selectdata.f_lng,
81
+ lat: _this.selectdata.f_lat,
82
+ address: address
83
+ })
84
+ },
85
+ // 拨打电话
86
+ dialNumber (tel) {
87
+ this.$showMessage(`是否拨打电话:${tel}`, ['confirm']).then((res) => {
88
+ if (res === 'confirm') {
89
+ this.$androidUtil.makeAPhoneCall(tel)
90
+ }
91
+ })
92
+ },
93
+ // 点击定位点回调
94
+ diyspotmouseclick (data) {
95
+ this.AmapHeight = '60%'
96
+
97
+ this.selectdata = data
98
+ },
99
+ // 获取定位点
100
+ getLocatingPoint () {
101
+ this.data.forEach(item => {
102
+ this.labelmarksarray.push({
103
+ data: {
104
+ data: item,
105
+ content: item.f_user_name
106
+ },
107
+ position: [item.f_lng, item.f_lat],
108
+ isclearmarker: false,
109
+ islabel: false
110
+ })
111
+ })
112
+ }
113
+ },
114
+ events: {
115
+ },
116
+ watch: {
117
+ 'data' () {
118
+ this.getLocatingPoint()
119
+ }
120
+ }
121
+ }
122
+ </script>
123
+
124
+ <style lang="less">
125
+ .app-input {
126
+ label {
127
+ float: left;
128
+ }
129
+ }
130
+ </style>
@@ -0,0 +1,218 @@
1
+ <template>
2
+ <div style="width: 100%">
3
+ <div partial style="padding: 10px">
4
+ <div class="row app-row">
5
+ <div class="col-xs-4">
6
+ <label class="font text-left">客户名称:</label>
7
+ </div>
8
+ <div class="col-xs-8">
9
+ <input class="search_input input-font" v-model=model.data[0].f_user_name />
10
+ </div>
11
+ </div>
12
+ <div class="row app-row">
13
+ <div class="col-xs-4">
14
+ <label class="font text-left">电&emsp;&emsp;话:</label>
15
+ </div>
16
+ <div class="col-xs-8">
17
+ <input class="search_input input-font" v-model=model.data[0].f_phone />
18
+ </div>
19
+ </div>
20
+ <div class="row app-row">
21
+ <div class="col-xs-4">
22
+ <label class="font text-left">工程编号:</label>
23
+ </div>
24
+ <div class="col-xs-8">
25
+ <input class="search_input input-font" v-model=model.data[0].f_apply_num />
26
+ </div>
27
+ </div>
28
+ <div class="row app-row">
29
+ <div class="col-xs-4">
30
+ <label class="font text-left">合同编号:</label>
31
+ </div>
32
+ <div class="col-xs-8">
33
+ <input class="search_input input-font" v-model=model.data[0].f_contract_number />
34
+ </div>
35
+ </div>
36
+ <div class="row app-row">
37
+ <div class="col-xs-4">
38
+ <label class="font text-left">报建类型:</label>
39
+ </div>
40
+ <div class="col-xs-8">
41
+ <input class="search_input input-font" v-model=model.data[0].f_apply_type />
42
+ </div>
43
+ </div>
44
+ <div class="row app-row">
45
+ <div class="col-xs-4">
46
+ <label class="font text-left">客户编号:</label>
47
+ </div>
48
+ <div class="col-xs-8">
49
+ <input class="search_input input-font" v-model=model.data[0].f_userinfo_code />
50
+ </div>
51
+ </div>
52
+ <div class="row app-row">
53
+ <div class="col-xs-4">
54
+ <label class="font text-left">办理环节:</label>
55
+ </div>
56
+ <div class="col-xs-8">
57
+ <input class="search_input input-font" v-model=model.data[0].defname />
58
+ </div>
59
+ </div>
60
+ <div class="row app-row">
61
+ <div class="col-xs-4">
62
+ <label class="font text-left">地&emsp;&emsp;址:</label>
63
+ </div>
64
+ <div class="col-xs-8">
65
+ <input class="search_input input-font" v-model=model.data[0].f_address />
66
+ </div>
67
+ </div>
68
+ <div class="row app-row">
69
+ <div class="col-xs-4">
70
+ <label class="font text-left">施工备注:</label>
71
+ </div>
72
+ <div class="col-xs-8">
73
+ <input class="search_input input-font" v-model=model.data[0].f_construction_remarks />
74
+ </div>
75
+ </div>
76
+ <div class="row app-row">
77
+ <div class="col-xs-4">
78
+ <label class="font text-left">报建日期:</label>
79
+ </div>
80
+ <div class="col-xs-8">
81
+ <input class="search_input input-font" v-model=model.data[0].f_apply_date />
82
+ </div>
83
+ </div>
84
+ <div class="row app-row">
85
+ <div class="col-xs-4">
86
+ <label class="font text-left">备注:</label>
87
+ </div>
88
+ <div class="col-xs-8">
89
+ <input class="search_input input-font" v-model=model.f_price_number />
90
+ </div>
91
+ </div>
92
+ <div class="row app-row">
93
+ <div class="col-xs-4">
94
+ <label class="font text-left">客服建议:</label>
95
+ </div>
96
+ <div class="col-xs-8">
97
+ <input class="search_input input-font" v-model=model.f_price_idea />
98
+ </div>
99
+ </div>
100
+ <div class="row app-row">
101
+ <button class="btn btn-default button_spacing" style="min-width:100px;"
102
+ @click="click(row)">保存</button>
103
+ <button class="btn btn-default button_spacing" style="min-width:100px;"
104
+ @click="click(row)">提交</button>
105
+ </div>
106
+ </div>
107
+ </div>
108
+ </template>
109
+ <script>
110
+ import Vue from 'vue'
111
+ import {PagedList, HttpResetClass} from 'vue-client'
112
+
113
+ export default {
114
+ title: '客服管理',
115
+ data () {
116
+ return {
117
+ model: null,
118
+ criteriaShow: false
119
+ }
120
+ },
121
+ ready () {
122
+ this.search()
123
+ },
124
+ methods: {
125
+ clear () {
126
+ Object.keys(this.$refs.cp.$refs.cri.model).forEach((key) => {
127
+ this.$refs.cp.$refs.cri.model[key] = null
128
+ })
129
+ },
130
+ // 查询
131
+ async search () {
132
+ let http = new HttpResetClass()
133
+ let res = await http.load(
134
+ 'POST', `${this.$androidUtil.getProxyUrl()}/rs/sql/supervisory`, {
135
+ data: {
136
+ condition: '1=1',
137
+ data: {
138
+ id: Vue.user.id,
139
+ f_filiale: Vue.user.f_fengongsi
140
+ // id: this.$login.f.id,
141
+ // f_filiale: this.$login.f.f_fengongsi
142
+ }
143
+ }
144
+ }, {
145
+ resolveMsg: null,
146
+ rejectMsg: `查询失败`
147
+ })
148
+ this.model = res
149
+ console.log('当前数据', this.model)
150
+ console.log('当前数据', this.model.data[0].f_user_name)
151
+ },
152
+ click (row) {
153
+ let _this = this
154
+ this.$dispatch('gotoson', {
155
+ _this: _this,
156
+ title: '详情信息',
157
+ safe: true
158
+ })
159
+ this.$goto('detailed-data', {selectdata: row}, 'self', _this.search)
160
+ }
161
+ },
162
+ events: {},
163
+ watch: {}
164
+ }
165
+ </script>
166
+ <style scoped>
167
+ .app-row {
168
+ height: auto;
169
+ background-color: white;
170
+ padding: 10px 10px 0 10px;
171
+ border-bottom: 1px solid rgba(235, 235, 235, 0.5);
172
+ }
173
+
174
+ .search_input {
175
+ border: 0;
176
+ outline: none;
177
+ }
178
+
179
+ .input-font {
180
+ font: 15px PingFang-SC-Medium;
181
+ color: #333333;
182
+ }
183
+
184
+ .app-text {
185
+ font-size: 12px;
186
+ }
187
+
188
+ .panel-self {
189
+ border-radius: 10px;
190
+ border: 1px solid #499EDF;
191
+ background-color: #F8F8F8;
192
+ }
193
+
194
+ .font {
195
+ font: 15px PingFang-SC-Medium;
196
+ color: #666666;
197
+ }
198
+
199
+ .input-font {
200
+ font: 15px PingFang-SC-Medium;
201
+ color: #333333;
202
+ }
203
+
204
+ .button_shrink_top {
205
+ width: 34px;
206
+ height: 34px;
207
+ border: solid 1px #6aa6e2;
208
+ background-size: 100%;
209
+ background-image: url("../../../../static/newStyle/stretch_top.png")
210
+ }
211
+ .button_shrink_bottom {
212
+ width: 34px;
213
+ height: 34px;
214
+ border: solid 1px #6aa6e2;
215
+ background-size: 100%;
216
+ background-image: url("../../../../static/newStyle/stretch_bottom.png")
217
+ }
218
+ </style>
@@ -0,0 +1,94 @@
1
+ <template>
2
+ <div>
3
+ <tabset v-ref:tabs :close="false" nav-style="tabs nav-apply-tab" :active.sync="active">
4
+ <tab header='任务列表'>
5
+ <app-exploration-user v-ref:exploration :defname="defname" :f_lat="f_lat" :f_lng="f_lng"></app-exploration-user>
6
+ </tab>
7
+ </tabset>
8
+ </div>
9
+ </template>
10
+ <script>
11
+ import {HttpResetClass, PagedList} from 'vue-client'
12
+ import Vue from 'vue'
13
+
14
+ export default {
15
+ title: '出具设计图纸',
16
+ data () {
17
+ return {
18
+ labelmarksarray: [],
19
+ tasknumber: 0,
20
+ active: 0,
21
+ f_lat: null,
22
+ f_lng: null,
23
+ defname: '设计出图'
24
+ }
25
+ },
26
+ ready () {
27
+ this.getApplyTaskDot()
28
+ },
29
+ methods: {
30
+ diyspotmouseclick (data) {
31
+ this.f_lat = data.f_lat
32
+ this.f_lng = data.f_lng
33
+
34
+ this.active = 1
35
+ },
36
+ async getApplyTaskDot () {
37
+ this.tasknumber = 0
38
+ let http = new HttpResetClass()
39
+ let data = {
40
+ defname: this.defname,
41
+ // userid: Vue.user.id
42
+ userid:this.$login.f.id
43
+ }
44
+ let res = await http.load(
45
+ 'POST',
46
+ `${this.$androidUtil.getProxyUrl()}/rs/sql/getApplyTaskDot`,
47
+ {data: data},
48
+ {
49
+ resolveMsg: null,
50
+ rejectMsg: '任务点获取失败!!!'
51
+ })
52
+ this.labelmarksarray = res.data.map(item => {
53
+ this.tasknumber += item.count
54
+ return {
55
+ data: {
56
+ data: item,
57
+ content: `<p>任务数:${item.count}</p>`
58
+ },
59
+ position: [item.f_lng, item.f_lat],
60
+ isclearmarker: false,
61
+ islabel: false
62
+ }
63
+ })
64
+ }
65
+ },
66
+ events: {
67
+ 'refreshDot' () {
68
+ this.getApplyTaskDot()
69
+ }
70
+ },
71
+ watch: {
72
+ },
73
+ computed: {
74
+ }
75
+ }
76
+ </script>
77
+ <style scoped>
78
+ .tip{
79
+ position: absolute;
80
+ z-index: 1000;
81
+ color: red;
82
+ font-size: 24px;
83
+ right: 30px;
84
+ padding-top: 20px;
85
+ }
86
+ </style>
87
+ <style lang="less">
88
+ .nav-apply-tab {
89
+ li {
90
+ width: 100%;
91
+ text-align: center;
92
+ }
93
+ }
94
+ </style>
@@ -0,0 +1,24 @@
1
+ <template>
2
+ <div class="col-sm-12 col-xs-12 p-10">
3
+ 提交成功
4
+ </div>
5
+ </template>
6
+
7
+ <script>
8
+ export default {
9
+ title: '结果',
10
+ props: ['selectdata'],
11
+ data () {
12
+ return {
13
+ }
14
+ },
15
+ ready () {
16
+ },
17
+ watch: {
18
+ }
19
+ }
20
+ </script>
21
+
22
+ <style scoped>
23
+
24
+ </style>