apply-clients 7.1.35 → 7.1.36-yuchuan-1

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 (514) hide show
  1. package/.eslintrc.js +5 -1
  2. package/android.html +9 -0
  3. package/build/css-loaders.js +34 -0
  4. package/build/dev-client.js +8 -0
  5. package/build/dev-server.js +172 -0
  6. package/build/example-server.js +80 -0
  7. package/build/release.sh +28 -0
  8. package/build/utils.js +80 -0
  9. package/build/webpack.base.conf.js +123 -0
  10. package/build/webpack.baseandroid.conf.js +123 -0
  11. package/build/webpack.dev.conf.js +43 -0
  12. package/build/webpack.devandroid.conf.js +34 -0
  13. package/build/webpack.example.conf.js +49 -0
  14. package/build/webpack.prod.conf.js +60 -0
  15. package/build/webpack.prodandroid.conf.js +60 -0
  16. package/dist-android.7z +0 -0
  17. package/dist.7z +0 -0
  18. package/index.html +10 -1
  19. package/package.json +14 -8
  20. package/src/AndroidApp.vue +21 -14
  21. package/src/App.vue +4 -6
  22. package/src/android-bootstrap/less/.csscomb.json +304 -0
  23. package/src/android-bootstrap/less/.csslintrc +19 -0
  24. package/src/android-bootstrap/less/alerts.less +73 -0
  25. package/src/android-bootstrap/less/badges.less +66 -0
  26. package/src/android-bootstrap/less/bootstrap.less +56 -0
  27. package/src/android-bootstrap/less/breadcrumbs.less +26 -0
  28. package/src/android-bootstrap/less/button-groups.less +247 -0
  29. package/src/android-bootstrap/less/buttons.less +173 -0
  30. package/src/android-bootstrap/less/carousel.less +269 -0
  31. package/src/android-bootstrap/less/close.less +34 -0
  32. package/src/android-bootstrap/less/code.less +69 -0
  33. package/src/android-bootstrap/less/component-animations.less +33 -0
  34. package/src/android-bootstrap/less/dropdowns.less +216 -0
  35. package/src/android-bootstrap/less/forms.less +626 -0
  36. package/src/android-bootstrap/less/glyphicons.less +305 -0
  37. package/src/android-bootstrap/less/grid.less +84 -0
  38. package/src/android-bootstrap/less/input-groups.less +167 -0
  39. package/src/android-bootstrap/less/jumbotron.less +52 -0
  40. package/src/android-bootstrap/less/labels.less +64 -0
  41. package/src/android-bootstrap/less/list-group.less +141 -0
  42. package/src/android-bootstrap/less/media.less +66 -0
  43. package/src/android-bootstrap/less/mixins/alerts.less +14 -0
  44. package/src/android-bootstrap/less/mixins/background-variant.less +9 -0
  45. package/src/android-bootstrap/less/mixins/border-radius.less +18 -0
  46. package/src/android-bootstrap/less/mixins/buttons.less +69 -0
  47. package/src/android-bootstrap/less/mixins/center-block.less +7 -0
  48. package/src/android-bootstrap/less/mixins/clearfix.less +22 -0
  49. package/src/android-bootstrap/less/mixins/forms.less +90 -0
  50. package/src/android-bootstrap/less/mixins/gradients.less +59 -0
  51. package/src/android-bootstrap/less/mixins/grid-framework.less +92 -0
  52. package/src/android-bootstrap/less/mixins/grid.less +122 -0
  53. package/src/android-bootstrap/less/mixins/hide-text.less +21 -0
  54. package/src/android-bootstrap/less/mixins/image.less +33 -0
  55. package/src/android-bootstrap/less/mixins/labels.less +12 -0
  56. package/src/android-bootstrap/less/mixins/list-group.less +30 -0
  57. package/src/android-bootstrap/less/mixins/nav-divider.less +10 -0
  58. package/src/android-bootstrap/less/mixins/nav-vertical-align.less +9 -0
  59. package/src/android-bootstrap/less/mixins/opacity.less +8 -0
  60. package/src/android-bootstrap/less/mixins/pagination.less +24 -0
  61. package/src/android-bootstrap/less/mixins/panels.less +24 -0
  62. package/src/android-bootstrap/less/mixins/progress-bar.less +10 -0
  63. package/src/android-bootstrap/less/mixins/reset-filter.less +8 -0
  64. package/src/android-bootstrap/less/mixins/reset-text.less +18 -0
  65. package/src/android-bootstrap/less/mixins/resize.less +6 -0
  66. package/src/android-bootstrap/less/mixins/responsive-visibility.less +15 -0
  67. package/src/android-bootstrap/less/mixins/size.less +10 -0
  68. package/src/android-bootstrap/less/mixins/tab-focus.less +9 -0
  69. package/src/android-bootstrap/less/mixins/table-row.less +44 -0
  70. package/src/android-bootstrap/less/mixins/text-emphasis.less +9 -0
  71. package/src/android-bootstrap/less/mixins/text-overflow.less +8 -0
  72. package/src/android-bootstrap/less/mixins/vendor-prefixes.less +227 -0
  73. package/src/android-bootstrap/less/mixins.less +40 -0
  74. package/src/android-bootstrap/less/modals.less +151 -0
  75. package/src/android-bootstrap/less/navbar.less +660 -0
  76. package/src/android-bootstrap/less/navs.less +302 -0
  77. package/src/android-bootstrap/less/normalize.less +424 -0
  78. package/src/android-bootstrap/less/pager.less +76 -0
  79. package/src/android-bootstrap/less/pagination.less +89 -0
  80. package/src/android-bootstrap/less/panels.less +274 -0
  81. package/src/android-bootstrap/less/popovers.less +131 -0
  82. package/src/android-bootstrap/less/print.less +101 -0
  83. package/src/android-bootstrap/less/progress-bars.less +87 -0
  84. package/src/android-bootstrap/less/responsive-embed.less +35 -0
  85. package/src/android-bootstrap/less/responsive-utilities.less +194 -0
  86. package/src/android-bootstrap/less/scaffolding.less +161 -0
  87. package/src/android-bootstrap/less/tables.less +262 -0
  88. package/src/android-bootstrap/less/theme.less +291 -0
  89. package/src/android-bootstrap/less/thumbnails.less +36 -0
  90. package/src/android-bootstrap/less/tooltip.less +102 -0
  91. package/src/android-bootstrap/less/type.less +303 -0
  92. package/src/android-bootstrap/less/utilities.less +55 -0
  93. package/src/android-bootstrap/less/variables.less +896 -0
  94. package/src/android-bootstrap/less/wells.less +29 -0
  95. package/src/android.js +7 -4
  96. package/src/apply.js +83 -16
  97. package/src/applyAndroid.js +70 -28
  98. package/src/assets/marker-default.png +0 -0
  99. package/src/assets/myLocationIcon.png +0 -0
  100. package/src/assets//345/210/240/351/231/244.png +0 -0
  101. package/src/components/android/AppOnetomany.vue +301 -0
  102. package/src/components/android/AppServiceView.vue +603 -0
  103. package/src/components/android/AppSign.vue +231 -0
  104. package/src/components/android/AppTakePic.vue +142 -0
  105. package/src/components/android/AppUpload.vue +260 -0
  106. package/src/components/android/Ignition/VentilationIgnition.vue +408 -0
  107. package/src/components/android/Ignition/VentilationIgnitionHandle.vue +455 -0
  108. package/src/components/android/Process/AppExplorationUser.vue +454 -0
  109. package/src/components/android/Process/AppServiceControl.vue +1397 -0
  110. package/src/components/android/Process/Processes/AppChaiChuInfo.vue +546 -0
  111. package/src/components/android/Process/Processes/AppDevicesManagement.vue +339 -0
  112. package/src/components/android/Process/Processes/AppInstallationDetails.vue +867 -0
  113. package/src/components/android/Process/Processes/SurveyUserSign.vue +65 -0
  114. package/src/components/android/Process/Processes/newAppDevicesManagement.vue +344 -0
  115. package/src/components/android/Process/Processes/newAppInstallationDetails.vue +669 -0
  116. package/src/components/android/Sign/AppSignTask.vue +183 -0
  117. package/src/components/android/Sign/SignProcess.vue +103 -0
  118. package/src/components/android/Supervisory/AppProcessSupervisory.vue +334 -0
  119. package/src/components/android/Supervisory/AppSupervisoryCart.vue +128 -0
  120. package/src/components/android/Task/Build/BuildTsak.vue +114 -0
  121. package/src/components/android/Task/BuildIgnition/BuildIgnition.vue +114 -0
  122. package/src/components/android/Task/RepairFromSend/RepairFrom.vue +124 -0
  123. package/src/components/android/Task/RepairFromSend/RepairSend.vue +124 -0
  124. package/src/components/android/Task/ShenHe/BuZhangShenHe.vue +64 -0
  125. package/src/components/android/Task/ShenHe/JingLiShenHe.vue +64 -0
  126. package/src/components/android/Task/ShiGongXinXi/AppShowBuildUser.vue +427 -0
  127. package/src/components/android/Task/ShiGongXinXi/ShowBuild.vue +95 -0
  128. package/src/components/android/Task/Survey/SurveyTsak.vue +141 -0
  129. package/src/components/android/Task/UpBuild/UpBuildDui.vue +95 -0
  130. package/src/components/android/Task/UpBuild/UpBuildTsak.vue +95 -0
  131. package/src/components/android/Task/UpBuild/UpJianLi.vue +95 -0
  132. package/src/components/android/TaskGraph.vue +130 -0
  133. package/src/components/android/newPackage/customerServiceManager.vue +218 -0
  134. package/src/components/android/newPackage/designDrawings.vue +94 -0
  135. package/src/components/android/newPackage/detailedData.vue +24 -0
  136. package/src/components/android/newPackage/projectPrice.vue +218 -0
  137. package/src/components/image/dwg.png +0 -0
  138. package/src/components/image/dxf.png +0 -0
  139. package/src/components/product/ApplyCharge/ApplyChargeList.vue +568 -73
  140. package/src/components/product/ApplyCharge/ApplyChargeSearch.vue +2 -2
  141. package/src/components/product/ApplyGaiXianCharge/ApplyGaiXianChargeList.vue +198 -0
  142. package/src/components/product/ApplyGaiXianCharge/ApplyGaiXianChargeSearch.vue +30 -0
  143. package/src/components/product/ApplyGuanXian/GuanXianCaiLiao.vue +235 -0
  144. package/src/components/product/ApplyGuanXian/GuanXianExplorationSelect.vue +323 -0
  145. package/src/components/product/ApplyGuanXian/GuanXianExplorationUser.vue +144 -0
  146. package/src/components/product/ApplyGuanXian/GuanXianSupervisoryhCart.vue +119 -0
  147. package/src/components/product/ApplyGuanXian/TabButton.vue +157 -0
  148. package/src/components/product/ApplyGuanXian/Tabs.vue +67 -0
  149. package/src/components/product/ApplyMap/ApplyDragaboutList.vue +223 -0
  150. package/src/components/product/ApplyMap/ApplyInputSearch.vue +212 -0
  151. package/src/components/product/ApplyMap/ApplyMapCom.vue +82 -0
  152. package/src/components/product/ApplyMap/ApplyMapLocation.vue +850 -0
  153. package/src/components/product/ChongZheng/ApplyChongZhengList.vue +414 -0
  154. package/src/components/product/ChongZheng/ApplyChongZhengSearch.vue +30 -0
  155. package/src/components/product/Function/InstallFunction.vue +56 -70
  156. package/src/components/product/Function/InstallInfoSelect.vue +193 -105
  157. package/src/components/product/Function/Service/FunctionServiceControl.vue +475 -245
  158. package/src/components/product/Ignition/IgnitionDispatch.vue +92 -0
  159. package/src/components/product/Ignition/IgnitionList.vue +236 -0
  160. package/src/components/product/Ignition/IgnitionListManage.vue +403 -0
  161. package/src/components/product/Ignition/IgnitionRecord.vue +357 -0
  162. package/src/components/product/List/ShowDevices.vue +279 -0
  163. package/src/components/product/Onetomany.vue +377 -0
  164. package/src/components/product/Print/BuildOrder/buildOrderList.vue +445 -0
  165. package/src/components/product/Print/BuildOrder/printBuildOrder.vue +252 -0
  166. package/src/components/product/Print/BuildOrder/printGaiXianOrder.vue +232 -0
  167. package/src/components/product/Print/OrderPrint/GaiXianOrder.vue +281 -0
  168. package/src/components/product/Print/OrderPrint/printChaiChuOrder.vue +260 -0
  169. package/src/components/product/Print/img/R-C.jpg +0 -0
  170. package/src/components/product/Process/ExplorationSelect.vue +580 -347
  171. package/src/components/product/Process/ExplorationUser.vue +118 -98
  172. package/src/components/product/Process/NewExplorationUser.vue +184 -0
  173. package/src/components/product/Process/Processes/ApplyChaiChuInfo.vue +587 -0
  174. package/src/components/product/Process/Processes/ExhibitionPicture.vue +27 -0
  175. package/src/components/product/Process/Processes/InstallationDetails.vue +845 -276
  176. package/src/components/product/Process/Processes/Print/img/10101.png +0 -0
  177. package/src/components/product/Process/Processes/Print/img/1010109.png +0 -0
  178. package/src/components/product/Process/Processes/Print/img/1010110.png +0 -0
  179. package/src/components/product/Process/Processes/Print/img/1010111.png +0 -0
  180. package/src/components/product/Process/Processes/Print/img/1010112.png +0 -0
  181. package/src/components/product/Process/Processes/Print/printCharge.vue +250 -0
  182. package/src/components/product/Process/Processes/Print/printPaymentApproval.vue +224 -0
  183. package/src/components/product/Process/Processes/Print/printPaymentSubject.vue +170 -0
  184. package/src/components/product/Process/Processes/addressAndUserinfoManagement.vue +59 -113
  185. package/src/components/product/Process/Processes/chargeManagement.vue +492 -350
  186. package/src/components/product/Process/Processes/devicesManagement.vue +374 -0
  187. package/src/components/product/Process/Processes/newDevicesManagement.vue +379 -0
  188. package/src/components/product/Process/Processes/newInstallationDetails.vue +718 -0
  189. package/src/components/product/Process/Processes/satisfactionShow.vue +202 -0
  190. package/src/components/product/Process/Processes/selectApply.vue +250 -0
  191. package/src/components/product/Process/Processes/selectChaiChuUserinfo.vue +230 -0
  192. package/src/components/product/Process/Processes/selectOldUserinfo.vue +241 -0
  193. package/src/components/product/Process/Processes/selectUserinfo.vue +234 -0
  194. package/src/components/product/Process/Processes/supplementalAgreement.vue +182 -181
  195. package/src/components/product/Process/Service/ServiceControl.vue +2155 -856
  196. package/src/components/product/Process/Service/ShowBackReason.vue +33 -0
  197. package/src/components/product/Report/ReportItems.vue +79 -0
  198. package/src/components/product/Report/apply-stair-anzhuang.vue +361 -0
  199. package/src/components/product/Report/apply-stair-kaifa.vue +138 -0
  200. package/src/components/product/Report/apply-stair-tongqi.vue +137 -0
  201. package/src/components/product/Report/apply-stair-wtongqi.vue +138 -0
  202. package/src/components/product/ServiceView.vue +557 -680
  203. package/src/components/product/Stop/StopApply.vue +105 -0
  204. package/src/components/product/Stop/StopApplyList.vue +224 -0
  205. package/src/components/product/Supervisory/ExportExcel.vue +360 -0
  206. package/src/components/product/Supervisory/NewSupervisoryhCart.vue +175 -0
  207. package/src/components/product/Supervisory/Service/SupervisoryServiceControl.vue +454 -73
  208. package/src/components/product/Supervisory/SupervisoryControl.vue +28 -35
  209. package/src/components/product/Supervisory/SupervisoryList.vue +536 -208
  210. package/src/components/product/Supervisory/SupervisoryhCart.vue +52 -36
  211. package/src/components/product/VueUtils/ApplyUpload.vue +70 -47
  212. package/src/components/product/VueUtils/HighMeter.vue +208 -0
  213. package/src/expandcssAndroid.less +1034 -0
  214. package/src/main.js +5 -1
  215. package/src/public/history/HistoryApplyList.vue +108 -0
  216. package/src/public/history/PublicHistoryApply.vue +39 -0
  217. package/src/public/history/PublicSupervisoryhCart.vue +72 -0
  218. package/src/public/order/PublicOrderApply.vue +387 -0
  219. package/static/images/lefticon/yingyechaxun.png +0 -0
  220. package/static/images/lefticon/zongheyewu.png +0 -0
  221. package/static/images/lefticon//345/220/210/345/220/214/347/256/241/347/220/206.png +0 -0
  222. package/{dist-android/static/denglu.png → static/images/lefticonNew//345/215/241/346/234/215/345/212/241/347/256/241/347/220/206.png} +0 -0
  223. package/static/images/lefticonNew//345/220/210/345/220/214/347/256/241/347/220/206.png +0 -0
  224. package/static/images/lefticonNew//345/221/274/345/217/253/347/263/273/347/273/237.png +0 -0
  225. package/static/images/lefticonNew//345/224/256/346/260/224/346/224/266/350/264/271.png +0 -0
  226. package/static/images/lefticonNew//345/233/276/345/261/2023/346/213/267/350/264/2354.png +0 -0
  227. package/static/images/lefticonNew//345/233/276/345/261/202577.png +0 -0
  228. package/{dist-android/static/psicon.png → static/images/lefticonNew//345/233/276/345/261/2028/346/213/267/350/264/23513.png} +0 -0
  229. package/static/images/lefticonNew//345/256/211/346/243/200/346/237/245/347/234/213.png +0 -0
  230. package/static/images/lefticonNew//345/256/211/346/243/200/350/256/241/345/210/222.png +0 -0
  231. package/static/images/lefticonNew//345/276/256/344/277/241/346/234/215/345/212/241.png +0 -0
  232. package/static/images/lefticonNew//346/212/245/345/273/272/347/263/273/347/273/237.png +0 -0
  233. package/static/images/lefticonNew//346/212/245/350/241/250/346/237/245/350/257/242.png +0 -0
  234. package/static/images/lefticonNew//346/227/245/345/270/270/347/256/241/347/220/206.png +0 -0
  235. package/static/images/lefticonNew//346/234/272/350/241/250/347/256/241/347/220/206.png +0 -0
  236. package/static/images/lefticonNew//346/237/245/350/257/242/345/210/227/350/241/250.png +0 -0
  237. package/static/images/lefticonNew//346/241/243/346/241/210/347/256/241/347/220/206.png +0 -0
  238. package/static/images/lefticonNew//347/211/251/350/201/224/347/275/221/350/241/250.png +0 -0
  239. package/static/images/lefticonNew//347/263/273/347/273/237/347/256/241/347/220/206.png +0 -0
  240. package/static/images/lefticonNew//347/263/273/347/273/237/350/256/276/347/275/256.png +0 -0
  241. package/static/images/lefticonNew//347/273/217/350/220/245/347/256/241/346/216/247.png +0 -0
  242. package/static/images/lefticonNew//347/273/274/345/220/210/344/270/232/345/212/241.png +0 -0
  243. package/static/images/lefticonNew//347/273/274/345/220/210/346/237/245/350/257/242.png +0 -0
  244. package/static/images/lefticonNew//350/217/234/345/215/225/344/274/270/347/274/251.png +0 -0
  245. package/static/images/lefticonNew//351/200/200/345/207/272/347/263/273/347/273/237.png +0 -0
  246. package/yarn-error.log +9976 -0
  247. package/dist-android/index.html +0 -3
  248. package/dist-android/static/.gitkeep +0 -0
  249. package/dist-android/static/0.js +0 -2
  250. package/dist-android/static/0.js.map +0 -1
  251. package/dist-android/static/1.js +0 -2
  252. package/dist-android/static/1.js.map +0 -1
  253. package/dist-android/static/10.js +0 -2
  254. package/dist-android/static/10.js.map +0 -1
  255. package/dist-android/static/100.js +0 -2
  256. package/dist-android/static/100.js.map +0 -1
  257. package/dist-android/static/11.js +0 -2
  258. package/dist-android/static/11.js.map +0 -1
  259. package/dist-android/static/12.js +0 -2
  260. package/dist-android/static/12.js.map +0 -1
  261. package/dist-android/static/13.js +0 -2
  262. package/dist-android/static/13.js.map +0 -1
  263. package/dist-android/static/14.js +0 -2
  264. package/dist-android/static/14.js.map +0 -1
  265. package/dist-android/static/15.js +0 -2
  266. package/dist-android/static/15.js.map +0 -1
  267. package/dist-android/static/16.js +0 -2
  268. package/dist-android/static/16.js.map +0 -1
  269. package/dist-android/static/17.js +0 -2
  270. package/dist-android/static/17.js.map +0 -1
  271. package/dist-android/static/18.js +0 -2
  272. package/dist-android/static/18.js.map +0 -1
  273. package/dist-android/static/19.js +0 -2
  274. package/dist-android/static/19.js.map +0 -1
  275. package/dist-android/static/2.js +0 -2
  276. package/dist-android/static/2.js.map +0 -1
  277. package/dist-android/static/20.js +0 -2
  278. package/dist-android/static/20.js.map +0 -1
  279. package/dist-android/static/21.js +0 -2
  280. package/dist-android/static/21.js.map +0 -1
  281. package/dist-android/static/22.js +0 -2
  282. package/dist-android/static/22.js.map +0 -1
  283. package/dist-android/static/23.js +0 -2
  284. package/dist-android/static/23.js.map +0 -1
  285. package/dist-android/static/24.js +0 -2
  286. package/dist-android/static/24.js.map +0 -1
  287. package/dist-android/static/25.js +0 -2
  288. package/dist-android/static/25.js.map +0 -1
  289. package/dist-android/static/26.js +0 -2
  290. package/dist-android/static/26.js.map +0 -1
  291. package/dist-android/static/27.js +0 -2
  292. package/dist-android/static/27.js.map +0 -1
  293. package/dist-android/static/28.js +0 -2
  294. package/dist-android/static/28.js.map +0 -1
  295. package/dist-android/static/29.js +0 -2
  296. package/dist-android/static/29.js.map +0 -1
  297. package/dist-android/static/3.js +0 -2
  298. package/dist-android/static/3.js.map +0 -1
  299. package/dist-android/static/30.js +0 -2
  300. package/dist-android/static/30.js.map +0 -1
  301. package/dist-android/static/31.js +0 -2
  302. package/dist-android/static/31.js.map +0 -1
  303. package/dist-android/static/32.js +0 -2
  304. package/dist-android/static/32.js.map +0 -1
  305. package/dist-android/static/33.js +0 -2
  306. package/dist-android/static/33.js.map +0 -1
  307. package/dist-android/static/34.js +0 -2
  308. package/dist-android/static/34.js.map +0 -1
  309. package/dist-android/static/35.js +0 -2
  310. package/dist-android/static/35.js.map +0 -1
  311. package/dist-android/static/36.js +0 -2
  312. package/dist-android/static/36.js.map +0 -1
  313. package/dist-android/static/37.js +0 -2
  314. package/dist-android/static/37.js.map +0 -1
  315. package/dist-android/static/38.js +0 -2
  316. package/dist-android/static/38.js.map +0 -1
  317. package/dist-android/static/39.js +0 -2
  318. package/dist-android/static/39.js.map +0 -1
  319. package/dist-android/static/4.js +0 -2
  320. package/dist-android/static/4.js.map +0 -1
  321. package/dist-android/static/40.js +0 -2
  322. package/dist-android/static/40.js.map +0 -1
  323. package/dist-android/static/41.js +0 -2
  324. package/dist-android/static/41.js.map +0 -1
  325. package/dist-android/static/42.js +0 -2
  326. package/dist-android/static/42.js.map +0 -1
  327. package/dist-android/static/43.js +0 -2
  328. package/dist-android/static/43.js.map +0 -1
  329. package/dist-android/static/44.js +0 -2
  330. package/dist-android/static/44.js.map +0 -1
  331. package/dist-android/static/45.js +0 -2
  332. package/dist-android/static/45.js.map +0 -1
  333. package/dist-android/static/46.js +0 -2
  334. package/dist-android/static/46.js.map +0 -1
  335. package/dist-android/static/47.js +0 -2
  336. package/dist-android/static/47.js.map +0 -1
  337. package/dist-android/static/48.js +0 -2
  338. package/dist-android/static/48.js.map +0 -1
  339. package/dist-android/static/49.js +0 -2
  340. package/dist-android/static/49.js.map +0 -1
  341. package/dist-android/static/5.js +0 -2
  342. package/dist-android/static/5.js.map +0 -1
  343. package/dist-android/static/50.js +0 -2
  344. package/dist-android/static/50.js.map +0 -1
  345. package/dist-android/static/51.js +0 -2
  346. package/dist-android/static/51.js.map +0 -1
  347. package/dist-android/static/52.js +0 -2
  348. package/dist-android/static/52.js.map +0 -1
  349. package/dist-android/static/53.js +0 -2
  350. package/dist-android/static/53.js.map +0 -1
  351. package/dist-android/static/54.js +0 -2
  352. package/dist-android/static/54.js.map +0 -1
  353. package/dist-android/static/55.js +0 -2
  354. package/dist-android/static/55.js.map +0 -1
  355. package/dist-android/static/56.js +0 -2
  356. package/dist-android/static/56.js.map +0 -1
  357. package/dist-android/static/57.js +0 -2
  358. package/dist-android/static/57.js.map +0 -1
  359. package/dist-android/static/58.js +0 -2
  360. package/dist-android/static/58.js.map +0 -1
  361. package/dist-android/static/59.js +0 -2
  362. package/dist-android/static/59.js.map +0 -1
  363. package/dist-android/static/6.js +0 -2
  364. package/dist-android/static/6.js.map +0 -1
  365. package/dist-android/static/60.js +0 -2
  366. package/dist-android/static/60.js.map +0 -1
  367. package/dist-android/static/61.js +0 -2
  368. package/dist-android/static/61.js.map +0 -1
  369. package/dist-android/static/62.js +0 -2
  370. package/dist-android/static/62.js.map +0 -1
  371. package/dist-android/static/63.js +0 -2
  372. package/dist-android/static/63.js.map +0 -1
  373. package/dist-android/static/64.js +0 -2
  374. package/dist-android/static/64.js.map +0 -1
  375. package/dist-android/static/65.js +0 -2
  376. package/dist-android/static/65.js.map +0 -1
  377. package/dist-android/static/66.js +0 -2
  378. package/dist-android/static/66.js.map +0 -1
  379. package/dist-android/static/67.js +0 -2
  380. package/dist-android/static/67.js.map +0 -1
  381. package/dist-android/static/68.js +0 -2
  382. package/dist-android/static/68.js.map +0 -1
  383. package/dist-android/static/69.js +0 -2
  384. package/dist-android/static/69.js.map +0 -1
  385. package/dist-android/static/7.js +0 -6
  386. package/dist-android/static/7.js.map +0 -1
  387. package/dist-android/static/70.js +0 -2
  388. package/dist-android/static/70.js.map +0 -1
  389. package/dist-android/static/71.js +0 -2
  390. package/dist-android/static/71.js.map +0 -1
  391. package/dist-android/static/72.js +0 -2
  392. package/dist-android/static/72.js.map +0 -1
  393. package/dist-android/static/73.js +0 -2
  394. package/dist-android/static/73.js.map +0 -1
  395. package/dist-android/static/74.js +0 -2
  396. package/dist-android/static/74.js.map +0 -1
  397. package/dist-android/static/75.js +0 -2
  398. package/dist-android/static/75.js.map +0 -1
  399. package/dist-android/static/76.js +0 -2
  400. package/dist-android/static/76.js.map +0 -1
  401. package/dist-android/static/77.js +0 -2
  402. package/dist-android/static/77.js.map +0 -1
  403. package/dist-android/static/78.js +0 -2
  404. package/dist-android/static/78.js.map +0 -1
  405. package/dist-android/static/79.js +0 -2
  406. package/dist-android/static/79.js.map +0 -1
  407. package/dist-android/static/8.js +0 -2
  408. package/dist-android/static/8.js.map +0 -1
  409. package/dist-android/static/80.js +0 -2
  410. package/dist-android/static/80.js.map +0 -1
  411. package/dist-android/static/81.js +0 -2
  412. package/dist-android/static/81.js.map +0 -1
  413. package/dist-android/static/82.js +0 -2
  414. package/dist-android/static/82.js.map +0 -1
  415. package/dist-android/static/83.js +0 -2
  416. package/dist-android/static/83.js.map +0 -1
  417. package/dist-android/static/84.js +0 -2
  418. package/dist-android/static/84.js.map +0 -1
  419. package/dist-android/static/85.js +0 -2
  420. package/dist-android/static/85.js.map +0 -1
  421. package/dist-android/static/86.js +0 -2
  422. package/dist-android/static/86.js.map +0 -1
  423. package/dist-android/static/87.js +0 -2
  424. package/dist-android/static/87.js.map +0 -1
  425. package/dist-android/static/88.js +0 -2
  426. package/dist-android/static/88.js.map +0 -1
  427. package/dist-android/static/89.js +0 -2
  428. package/dist-android/static/89.js.map +0 -1
  429. package/dist-android/static/9.js +0 -3
  430. package/dist-android/static/9.js.map +0 -1
  431. package/dist-android/static/90.js +0 -2
  432. package/dist-android/static/90.js.map +0 -1
  433. package/dist-android/static/91.js +0 -2
  434. package/dist-android/static/91.js.map +0 -1
  435. package/dist-android/static/92.js +0 -2
  436. package/dist-android/static/92.js.map +0 -1
  437. package/dist-android/static/93.js +0 -2
  438. package/dist-android/static/93.js.map +0 -1
  439. package/dist-android/static/94.js +0 -2
  440. package/dist-android/static/94.js.map +0 -1
  441. package/dist-android/static/95.js +0 -2
  442. package/dist-android/static/95.js.map +0 -1
  443. package/dist-android/static/96.js +0 -2
  444. package/dist-android/static/96.js.map +0 -1
  445. package/dist-android/static/97.js +0 -2
  446. package/dist-android/static/97.js.map +0 -1
  447. package/dist-android/static/98.js +0 -2
  448. package/dist-android/static/98.js.map +0 -1
  449. package/dist-android/static/99.js +0 -2
  450. package/dist-android/static/99.js.map +0 -1
  451. package/dist-android/static/app.css +0 -2
  452. package/dist-android/static/app.css.map +0 -1
  453. package/dist-android/static/app.js +0 -80
  454. package/dist-android/static/app.js.map +0 -1
  455. package/dist-android/static/batchleft.png +0 -0
  456. package/dist-android/static/batchright.png +0 -0
  457. package/dist-android/static/bluemainbg.jpg +0 -0
  458. package/dist-android/static/config.json +0 -7
  459. package/dist-android/static/huangtengbiaozhi.png +0 -0
  460. package/dist-android/static/jingyin.jpg +0 -0
  461. package/dist-android/static/login_bg.jpg +0 -0
  462. package/dist-android/static/login_title.png +0 -0
  463. package/dist-android/static/login_title1.png +0 -0
  464. package/dist-android/static/loginbg.jpg +0 -0
  465. package/dist-android/static/loginlogo.png +0 -0
  466. package/dist-android/static/main_logo.png +0 -0
  467. package/dist-android/static/mainbg.jpg +0 -0
  468. package/dist-android/static/menulogo.png +0 -0
  469. package/dist-android/static/newmainbg.jpg +0 -0
  470. package/dist-android/static/singleleft.png +0 -0
  471. package/dist-android/static/singleright.png +0 -0
  472. package/dist-android/static/treeopen.png +0 -0
  473. package/dist-android/static/treeout.png +0 -0
  474. package/dist-android/static/treeset.png +0 -0
  475. package/dist-android/static/usericon.png +0 -0
  476. package/dist-android/static/workflow_apply.json +0 -766
  477. package/dist-android/static/xinxi.png +0 -0
  478. package/dist-android/static//344/277/256/346/224/271/345/257/206/347/240/201.png +0 -0
  479. 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
  480. package/dist-android/static//345/257/274/345/207/272/346/225/260/346/215/256.png +0 -0
  481. package/dist-android/static//346/270/205/347/251/272/346/225/260/346/215/256.png +0 -0
  482. package/src/components/app_apply/Acceptance.vue +0 -298
  483. package/src/components/app_apply/ApplyApp.vue +0 -91
  484. package/src/components/app_apply/ApplyDownList.vue +0 -166
  485. package/src/components/app_apply/ApplyInfo.vue +0 -56
  486. package/src/components/app_apply/ApplyListUpload.vue +0 -258
  487. package/src/components/app_apply/ApplyToDoList.vue +0 -165
  488. package/src/components/app_apply/ApplyUserInfo.vue +0 -56
  489. package/src/components/app_apply/FieldExploration.vue +0 -267
  490. package/src/components/app_apply/PlaceControler.vue +0 -258
  491. package/src/components/app_apply/ServiceControl.vue +0 -267
  492. package/src/components/app_apply/ServiceView.vue +0 -355
  493. package/src/components/app_apply/ToolsPage.vue +0 -51
  494. package/src/components/app_apply/Ventilation.vue +0 -199
  495. package/src/components/product/ApplyCharge/ApplyChargeReport.vue +0 -107
  496. package/src/components/product/Function/StopApplyCrrdList.vue +0 -176
  497. package/src/components/product/Function/functions/ApplyRecordCancel.vue +0 -102
  498. package/src/components/product/Function/functions/StopInstall.vue +0 -106
  499. package/src/components/product/Process/Processes/printCharge.vue +0 -126
  500. package/src/components/product/Process/ShowBackReason.vue +0 -32
  501. package/src/components/product/ReportForm/GasIgnitionSummary.vue +0 -352
  502. package/src/components/product/VueUtils/ToolsPage.vue +0 -51
  503. package/src/components/product/VueUtils/Tree.vue +0 -330
  504. /package/{dist-android/static → src/android-bootstrap/fonts}/glyphicons-halflings-regular.eot +0 -0
  505. /package/{dist-android/static → src/android-bootstrap/fonts}/glyphicons-halflings-regular.svg +0 -0
  506. /package/{dist-android/static → src/android-bootstrap/fonts}/glyphicons-halflings-regular.ttf +0 -0
  507. /package/{dist-android/static → src/android-bootstrap/fonts}/glyphicons-halflings-regular.woff +0 -0
  508. /package/{dist-android/static → src/android-bootstrap/fonts}/glyphicons-halflings-regular.woff2 +0 -0
  509. /package/static/images/lefticon/{/345/256/211/346/243/200/346/237/245/347/234/213.png" → anjianjihua.png} +0 -0
  510. /package/static/images/lefticon/{/346/241/243/346/241/210/347/256/241/347/220/206.png" → danganguanli.png} +0 -0
  511. /package/static/images/lefticon/{/345/224/256/346/260/224/346/224/266/350/264/271.png" → shouqishoufei.png} +0 -0
  512. /package/static/images/lefticon/{/347/211/251/350/201/224/347/275/221/350/241/250.png" → wulianwang.png} +0 -0
  513. /package/static/images/lefticon/{/347/263/273/347/273/237/347/256/241/347/220/206.png" → xitongguanli.png} +0 -0
  514. /package/static/images/lefticon/{/345/221/274/345/217/253/347/263/273/347/273/237.png" → yuyinkefu.png} +0 -0
@@ -1,208 +1,536 @@
1
- <template>
2
- <div class="col-sm-12">
3
- <criteria-paged :model="model" v-ref:cp>
4
- <criteria partial='criteria' @condition-changed='search' v-ref:cri>
5
- <div novalidate class="form-horizontal select-overspread container-fluid auto" partial>
6
- <div class="row">
7
- <div class="form-group col-sm-4">
8
- <label class="font_normal_body">项目名称/客户名称/联系人:</label>
9
- <input type="text" class="input_search" v-model="model.f_user_name"
10
- v-on:keyup.enter="search" condition=" (f_entry_name like '%{}%' or f_user_name like '%{}%' or f_contact like '%{}%') " placeholder='三选一输入'>
11
- </div>
12
- <div class="form-group col-sm-3">
13
- <label class="font_normal_body">报建编号:</label>
14
- <input type="text" class="input_search" placeholder='报建编号' v-model="model.f_apply_num"
15
- v-on:keyup.enter="search"
16
- condition="f_apply_num = '{}'">
17
- </div>
18
- <div class="form-group col-sm-3">
19
- <label class="font_normal_body">合同编号:</label>
20
- <input type="text" class="input_search" placeholder='合同编号' v-model="model.f_contract_number"
21
- v-on:keyup.enter="search"
22
- condition="f_contract_number = '{}'">
23
- </div>
24
- <div class="form-group col-sm-2 button-range">
25
- <button class="button_search button_spacing" @click="$parent.$parent.search()" v-el:cx>查询</button>
26
- <button class="button_clear button_spacing" @click="$parent.$parent.clear()">清空</button>
27
- <div
28
- :class="{'button_shrink_top':$parent.$parent.criteriaShow,'button_shrink_bottom':!$parent.$parent.criteriaShow}"
29
- @click="$parent.$parent.criteriaShow = !$parent.$parent.criteriaShow"
30
- class="button_spacing"
31
- style="float: right">
32
- </div>
33
- </div>
34
- </div>
35
- <div class="row" v-show="$parent.$parent.criteriaShow">
36
- <div class="form-group col-sm-3">
37
- <label class="font_normal_body">报建类型:</label>
38
- <v-select
39
- v-model="model.f_apply_type"
40
- placeholder='报建类型'
41
- condition="f_apply_type like '%{}%'"
42
- :value.sync="model.f_apply_type"
43
- :options='$parent.$parent.applytype'
44
- class="select select_list"
45
- :value-single="true"
46
- @change="$parent.$parent.applyTypeChange()"
47
- close-on-select ></v-select>
48
- </div>
49
- <div class="form-group col-sm-3">
50
- <label class="font_normal_body">办理环节:</label>
51
- <v-select
52
- v-model="model.defname"
53
- placeholder='办理环节'
54
- condition="defname = '{}'"
55
- :value.sync="model.defname"
56
- :options='$parent.$parent.defnames'
57
- class="select select_list"
58
- :value-single="true"
59
- close-on-select ></v-select>
60
- </div>
61
- <div class="form-group col-sm-3">
62
- <label class="font_normal_body">联系电话:</label>
63
- <input type="text" class="input_search" placeholder='联系电话' v-model="model.f_phone"
64
- v-on:keyup.enter="search"
65
- condition="f_phone like '%{}%'">
66
- </div>
67
- <div class="form-group col-sm-3">
68
- <label class="font_normal_body">用户地址:</label>
69
- <input type="text" class="input_search" placeholder='用户地址' v-model="model.f_address"
70
- v-on:keyup.enter="search"
71
- condition="f_address like '%{}%'">
72
- </div>
73
- <div class="form-group col-sm-3">
74
- <label for="startDate" class="font_normal_body">开始时间:</label>
75
- <datepicker id="startDate" placeholder="开始日期"
76
- style="width: 60%!important;"
77
- v-model="model.startDate"
78
- :value.sync="model.startDate"
79
- :format="'yyyy-MM-dd HH:mm:ss'"
80
- :show-reset-button="true"
81
- condition="f_apply_date >= '{}'">
82
- </datepicker>
83
- </div>
84
- <div class="form-group col-sm-3">
85
- <label for="endDate" class="font_normal_body">结束时间:</label>
86
- <datepicker id="endDate" placeholder="结束日期"
87
- style="width: 60%!important;"
88
- v-model="model.endDate"
89
- :value.sync="model.endDate"
90
- :format="'yyyy-MM-dd HH:mm:ss'"
91
- :show-reset-button="true"
92
- condition="f_apply_date <= '{}'">
93
- </datepicker>
94
- </div>
95
- </div>
96
- </div>
97
- </criteria>
98
- <data-grid v-if="$parent.showData" :model="model" partial='list' v-ref:grid class="list_area table_sy">
99
- <template partial='head'>
100
- <tr>
101
- <th style="white-space: nowrap;">序号</th>
102
- <th style="white-space: nowrap;">报建编号</th>
103
- <th style="white-space: nowrap;">项目名称/客户名称/联系人</th>
104
- <th style="white-space: nowrap;">合同编号</th>
105
- <th style="white-space: nowrap;">电话</th>
106
- <th style="white-space: nowrap;">地址</th>
107
- <th style="white-space: nowrap;">报建类型</th>
108
- <th style="white-space: nowrap;">办理环节</th>
109
- <th style="white-space: nowrap;">流程状态</th>
110
- <th style="white-space: nowrap;">报建日期</th>
111
- </tr>
112
- </template>
113
- <template partial='body'>
114
- <tr>
115
- <td @click="$parent.$parent.$parent.check(row)" style="text-align: center;">
116
- <nobr>{{$index+1}}</nobr>
117
- </td>
118
- <td @click="$parent.$parent.$parent.check(row)" style="text-align: center;">
119
- <nobr>{{row.f_apply_num}}</nobr>
120
- </td>
121
- <td @click="$parent.$parent.$parent.check(row)" style="text-align: center;">
122
- <nobr>{{row.f_entry_name}}/{{row.f_user_name}}/{{row.f_contact}}</nobr>
123
- </td>
124
- <td @click="$parent.$parent.$parent.check(row)" style="text-align: center;">
125
- <nobr>{{row.f_contract_number}}</nobr>
126
- </td>
127
- <td @click="$parent.$parent.$parent.check(row)" style="text-align: center;">
128
- <nobr>{{row.f_phone}}</nobr>
129
- </td>
130
- <td @click="$parent.$parent.$parent.check(row)" style="text-align: center;">
131
- <nobr>{{row.f_address}}</nobr>
132
- </td>
133
- <td @click="$parent.$parent.$parent.check(row)" style="text-align: center;">
134
- <nobr>{{row.f_apply_type}}</nobr>
135
- </td>
136
- <td @click="$parent.$parent.$parent.check(row)" style="text-align: center;">
137
- <nobr>{{row.defname}}</nobr>
138
- </td>
139
- <td @click="$parent.$parent.$parent.check(row)" style="text-align: center;">
140
- <nobr>{{row.f_sub_state}}</nobr>
141
- </td>
142
- <td @click="$parent.$parent.$parent.check(row)" style="text-align: center;">
143
- <nobr>{{row.f_apply_date}}</nobr>
144
- </td>
145
- </tr>
146
- </template>
147
- </data-grid>
148
- </criteria-paged>
149
- </div>
150
- </template>
151
- <script>
152
- import {PagedList} from 'vue-client'
153
- import {HttpResetClass} from 'vue-client'
154
- import {isEmpty} from '../../Util'
155
- export default {
156
- title: '勘探详情',
157
- props: ['showData'],
158
- data () {
159
- return {
160
- applytype: [{label: '全部', value: ''}, ...this.$appdata.getParam('报建类型')],
161
- model: new PagedList('rs/sql/supervisory', 20, {
162
- data: {
163
- id: `${this.$login.f.name}`,
164
- orgid: this.$login.f.f_orgids
165
- }
166
- }),
167
- defnames: [{label: '全部', value: ''}], // 流程节点
168
- criteriaShow: false
169
- }
170
- },
171
- ready () {
172
- // 调用查询
173
- this.search()
174
- },
175
- events: {
176
- },
177
- methods: {
178
- // 查询
179
- search () {
180
- this.$dispatch('search')
181
- },
182
- clear () {
183
- Object.keys(this.$refs.cp.$refs.cri.model).forEach((key) => {
184
- this.$refs.cp.$refs.cri.model[key] = []
185
- })
186
- },
187
- applyTypeChange () {
188
- if (!isEmpty(this.$refs.cp.$refs.cri.model.f_apply_type)) {
189
- let http = new HttpResetClass()
190
- http.load('POST', 'rs/logic/getDefnameByType', {
191
- f_apply_type: this.$refs.cp.$refs.cri.model.f_apply_type
192
- }, {resolveMsg: null, rejectMsg: null}).then((res) => {
193
- this.defnames = [{label: '全部', value: ''}, ...res.data]
194
- })
195
- } else {
196
- this.defnames = [{label: '全部', value: ''}]
197
- }
198
- },
199
- check (val) {
200
- this.$dispatch('apply', val)
201
- }
202
- },
203
- computed: {
204
- }
205
- }
206
- </script>
207
- <style scoped>
208
- </style>
1
+ <template>
2
+ <div class="col-sm-12">
3
+ <criteria-paged :model="model" v-ref:cp>
4
+ <criteria partial='criteria' @condition-changed='$parent.searchCondition' v-ref:cri>
5
+ <div novalidate class="form-horizontal select-overspread container-fluid auto" partial>
6
+ <div class="row">
7
+ <div class="form-group col-sm-2">
8
+ <label class="font_normal_body">工程编号:</label>
9
+ <input type="text" style="width:60%" class="input_search" placeholder='工程编号' v-model="model.f_apply_num"
10
+ v-on:keyup.enter="$parent.$parent.search()"
11
+ condition="f_apply_num like '%{}%'">
12
+ </div>
13
+ <div class="form-group col-sm-2">
14
+ <label class="font_normal_body">客户名称:</label>
15
+ <input type="text" style="width:60%" class="input_search" v-model="model.f_user_name"
16
+ v-on:keyup.enter="$parent.$parent.search()" condition="f_user_name like '%{}%'" placeholder='客户名称'>
17
+ </div>
18
+ <div class="form-group col-sm-2">
19
+ <label class="font_normal_body">联系电话:</label>
20
+ <input type="text" style="width:60%" class="input_search" placeholder='联系电话' v-model="model.f_phone"
21
+ v-on:keyup.enter="$parent.$parent.search()"
22
+ condition="f_phone like '%{}%'">
23
+ </div>
24
+ <div class="form-group col-sm-2">
25
+ <label class="font_normal_body">联&ensp;系&ensp;人:</label>
26
+ <input type="text" style="width:60%" class="input_search" v-model="model.f_contact"
27
+ v-on:keyup.enter="$parent.$parent.search()" condition="f_contact like '%{}%'" placeholder='联系人'>
28
+ </div>
29
+ <div class="form-group col-sm-2 button-range">
30
+ <button class="button_search button_spacing" @click="$parent.$parent.search()" v-el:cx>查询</button>
31
+ <button class="button_search button_spacing" @click="$parent.$parent.loadPage()">返回</button>
32
+ <button class="button_clear button_spacing" @click="$parent.$parent.clear()">清空</button>
33
+ <bj-export-excel :data="$parent.$parent.getCondition"
34
+ :field="$parent.$parent.getfield"
35
+ :civil="$parent.$parent.civil"
36
+ :uncivil="$parent.$parent.uncivil"
37
+ sqlurl="rs/logic/applyExportfile"
38
+ sql-name="supervisoryExcel"
39
+ template-name='报建记录信息导出'
40
+ :choose-col="true"></bj-export-excel>
41
+ <div
42
+ :class="{'button_shrink_top':$parent.$parent.criteriaShow,'button_shrink_bottom':!$parent.$parent.criteriaShow}"
43
+ @click="$parent.$parent.criteriaShow = !$parent.$parent.criteriaShow"
44
+ class="button_spacing"
45
+ style="float: right">
46
+ </div>
47
+ </div>
48
+ </div>
49
+ <div class="row" v-show="$parent.$parent.criteriaShow">
50
+ <div class="form-group col-sm-2">
51
+ <label class="font_normal_body">设计人员:</label>
52
+ <v-select class="select select_list"
53
+ placeholder='设计人员'
54
+ v-model="model.f_designer_people"
55
+ :value.sync="model.f_designer_people"
56
+ :options='$parent.$parent.designerPeoples'
57
+ :value-single="true"
58
+ close-on-select
59
+ condition="f_designer_people = '{}'">
60
+ </v-select>
61
+ </div>
62
+ <div class="form-group col-sm-2">
63
+ <label class="font_normal_body">合同编号:</label>
64
+ <input type="text" style="width:60%" class="input_search" placeholder='合同编号' v-model="model.f_contract_number"
65
+ v-on:keyup.enter="$parent.$parent.search()"
66
+ condition="f_contract_number like '%{}%'">
67
+ </div>
68
+ <div class="form-group col-sm-2">
69
+ <label class="font_normal_body">报建类型:</label>
70
+ <v-select
71
+ v-model="model.f_apply_type"
72
+ placeholder='报建类型'
73
+ condition="u.f_apply_type in {}"
74
+ :value.sync="model.f_apply_type"
75
+ :options='$parent.$parent.applytype'
76
+ class="select select_list"
77
+ multiple
78
+ @change="$parent.$parent.applyTypeChange()"></v-select>
79
+ </div>
80
+ <div class="form-group col-sm-2">
81
+ <label class="font_normal_body">办理环节:</label>
82
+ <v-select
83
+ v-model="model.defname"
84
+ placeholder='办理环节'
85
+ condition="act.defname = '{}'"
86
+ :value.sync="model.defname"
87
+ :options='$parent.$parent.defnames'
88
+ class="select select_list"
89
+ :value-single="true"
90
+ close-on-select ></v-select>
91
+ </div>
92
+ <div class="form-group col-sm-2">
93
+ <label class="font_normal_body">报建性质:</label>
94
+ <v-select
95
+ v-model="model.f_apply_nature"
96
+ placeholder='报建性质'
97
+ condition="f_apply_nature = '{}'"
98
+ :value.sync="model.f_apply_nature"
99
+ :options='$parent.$parent.applyNatures'
100
+ class="select select_list"
101
+ :value-single="true"
102
+ close-on-select ></v-select>
103
+ </div>
104
+ <div class="form-group col-sm-2">
105
+ <label class="font_normal_body">用户分类:</label>
106
+ <v-select
107
+ v-model="model.f_user_classification"
108
+ placeholder='用户分类'
109
+ condition="f_user_classification = '{}'"
110
+ :value.sync="model.f_user_classification"
111
+ :options='$parent.$parent.UserList'
112
+ class="select select_list"
113
+ :value-single="true"
114
+ close-on-select ></v-select>
115
+ </div>
116
+ <div class="form-group col-sm-2">
117
+ <label class="font_normal_body">用户类型:</label>
118
+ <v-select
119
+ v-model="model.f_user_type"
120
+ placeholder='普通/煤改'
121
+ condition="f_user_type = '{}'"
122
+ :value.sync="model.f_user_type"
123
+ :options='$parent.$parent.UserType'
124
+ class="select select_list"
125
+ :value-single="true"
126
+ close-on-select ></v-select>
127
+ </div>
128
+ <div class="form-group col-sm-2">
129
+ <label class="font_normal_body">用户地址:</label>
130
+ <input type="text" style="width:60%" class="input_search" placeholder='用户地址' v-model="model.f_address"
131
+ v-on:keyup.enter="$parent.$parent.search()"
132
+ condition="f_address like '%{}%'">
133
+ </div>
134
+ <div class="form-group col-sm-2">
135
+ <label class="font_normal_body">图纸情况:</label>
136
+ <v-select
137
+ v-model="model.f_filetype"
138
+ placeholder='图纸情况'
139
+ condition="f_filetype {}"
140
+ :value.sync="model.f_filetype"
141
+ :options='$parent.$parent.filetype'
142
+ class="select select_list"
143
+ :value-single="true"
144
+ close-on-select ></v-select>
145
+ </div>
146
+ <div class="form-group col-sm-2">
147
+ <label for="startDate" class="font_normal_body">开始时间:</label>
148
+ <datepicker id="startDate" placeholder="报建开始日期"
149
+ style="width: 60%!important;"
150
+ v-model="model.startDate"
151
+ :value.sync="model.startDate"
152
+ :format="'yyyy-MM-dd 00:00:00'"
153
+ :show-reset-button="true"
154
+ condition="f_apply_date >= '{}'">
155
+ </datepicker>
156
+ </div>
157
+ <div class="form-group col-sm-2">
158
+ <label for="endDate" class="font_normal_body">截止时间:</label>
159
+ <datepicker id="endDate" placeholder="报建截止日期"
160
+ style="width: 60%!important;"
161
+ v-model="model.endDate"
162
+ :value.sync="model.endDate"
163
+ :format="'yyyy-MM-dd 23:59:59'"
164
+ :show-reset-button="true"
165
+ condition="f_apply_date <= '{}'">
166
+ </datepicker>
167
+ </div>
168
+ <div class="form-group col-sm-2">
169
+ <label for="startDate" class="font_normal_body">派工时间:</label>
170
+ <datepicker id="startDate1" placeholder="派工开始日期"
171
+ style="width: 60%!important;"
172
+ v-model="model.startDate1"
173
+ :value.sync="model.startDate1"
174
+ :format="'yyyy-MM-dd 00:00:00'"
175
+ :show-reset-button="true"
176
+ condition="u.f_release_date >= '{}'">
177
+ </datepicker>
178
+ </div>
179
+ <div class="form-group col-sm-2">
180
+ <label for="endDate" class="font_normal_body">派工时间:</label>
181
+ <datepicker id="endDate1" placeholder="派工截止日期"
182
+ style="width: 60%!important;"
183
+ v-model="model.endDate1"
184
+ :value.sync="model.endDate1"
185
+ :format="'yyyy-MM-dd 23:59:59'"
186
+ :show-reset-button="true"
187
+ condition="u.f_release_date <= '{}'">
188
+ </datepicker>
189
+ </div>
190
+ <div class="form-group col-sm-2">
191
+ <label for="startDate" class="font_normal_body">回单日期:</label>
192
+ <datepicker id="startDate1" placeholder="回单开始日期"
193
+ style="width: 60%!important;"
194
+ v-model="model.startDate2"
195
+ :value.sync="model.startDate2"
196
+ :format="'yyyy-MM-dd 00:00:00'"
197
+ :show-reset-button="true"
198
+ condition="u.f_outdoors_receipt_time >= '{}'">
199
+ </datepicker>
200
+ </div>
201
+ <div class="form-group col-sm-2">
202
+ <label for="endDate" class="font_normal_body">回单日期:</label>
203
+ <datepicker id="endDate1" placeholder="回单截止日期"
204
+ style="width: 60%!important;"
205
+ v-model="model.endDate2"
206
+ :value.sync="model.endDate2"
207
+ :format="'yyyy-MM-dd 23:59:59'"
208
+ :show-reset-button="true"
209
+ condition="u.f_outdoors_receipt_time <= '{}'">
210
+ </datepicker>
211
+ </div>
212
+ <div class="form-group col-sm-2">
213
+ <label class="font_normal_body">派工类型:</label>
214
+ <v-select
215
+ v-model="model.f_dispatching_type"
216
+ placeholder='工队/维修'
217
+ condition="u.f_dispatching_type = '{}'"
218
+ :value.sync="model.f_dispatching_type"
219
+ :options='$parent.$parent.dispatching'
220
+ class="select select_list"
221
+ :value-single="true"
222
+ close-on-select ></v-select>
223
+ </div>
224
+ <div class="form-group col-sm-2">
225
+ <label class="font_normal_body">新旧报建:</label>
226
+ <v-select
227
+ v-model="model.f_house_type"
228
+ placeholder='新旧报建'
229
+ condition="u.f_house_type {}"
230
+ :value.sync="model.f_house_type"
231
+ :options='$parent.$parent.houseType'
232
+ class="select select_list"
233
+ :value-single="true"
234
+ close-on-select >
235
+ </v-select>
236
+ </div>
237
+ <div class="form-group col-sm-2">
238
+ <label class="font_normal_body">来&emsp;&emsp;源:</label>
239
+ <v-select
240
+ v-model="model.f_apply_source"
241
+ placeholder='来源'
242
+ condition="u.f_apply_source = '{}'"
243
+ :value.sync="model.f_apply_source"
244
+ :options='$parent.$parent.sources'
245
+ class="select select_list"
246
+ :value-single="true"
247
+ close-on-select >
248
+ </v-select>
249
+ </div>
250
+ </div>
251
+ </div>
252
+ </criteria>
253
+ <data-grid v-if="$parent.showData" :model="model" partial='list' v-ref:grid class="list_area table_sy">
254
+ <template partial='head'>
255
+ <tr>
256
+ <th style="white-space: nowrap;">序号</th>
257
+ <th style="white-space: nowrap;">工程编号</th>
258
+ <th style="white-space: nowrap;">客户名称</th>
259
+ <th style="white-space: nowrap;">联系人</th>
260
+ <th style="white-space: nowrap;">合同编号</th>
261
+ <th style="white-space: nowrap;">电话</th>
262
+ <th style="white-space: nowrap;">设计人员</th>
263
+ <th style="white-space: nowrap;">报建类型</th>
264
+ <th style="white-space: nowrap;">报建性质</th>
265
+ <th style="white-space: nowrap;">用户类型</th>
266
+ <th style="white-space: nowrap;">办理环节</th>
267
+ <th style="white-space: nowrap;">用户分类</th>
268
+ <th style="white-space: nowrap;">地址</th>
269
+ <th style="white-space: nowrap;">来源</th>
270
+ <th style="white-space: nowrap;">流程状态</th>
271
+ <th style="white-space: nowrap;">报建日期</th>
272
+ </tr>
273
+ </template>
274
+ <template partial='body'>
275
+ <tr>
276
+ <td @dblclick="$parent.$parent.$parent.check(row)" style="text-align: center;">
277
+ <nobr>{{$index+1}}</nobr>
278
+ </td>
279
+ <td @dblclick="$parent.$parent.$parent.check(row)" style="text-align: center;">
280
+ <nobr>{{row.f_apply_num}}</nobr>
281
+ </td>
282
+ <td @dblclick="$parent.$parent.$parent.check(row)" style="text-align: center;">
283
+ <nobr>{{row.f_user_name}}</nobr>
284
+ </td>
285
+ <td @dblclick="$parent.$parent.$parent.check(row)" style="text-align: center;">
286
+ <nobr>{{row.f_contact}}</nobr>
287
+ </td>
288
+ <td @dblclick="$parent.$parent.$parent.check(row)" style="text-align: center;">
289
+ <nobr>{{row.f_contract_number}}</nobr>
290
+ </td>
291
+ <td @dblclick="$parent.$parent.$parent.check(row)" style="text-align: center;">
292
+ <nobr>{{row.f_phone}}</nobr>
293
+ </td>
294
+ <td @dblclick="$parent.$parent.$parent.check(row)" style="text-align: center;">
295
+ <nobr><font>{{row.f_designer_people}}</font></nobr>
296
+ </td>
297
+ <td @dblclick="$parent.$parent.$parent.check(row)" style="text-align: center;">
298
+ <nobr>{{row.f_apply_type}}</nobr>
299
+ </td>
300
+ <td @dblclick="$parent.$parent.$parent.check(row)" style="text-align: center;">
301
+ <nobr>{{row.f_apply_nature}}</nobr>
302
+ </td>
303
+ <td @dblclick="$parent.$parent.$parent.check(row)" style="text-align: center;">
304
+ <nobr>{{row.f_user_type}}</nobr>
305
+ </td>
306
+ <td @dblclick="$parent.$parent.$parent.check(row)" style="text-align: center;">
307
+ <nobr>{{row.defname}}</nobr>
308
+ </td>
309
+ <td @dblclick="$parent.$parent.$parent.check(row)" style="text-align: center;">
310
+ <nobr>{{row.f_user_classification}}</nobr>
311
+ </td>
312
+ <td @dblclick="$parent.$parent.$parent.check(row)" style="text-align: center;">
313
+ <nobr>{{row.f_address}}</nobr>
314
+ </td>
315
+ <td @dblclick="$parent.$parent.$parent.check(row)" style="text-align: center;">
316
+ <nobr>{{row.f_apply_source}}</nobr>
317
+ </td>
318
+ <td @dblclick="$parent.$parent.$parent.check(row)" style="text-align: center;">
319
+ <nobr>{{row.f_sub_state}}</nobr>
320
+ </td>
321
+ <td @dblclick="$parent.$parent.$parent.check(row)" style="text-align: center;">
322
+ <nobr>{{row.f_apply_date}}</nobr>
323
+ </td>
324
+ </tr>
325
+ </template>
326
+ </data-grid>
327
+ </criteria-paged>
328
+ </div>
329
+ </template>
330
+ <script>
331
+ import {PagedList} from 'vue-client'
332
+ import {isEmpty} from '../../Util'
333
+ export default {
334
+ title: '勘探详情',
335
+ props: ['showData'],
336
+ data () {
337
+ return {
338
+ model: new PagedList('rs/sql/supervisory', 20, {
339
+ data: {
340
+ f_filiale: this.$login.f.f_fengongsi
341
+ },
342
+ }),
343
+ applytype: [{label: '全部', value: ''}, ...this.$appdata.getParam('报建类型')],
344
+ defnames: isEmpty(this.$appdata.getParam('办理环节')) ? [{label: '全部', value: ''}] : [{label: '全部', value: ''}, ...this.$appdata.getParam('办理环节')], // 流程节点
345
+ applyNatures: [{label: '全部', value: ''},{label: '工业', value: '工业'},{label: '商业', value: '商业'},{label: '散户', value: '散户'},{label: '小区', value: '小区'},{label: '分户挂表', value: '分户挂表'}], // 报建性质
346
+ criteriaShow: false,
347
+ sources:[{label: '微信公众号', value: '微信公众号'},{label: '线下发起', value: '线下发起'}],
348
+ filetype:[{label: '已上传图纸', value: 'is not null'}, {label: '未上传图纸', value: 'is null'}],
349
+ UserList:[{label: '全部', value: ''}, ...this.$appdata.getParam('用户分类')],
350
+ UserType:[{label: '全部', value: ''}, {label: '普通用户', value: '普通用户'}, {label: '煤改用户', value: '煤改用户'}],
351
+ designerPeoples: this.getDesigner(),
352
+ dispatching: [{label: '全部', value: ''}, {label: '施工工队', value: '施工工队'}, {label: '安检维修中心', value: '安检维修中心'}],
353
+ houseType:[{label: '全部', value: ''}, {label: '旧报建', value: ` = '旧报导入'`}, {label: '新报建', value: ' is null' }],
354
+ getfield: {
355
+ 'f_apply_num': ' 工 程 编 号 ',
356
+ 'f_charge_date': ' 收 费 日 期 ',
357
+ 'f_user_name': ' 用 户 单 位 ',
358
+ 'f_user_classification': ' 用户分类 ',
359
+ 'f_user_type': ' 用户类型 ',
360
+ 'f_address': ' 地 址 ',
361
+ 'f_install_count': ' 安装户数 ',
362
+ 'huoyan': ' 火眼 ',
363
+ 'xiaohuoyan': ' 小火眼 ',
364
+ 'bigualu': ' 壁挂炉 ',
365
+ 'jiayongzao': ' 家用灶 ',
366
+ 'reshuiqi': ' 热水器 ',
367
+ 'cainuanlu': ' 采暖炉 ',
368
+ 'chashuilu': ' 茶水炉 ',
369
+ 'zhengche': ' 蒸车 ',
370
+ 'zhengqifashengqi': ' 蒸汽发生器 ',
371
+ 'zaoju': ' 灶具 ',
372
+ 'yasuoji': ' 压缩机 ',
373
+ 'mokuailu': ' 模块炉 ',
374
+ 'danweikw': ' 锅炉单位(KW) ',
375
+ 'danweimw': ' 锅炉单位(MW) ',
376
+ 'dunwei': ' 锅炉吨位(T) ',
377
+ 'baojingqi': ' 报警器 ',
378
+ "zibifa": ' 安全自闭阀 ',
379
+ 'f_meter_types': ' 表 具 明 细 ',
380
+ 'f_construct_operator': ' 现 场 项 目 负 责 人 ',
381
+ 'f_contact': ' 联 系 人 ',
382
+ 'f_phone': ' 电 话 ',
383
+ 'f_outdoors_time': ' 户内出单日期 ',
384
+ 'f_outdoors_receipt_time': ' 户内回单日期 ',
385
+ 'f_courtyard_time': ' 庭院出单日期 ',
386
+ 'f_courtyard_receipt_time': ' 庭院回单日期 ',
387
+ 'f_construction_unit':' 施 工 单 位 ',
388
+ 'f_contract_number': ' 合 同 编 号 ',
389
+ 'f_apply_nature': ' 报 建 性 质 ',
390
+ 'defname': ' 办 理 环 节 ',
391
+ 'f_designer_people':' 设计人员 ',
392
+ 'f_apply_source': ' 来源 ',
393
+ 'f_apply_type': ' 报 建 类 型 ',
394
+ 'f_sub_state': ' 流 程 状 态 ',
395
+ 'f_apply_date': ' 报 建 日 期 ',
396
+ 'f_house_type': ' 新 旧 报 建 '
397
+ },
398
+ civil: {
399
+ 'f_apply_num': '工程编号',
400
+ 'f_charge_date': '收费日期',
401
+ 'f_user_name': '用户单位',
402
+ 'f_user_type': ' 用户类型 ',
403
+ 'f_address': '地址',
404
+ 'f_install_count': '安装户数',
405
+ 'baojingqi': ' 报警器 ',
406
+ "zibifa": ' 安全自闭阀 ',
407
+ 'f_meter_types': '表具明细',
408
+ 'f_construct_operator': '现场项目负责人',
409
+ 'f_contact': '联系人',
410
+ 'f_phone': '电话',
411
+ 'f_construction_unit':'施工单位',
412
+ 'f_house_type': ' 新 旧 报 建 '
413
+ },
414
+ uncivil: {
415
+ 'f_apply_num': '工程编号',
416
+ 'f_charge_date': '收费日期',
417
+ 'f_user_name': '用户单位',
418
+ 'f_user_type': ' 用户类型 ',
419
+ 'f_address': '地址',
420
+ 'f_install_count': '安装户数',
421
+ 'huoyan': '火眼',
422
+ 'xiaohuoyan': '小火眼',
423
+ 'bigualu': '壁挂炉',
424
+ 'jiayongzao': '家用灶',
425
+ 'reshuiqi': '热水器',
426
+ 'cainuanlu': '采暖炉',
427
+ 'chashuilu': '茶水炉',
428
+ 'zhengche': '蒸车',
429
+ 'zhengqifashengqi': '蒸汽发生器',
430
+ 'zaoju': '灶具',
431
+ 'yasuoji': '压缩机',
432
+ 'mokuailu': '模块炉',
433
+ 'danweikw': '锅炉单位(KW)',
434
+ 'danweimw': '锅炉单位(MW)',
435
+ 'dunwei': '锅炉吨位(T)',
436
+ 'f_meter_types': '表具明细',
437
+ 'f_construct_operator': '现场项目负责人',
438
+ 'f_contact': '联系人',
439
+ 'f_phone': '电话',
440
+ 'f_outdoors_time': ' 户内出单日期 ',
441
+ 'f_outdoors_receipt_time': ' 户内回单日期 ',
442
+ 'f_courtyard_time': ' 庭院出单日期 ',
443
+ 'f_courtyard_receipt_time': ' 庭院回单日期 ',
444
+ 'f_construction_unit':'施工单位',
445
+ 'f_house_type': ' 新 旧 报 建 '
446
+ }
447
+ }
448
+ },
449
+ ready () {
450
+ // 调用查询
451
+ // this.search()
452
+ },
453
+ events: {
454
+ },
455
+ methods: {
456
+ loadPage () {
457
+ this.$dispatch('loadPage')
458
+ },
459
+ searchCondition (args) {
460
+ args.condition = args.condition
461
+ if (args.condition.includes('民用报建')) {
462
+ args.condition = args.condition.replace('f_apply_type = \'民用报建\'', '(f_apply_type = \'民用报建\' or f_apply_type = \'分户挂表\')');
463
+ }
464
+ console.log("args.condition",args.condition)
465
+ this.model.search(args.condition, args.model)
466
+ },
467
+ // 查询
468
+ search () {
469
+ this.$dispatch('search')
470
+ },
471
+ check (val) {
472
+ this.$dispatch('apply', val)
473
+ },
474
+ async applyTypeChange () {
475
+ if (!isEmpty(this.$refs.cp.$refs.cri.model.f_apply_type)) {
476
+ let res = await this.$resetpost('rs/logic/getDefnameByType',
477
+ { f_apply_type: this.$refs.cp.$refs.cri.model.f_apply_type },
478
+ {resolveMsg: null, rejectMsg: '节点信息获取失败!!!'}
479
+ )
480
+
481
+ this.defnames = [{label: '全部', value: ''}, ...res.data]
482
+
483
+ // this.applyNatures = isEmpty(this.$appdata.getParam(`${this.$refs.cp.$refs.cri.model.f_apply_type}性质`)) ? [{label: '全部', value: ''}] : [{label: '全部', value: ''}, ...this.$appdata.getParam(`${this.$refs.cp.$refs.cri.model.f_apply_type}性质`)]
484
+ } else {
485
+ this.defnames = isEmpty(this.$appdata.getParam('办理环节')) ? [{label: '全部', value: ''}] : [{label: '全部', value: ''}, ...this.$appdata.getParam('办理环节')]
486
+ // this.applyNatures = isEmpty(this.$appdata.getParam('报建性质')) ? [{label: '全部', value: ''}] : [{label: '全部', value: ''}, ...this.$appdata.getParam('报建性质')] // 报建性质
487
+ }
488
+ },
489
+ async getDesigner() {
490
+ let data = {
491
+ source: 'this.getParentByType($organization$).getChildByName($设计人员$).getChildren()',
492
+ userid: this.$login.f.id
493
+ }
494
+
495
+ let res = await this.$resetpost(
496
+ 'rs/search',
497
+ {data: data},
498
+ {resolveMsg: null, rejectMsg: '设计人员人员查询失败!!!'}
499
+ )
500
+ console.log("ces",res.data.map(item => {
501
+ return {
502
+ label: item.name,
503
+ value: item.name
504
+ }
505
+ }))
506
+ this.designerPeoples = res.data.map(item => {
507
+ return {
508
+ label: item.name,
509
+ value: item.name
510
+ }
511
+ })
512
+ },
513
+ clear () {
514
+ Object.keys(this.$refs.cp.$refs.cri.model).forEach((key) => {
515
+ this.$refs.cp.$refs.cri.model[key] = null
516
+ })
517
+ }
518
+ },
519
+ computed: {
520
+ getCondition () {
521
+ return {
522
+ condition: this.$refs.cp.$refs.cri.condition,
523
+ data: {
524
+ // orgid: this.$login.f.orgid
525
+ f_filiale: this.$login.f.f_fengongsi
526
+ }
527
+ }
528
+ },
529
+ getLoginDepartment(){
530
+ return this.$login.f.rolesnames.includes('市场部报装')
531
+ }
532
+ }
533
+ }
534
+ </script>
535
+ <style scoped>
536
+ </style>