apply-clients 7.1.35 → 7.1.36

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (431) hide show
  1. package/android.html +4 -0
  2. package/build/css-loaders.js +34 -0
  3. package/build/dev-client.js +8 -0
  4. package/build/dev-server.js +151 -0
  5. package/build/example-server.js +80 -0
  6. package/build/release.sh +28 -0
  7. package/build/utils.js +80 -0
  8. package/build/webpack.base.conf.js +123 -0
  9. package/build/webpack.baseandroid.conf.js +123 -0
  10. package/build/webpack.dev.conf.js +43 -0
  11. package/build/webpack.devandroid.conf.js +34 -0
  12. package/build/webpack.example.conf.js +49 -0
  13. package/build/webpack.prod.conf.js +60 -0
  14. package/build/webpack.prodandroid.conf.js +60 -0
  15. package/dist-android.7z +0 -0
  16. package/dist.7z +0 -0
  17. package/index.html +4 -1
  18. package/package.json +11 -7
  19. package/src/AndroidApp.vue +21 -14
  20. package/src/App.vue +18 -20
  21. package/{dist-android/static → src/android-bootstrap/fonts}/glyphicons-halflings-regular.eot +0 -0
  22. package/{dist-android/static → src/android-bootstrap/fonts}/glyphicons-halflings-regular.svg +0 -0
  23. package/{dist-android/static → src/android-bootstrap/fonts}/glyphicons-halflings-regular.ttf +0 -0
  24. package/{dist-android/static → src/android-bootstrap/fonts}/glyphicons-halflings-regular.woff +0 -0
  25. package/{dist-android/static → src/android-bootstrap/fonts}/glyphicons-halflings-regular.woff2 +0 -0
  26. package/src/android-bootstrap/less/.csscomb.json +304 -0
  27. package/src/android-bootstrap/less/.csslintrc +19 -0
  28. package/src/android-bootstrap/less/alerts.less +73 -0
  29. package/src/android-bootstrap/less/badges.less +66 -0
  30. package/src/android-bootstrap/less/bootstrap.less +56 -0
  31. package/src/android-bootstrap/less/breadcrumbs.less +26 -0
  32. package/src/android-bootstrap/less/button-groups.less +247 -0
  33. package/src/android-bootstrap/less/buttons.less +173 -0
  34. package/src/android-bootstrap/less/carousel.less +269 -0
  35. package/src/android-bootstrap/less/close.less +34 -0
  36. package/src/android-bootstrap/less/code.less +69 -0
  37. package/src/android-bootstrap/less/component-animations.less +33 -0
  38. package/src/android-bootstrap/less/dropdowns.less +216 -0
  39. package/src/android-bootstrap/less/forms.less +626 -0
  40. package/src/android-bootstrap/less/glyphicons.less +305 -0
  41. package/src/android-bootstrap/less/grid.less +84 -0
  42. package/src/android-bootstrap/less/input-groups.less +167 -0
  43. package/src/android-bootstrap/less/jumbotron.less +52 -0
  44. package/src/android-bootstrap/less/labels.less +64 -0
  45. package/src/android-bootstrap/less/list-group.less +141 -0
  46. package/src/android-bootstrap/less/media.less +66 -0
  47. package/src/android-bootstrap/less/mixins/alerts.less +14 -0
  48. package/src/android-bootstrap/less/mixins/background-variant.less +9 -0
  49. package/src/android-bootstrap/less/mixins/border-radius.less +18 -0
  50. package/src/android-bootstrap/less/mixins/buttons.less +69 -0
  51. package/src/android-bootstrap/less/mixins/center-block.less +7 -0
  52. package/src/android-bootstrap/less/mixins/clearfix.less +22 -0
  53. package/src/android-bootstrap/less/mixins/forms.less +90 -0
  54. package/src/android-bootstrap/less/mixins/gradients.less +59 -0
  55. package/src/android-bootstrap/less/mixins/grid-framework.less +92 -0
  56. package/src/android-bootstrap/less/mixins/grid.less +122 -0
  57. package/src/android-bootstrap/less/mixins/hide-text.less +21 -0
  58. package/src/android-bootstrap/less/mixins/image.less +33 -0
  59. package/src/android-bootstrap/less/mixins/labels.less +12 -0
  60. package/src/android-bootstrap/less/mixins/list-group.less +30 -0
  61. package/src/android-bootstrap/less/mixins/nav-divider.less +10 -0
  62. package/src/android-bootstrap/less/mixins/nav-vertical-align.less +9 -0
  63. package/src/android-bootstrap/less/mixins/opacity.less +8 -0
  64. package/src/android-bootstrap/less/mixins/pagination.less +24 -0
  65. package/src/android-bootstrap/less/mixins/panels.less +24 -0
  66. package/src/android-bootstrap/less/mixins/progress-bar.less +10 -0
  67. package/src/android-bootstrap/less/mixins/reset-filter.less +8 -0
  68. package/src/android-bootstrap/less/mixins/reset-text.less +18 -0
  69. package/src/android-bootstrap/less/mixins/resize.less +6 -0
  70. package/src/android-bootstrap/less/mixins/responsive-visibility.less +15 -0
  71. package/src/android-bootstrap/less/mixins/size.less +10 -0
  72. package/src/android-bootstrap/less/mixins/tab-focus.less +9 -0
  73. package/src/android-bootstrap/less/mixins/table-row.less +44 -0
  74. package/src/android-bootstrap/less/mixins/text-emphasis.less +9 -0
  75. package/src/android-bootstrap/less/mixins/text-overflow.less +8 -0
  76. package/src/android-bootstrap/less/mixins/vendor-prefixes.less +227 -0
  77. package/src/android-bootstrap/less/mixins.less +40 -0
  78. package/src/android-bootstrap/less/modals.less +151 -0
  79. package/src/android-bootstrap/less/navbar.less +660 -0
  80. package/src/android-bootstrap/less/navs.less +302 -0
  81. package/src/android-bootstrap/less/normalize.less +424 -0
  82. package/src/android-bootstrap/less/pager.less +76 -0
  83. package/src/android-bootstrap/less/pagination.less +89 -0
  84. package/src/android-bootstrap/less/panels.less +274 -0
  85. package/src/android-bootstrap/less/popovers.less +131 -0
  86. package/src/android-bootstrap/less/print.less +101 -0
  87. package/src/android-bootstrap/less/progress-bars.less +87 -0
  88. package/src/android-bootstrap/less/responsive-embed.less +35 -0
  89. package/src/android-bootstrap/less/responsive-utilities.less +194 -0
  90. package/src/android-bootstrap/less/scaffolding.less +161 -0
  91. package/src/android-bootstrap/less/tables.less +262 -0
  92. package/src/android-bootstrap/less/theme.less +291 -0
  93. package/src/android-bootstrap/less/thumbnails.less +36 -0
  94. package/src/android-bootstrap/less/tooltip.less +102 -0
  95. package/src/android-bootstrap/less/type.less +303 -0
  96. package/src/android-bootstrap/less/utilities.less +55 -0
  97. package/src/android-bootstrap/less/variables.less +896 -0
  98. package/src/android-bootstrap/less/wells.less +29 -0
  99. package/src/android.js +7 -4
  100. package/src/apply.js +85 -69
  101. package/src/applyAndroid.js +52 -39
  102. package/src/assets//345/210/240/351/231/244.png +0 -0
  103. package/src/components/android/AppOnetomany.vue +301 -0
  104. package/src/components/android/AppServiceView.vue +568 -0
  105. package/src/components/android/AppSign.vue +169 -0
  106. package/src/components/android/AppTakePic.vue +142 -0
  107. package/src/components/android/AppUpload.vue +232 -0
  108. package/src/components/android/Ignition/VentilationIgnition.vue +328 -0
  109. package/src/components/android/Ignition/VentilationIgnitionHandle.vue +330 -0
  110. package/src/components/android/Process/AppExplorationUser.vue +352 -0
  111. package/src/components/android/Process/AppServiceControl.vue +1050 -0
  112. package/src/components/android/Process/Processes/AppDevicesManagement.vue +336 -0
  113. package/src/components/android/Process/Processes/AppInstallationDetails.vue +770 -0
  114. package/src/components/android/Process/Processes/SurveyUserSign.vue +56 -0
  115. package/src/components/android/Sign/AppSignTask.vue +182 -0
  116. package/src/components/android/Sign/SignProcess.vue +102 -0
  117. package/src/components/android/Supervisory/AppProcessSupervisory.vue +183 -0
  118. package/src/components/android/Supervisory/AppSupervisoryCart.vue +121 -0
  119. package/src/components/android/Task/Build/BuildTsak.vue +114 -0
  120. package/src/components/android/Task/Survey/SurveyTsak.vue +112 -0
  121. package/src/components/android/TaskGraph.vue +130 -0
  122. package/src/components/android/newPackage/customerServiceManager.vue +218 -0
  123. package/src/components/android/newPackage/designDrawings.vue +94 -0
  124. package/src/components/android/newPackage/detailedData.vue +24 -0
  125. package/src/components/android/newPackage/projectPrice.vue +218 -0
  126. package/src/components/image/dwg.png +0 -0
  127. package/src/components/image/dxf.png +0 -0
  128. package/src/components/product/ApplyCharge/ApplyChargeList.vue +141 -62
  129. package/src/components/product/ApplyCharge/ApplyChargeSearch.vue +2 -2
  130. package/src/components/product/Function/InstallFunction.vue +53 -69
  131. package/src/components/product/Function/InstallInfoSelect.vue +118 -105
  132. package/src/components/product/Function/Service/FunctionServiceControl.vue +323 -148
  133. package/src/components/product/Ignition/IgnitionDispatch.vue +277 -0
  134. package/src/components/product/Ignition/IgnitionRecord.vue +216 -0
  135. package/src/components/product/Onetomany.vue +377 -0
  136. package/src/components/product/Print/BuildOrder/buildOrderList.vue +229 -0
  137. package/src/components/product/Print/BuildOrder/printBuildOrder.vue +265 -0
  138. package/src/components/product/Process/ExplorationSelect.vue +374 -347
  139. package/src/components/product/Process/ExplorationUser.vue +151 -138
  140. package/src/components/product/Process/Processes/ApplyMapCom.vue +83 -0
  141. package/src/components/product/Process/Processes/ExhibitionPicture.vue +27 -0
  142. package/src/components/product/Process/Processes/InstallationDetails.vue +823 -484
  143. package/src/components/product/Process/Processes/Print/img/10101.png +0 -0
  144. package/src/components/product/Process/Processes/Print/img/1010109.png +0 -0
  145. package/src/components/product/Process/Processes/Print/img/1010110.png +0 -0
  146. package/src/components/product/Process/Processes/Print/img/1010111.png +0 -0
  147. package/src/components/product/Process/Processes/Print/img/1010112.png +0 -0
  148. package/src/components/product/Process/Processes/Print/printCharge.vue +142 -0
  149. package/src/components/product/Process/Processes/addressAndUserinfoManagement.vue +59 -113
  150. package/src/components/product/Process/Processes/chargeManagement.vue +546 -562
  151. package/src/components/product/Process/Processes/devicesManagement.vue +360 -0
  152. package/src/components/product/Process/Processes/selectApply.vue +250 -0
  153. package/src/components/product/Process/Processes/selectUserinfo.vue +182 -0
  154. package/src/components/product/Process/Processes/supplementalAgreement.vue +182 -181
  155. package/src/components/product/Process/Service/ServiceControl.vue +1417 -856
  156. package/src/components/product/Process/Service/ShowBackReason.vue +33 -0
  157. package/src/components/product/ServiceView.vue +557 -680
  158. package/src/components/product/Stop/StopApply.vue +105 -0
  159. package/src/components/product/Stop/StopApplyList.vue +224 -0
  160. package/src/components/product/Supervisory/NewSupervisoryhCart.vue +167 -0
  161. package/src/components/product/Supervisory/Service/SupervisoryServiceControl.vue +231 -199
  162. package/src/components/product/Supervisory/SupervisoryControl.vue +22 -33
  163. package/src/components/product/Supervisory/SupervisoryList.vue +258 -208
  164. package/src/components/product/Supervisory/SupervisoryhCart.vue +52 -36
  165. package/src/components/product/VueUtils/ApplyUpload.vue +279 -261
  166. package/src/components/product/VueUtils/HighMeter.vue +208 -0
  167. package/src/expandcssAndroid.less +1034 -0
  168. package/src/main.js +27 -23
  169. package/src/public/history/HistoryApplyList.vue +108 -0
  170. package/src/public/history/PublicHistoryApply.vue +39 -0
  171. package/src/public/history/PublicSupervisoryhCart.vue +72 -0
  172. package/src/public/order/PublicOrderApply.vue +387 -0
  173. package/dist-android/index.html +0 -3
  174. package/dist-android/static/.gitkeep +0 -0
  175. package/dist-android/static/0.js +0 -2
  176. package/dist-android/static/0.js.map +0 -1
  177. package/dist-android/static/1.js +0 -2
  178. package/dist-android/static/1.js.map +0 -1
  179. package/dist-android/static/10.js +0 -2
  180. package/dist-android/static/10.js.map +0 -1
  181. package/dist-android/static/100.js +0 -2
  182. package/dist-android/static/100.js.map +0 -1
  183. package/dist-android/static/11.js +0 -2
  184. package/dist-android/static/11.js.map +0 -1
  185. package/dist-android/static/12.js +0 -2
  186. package/dist-android/static/12.js.map +0 -1
  187. package/dist-android/static/13.js +0 -2
  188. package/dist-android/static/13.js.map +0 -1
  189. package/dist-android/static/14.js +0 -2
  190. package/dist-android/static/14.js.map +0 -1
  191. package/dist-android/static/15.js +0 -2
  192. package/dist-android/static/15.js.map +0 -1
  193. package/dist-android/static/16.js +0 -2
  194. package/dist-android/static/16.js.map +0 -1
  195. package/dist-android/static/17.js +0 -2
  196. package/dist-android/static/17.js.map +0 -1
  197. package/dist-android/static/18.js +0 -2
  198. package/dist-android/static/18.js.map +0 -1
  199. package/dist-android/static/19.js +0 -2
  200. package/dist-android/static/19.js.map +0 -1
  201. package/dist-android/static/2.js +0 -2
  202. package/dist-android/static/2.js.map +0 -1
  203. package/dist-android/static/20.js +0 -2
  204. package/dist-android/static/20.js.map +0 -1
  205. package/dist-android/static/21.js +0 -2
  206. package/dist-android/static/21.js.map +0 -1
  207. package/dist-android/static/22.js +0 -2
  208. package/dist-android/static/22.js.map +0 -1
  209. package/dist-android/static/23.js +0 -2
  210. package/dist-android/static/23.js.map +0 -1
  211. package/dist-android/static/24.js +0 -2
  212. package/dist-android/static/24.js.map +0 -1
  213. package/dist-android/static/25.js +0 -2
  214. package/dist-android/static/25.js.map +0 -1
  215. package/dist-android/static/26.js +0 -2
  216. package/dist-android/static/26.js.map +0 -1
  217. package/dist-android/static/27.js +0 -2
  218. package/dist-android/static/27.js.map +0 -1
  219. package/dist-android/static/28.js +0 -2
  220. package/dist-android/static/28.js.map +0 -1
  221. package/dist-android/static/29.js +0 -2
  222. package/dist-android/static/29.js.map +0 -1
  223. package/dist-android/static/3.js +0 -2
  224. package/dist-android/static/3.js.map +0 -1
  225. package/dist-android/static/30.js +0 -2
  226. package/dist-android/static/30.js.map +0 -1
  227. package/dist-android/static/31.js +0 -2
  228. package/dist-android/static/31.js.map +0 -1
  229. package/dist-android/static/32.js +0 -2
  230. package/dist-android/static/32.js.map +0 -1
  231. package/dist-android/static/33.js +0 -2
  232. package/dist-android/static/33.js.map +0 -1
  233. package/dist-android/static/34.js +0 -2
  234. package/dist-android/static/34.js.map +0 -1
  235. package/dist-android/static/35.js +0 -2
  236. package/dist-android/static/35.js.map +0 -1
  237. package/dist-android/static/36.js +0 -2
  238. package/dist-android/static/36.js.map +0 -1
  239. package/dist-android/static/37.js +0 -2
  240. package/dist-android/static/37.js.map +0 -1
  241. package/dist-android/static/38.js +0 -2
  242. package/dist-android/static/38.js.map +0 -1
  243. package/dist-android/static/39.js +0 -2
  244. package/dist-android/static/39.js.map +0 -1
  245. package/dist-android/static/4.js +0 -2
  246. package/dist-android/static/4.js.map +0 -1
  247. package/dist-android/static/40.js +0 -2
  248. package/dist-android/static/40.js.map +0 -1
  249. package/dist-android/static/41.js +0 -2
  250. package/dist-android/static/41.js.map +0 -1
  251. package/dist-android/static/42.js +0 -2
  252. package/dist-android/static/42.js.map +0 -1
  253. package/dist-android/static/43.js +0 -2
  254. package/dist-android/static/43.js.map +0 -1
  255. package/dist-android/static/44.js +0 -2
  256. package/dist-android/static/44.js.map +0 -1
  257. package/dist-android/static/45.js +0 -2
  258. package/dist-android/static/45.js.map +0 -1
  259. package/dist-android/static/46.js +0 -2
  260. package/dist-android/static/46.js.map +0 -1
  261. package/dist-android/static/47.js +0 -2
  262. package/dist-android/static/47.js.map +0 -1
  263. package/dist-android/static/48.js +0 -2
  264. package/dist-android/static/48.js.map +0 -1
  265. package/dist-android/static/49.js +0 -2
  266. package/dist-android/static/49.js.map +0 -1
  267. package/dist-android/static/5.js +0 -2
  268. package/dist-android/static/5.js.map +0 -1
  269. package/dist-android/static/50.js +0 -2
  270. package/dist-android/static/50.js.map +0 -1
  271. package/dist-android/static/51.js +0 -2
  272. package/dist-android/static/51.js.map +0 -1
  273. package/dist-android/static/52.js +0 -2
  274. package/dist-android/static/52.js.map +0 -1
  275. package/dist-android/static/53.js +0 -2
  276. package/dist-android/static/53.js.map +0 -1
  277. package/dist-android/static/54.js +0 -2
  278. package/dist-android/static/54.js.map +0 -1
  279. package/dist-android/static/55.js +0 -2
  280. package/dist-android/static/55.js.map +0 -1
  281. package/dist-android/static/56.js +0 -2
  282. package/dist-android/static/56.js.map +0 -1
  283. package/dist-android/static/57.js +0 -2
  284. package/dist-android/static/57.js.map +0 -1
  285. package/dist-android/static/58.js +0 -2
  286. package/dist-android/static/58.js.map +0 -1
  287. package/dist-android/static/59.js +0 -2
  288. package/dist-android/static/59.js.map +0 -1
  289. package/dist-android/static/6.js +0 -2
  290. package/dist-android/static/6.js.map +0 -1
  291. package/dist-android/static/60.js +0 -2
  292. package/dist-android/static/60.js.map +0 -1
  293. package/dist-android/static/61.js +0 -2
  294. package/dist-android/static/61.js.map +0 -1
  295. package/dist-android/static/62.js +0 -2
  296. package/dist-android/static/62.js.map +0 -1
  297. package/dist-android/static/63.js +0 -2
  298. package/dist-android/static/63.js.map +0 -1
  299. package/dist-android/static/64.js +0 -2
  300. package/dist-android/static/64.js.map +0 -1
  301. package/dist-android/static/65.js +0 -2
  302. package/dist-android/static/65.js.map +0 -1
  303. package/dist-android/static/66.js +0 -2
  304. package/dist-android/static/66.js.map +0 -1
  305. package/dist-android/static/67.js +0 -2
  306. package/dist-android/static/67.js.map +0 -1
  307. package/dist-android/static/68.js +0 -2
  308. package/dist-android/static/68.js.map +0 -1
  309. package/dist-android/static/69.js +0 -2
  310. package/dist-android/static/69.js.map +0 -1
  311. package/dist-android/static/7.js +0 -6
  312. package/dist-android/static/7.js.map +0 -1
  313. package/dist-android/static/70.js +0 -2
  314. package/dist-android/static/70.js.map +0 -1
  315. package/dist-android/static/71.js +0 -2
  316. package/dist-android/static/71.js.map +0 -1
  317. package/dist-android/static/72.js +0 -2
  318. package/dist-android/static/72.js.map +0 -1
  319. package/dist-android/static/73.js +0 -2
  320. package/dist-android/static/73.js.map +0 -1
  321. package/dist-android/static/74.js +0 -2
  322. package/dist-android/static/74.js.map +0 -1
  323. package/dist-android/static/75.js +0 -2
  324. package/dist-android/static/75.js.map +0 -1
  325. package/dist-android/static/76.js +0 -2
  326. package/dist-android/static/76.js.map +0 -1
  327. package/dist-android/static/77.js +0 -2
  328. package/dist-android/static/77.js.map +0 -1
  329. package/dist-android/static/78.js +0 -2
  330. package/dist-android/static/78.js.map +0 -1
  331. package/dist-android/static/79.js +0 -2
  332. package/dist-android/static/79.js.map +0 -1
  333. package/dist-android/static/8.js +0 -2
  334. package/dist-android/static/8.js.map +0 -1
  335. package/dist-android/static/80.js +0 -2
  336. package/dist-android/static/80.js.map +0 -1
  337. package/dist-android/static/81.js +0 -2
  338. package/dist-android/static/81.js.map +0 -1
  339. package/dist-android/static/82.js +0 -2
  340. package/dist-android/static/82.js.map +0 -1
  341. package/dist-android/static/83.js +0 -2
  342. package/dist-android/static/83.js.map +0 -1
  343. package/dist-android/static/84.js +0 -2
  344. package/dist-android/static/84.js.map +0 -1
  345. package/dist-android/static/85.js +0 -2
  346. package/dist-android/static/85.js.map +0 -1
  347. package/dist-android/static/86.js +0 -2
  348. package/dist-android/static/86.js.map +0 -1
  349. package/dist-android/static/87.js +0 -2
  350. package/dist-android/static/87.js.map +0 -1
  351. package/dist-android/static/88.js +0 -2
  352. package/dist-android/static/88.js.map +0 -1
  353. package/dist-android/static/89.js +0 -2
  354. package/dist-android/static/89.js.map +0 -1
  355. package/dist-android/static/9.js +0 -3
  356. package/dist-android/static/9.js.map +0 -1
  357. package/dist-android/static/90.js +0 -2
  358. package/dist-android/static/90.js.map +0 -1
  359. package/dist-android/static/91.js +0 -2
  360. package/dist-android/static/91.js.map +0 -1
  361. package/dist-android/static/92.js +0 -2
  362. package/dist-android/static/92.js.map +0 -1
  363. package/dist-android/static/93.js +0 -2
  364. package/dist-android/static/93.js.map +0 -1
  365. package/dist-android/static/94.js +0 -2
  366. package/dist-android/static/94.js.map +0 -1
  367. package/dist-android/static/95.js +0 -2
  368. package/dist-android/static/95.js.map +0 -1
  369. package/dist-android/static/96.js +0 -2
  370. package/dist-android/static/96.js.map +0 -1
  371. package/dist-android/static/97.js +0 -2
  372. package/dist-android/static/97.js.map +0 -1
  373. package/dist-android/static/98.js +0 -2
  374. package/dist-android/static/98.js.map +0 -1
  375. package/dist-android/static/99.js +0 -2
  376. package/dist-android/static/99.js.map +0 -1
  377. package/dist-android/static/app.css +0 -2
  378. package/dist-android/static/app.css.map +0 -1
  379. package/dist-android/static/app.js +0 -80
  380. package/dist-android/static/app.js.map +0 -1
  381. package/dist-android/static/batchleft.png +0 -0
  382. package/dist-android/static/batchright.png +0 -0
  383. package/dist-android/static/bluemainbg.jpg +0 -0
  384. package/dist-android/static/config.json +0 -7
  385. package/dist-android/static/denglu.png +0 -0
  386. package/dist-android/static/huangtengbiaozhi.png +0 -0
  387. package/dist-android/static/jingyin.jpg +0 -0
  388. package/dist-android/static/login_bg.jpg +0 -0
  389. package/dist-android/static/login_title.png +0 -0
  390. package/dist-android/static/login_title1.png +0 -0
  391. package/dist-android/static/loginbg.jpg +0 -0
  392. package/dist-android/static/loginlogo.png +0 -0
  393. package/dist-android/static/main_logo.png +0 -0
  394. package/dist-android/static/mainbg.jpg +0 -0
  395. package/dist-android/static/menulogo.png +0 -0
  396. package/dist-android/static/newmainbg.jpg +0 -0
  397. package/dist-android/static/psicon.png +0 -0
  398. package/dist-android/static/singleleft.png +0 -0
  399. package/dist-android/static/singleright.png +0 -0
  400. package/dist-android/static/treeopen.png +0 -0
  401. package/dist-android/static/treeout.png +0 -0
  402. package/dist-android/static/treeset.png +0 -0
  403. package/dist-android/static/usericon.png +0 -0
  404. package/dist-android/static/workflow_apply.json +0 -766
  405. package/dist-android/static/xinxi.png +0 -0
  406. package/dist-android/static//344/277/256/346/224/271/345/257/206/347/240/201.png +0 -0
  407. package/dist-android/static//345/256/211/346/243/200/345/257/274/350/210/252/347/253/226/345/261/2173.png +0 -0
  408. package/dist-android/static//345/257/274/345/207/272/346/225/260/346/215/256.png +0 -0
  409. package/dist-android/static//346/270/205/347/251/272/346/225/260/346/215/256.png +0 -0
  410. package/src/components/app_apply/Acceptance.vue +0 -298
  411. package/src/components/app_apply/ApplyApp.vue +0 -91
  412. package/src/components/app_apply/ApplyDownList.vue +0 -166
  413. package/src/components/app_apply/ApplyInfo.vue +0 -56
  414. package/src/components/app_apply/ApplyListUpload.vue +0 -258
  415. package/src/components/app_apply/ApplyToDoList.vue +0 -165
  416. package/src/components/app_apply/ApplyUserInfo.vue +0 -56
  417. package/src/components/app_apply/FieldExploration.vue +0 -267
  418. package/src/components/app_apply/PlaceControler.vue +0 -258
  419. package/src/components/app_apply/ServiceControl.vue +0 -267
  420. package/src/components/app_apply/ServiceView.vue +0 -355
  421. package/src/components/app_apply/ToolsPage.vue +0 -51
  422. package/src/components/app_apply/Ventilation.vue +0 -199
  423. package/src/components/product/ApplyCharge/ApplyChargeReport.vue +0 -107
  424. package/src/components/product/Function/StopApplyCrrdList.vue +0 -176
  425. package/src/components/product/Function/functions/ApplyRecordCancel.vue +0 -102
  426. package/src/components/product/Function/functions/StopInstall.vue +0 -106
  427. package/src/components/product/Process/Processes/printCharge.vue +0 -126
  428. package/src/components/product/Process/ShowBackReason.vue +0 -32
  429. package/src/components/product/ReportForm/GasIgnitionSummary.vue +0 -352
  430. package/src/components/product/VueUtils/ToolsPage.vue +0 -51
  431. package/src/components/product/VueUtils/Tree.vue +0 -330
@@ -1 +0,0 @@
1
- {"version":3,"sources":["webpack:///26.js","webpack:///CustomerEquipmentMessage.vue","webpack:///./src/components/product/Process/Processes/CustomerEquipmentMessage.vue?088d","webpack:///./src/components/product/Process/Processes/CustomerEquipmentMessage.vue?d1ca","webpack:///./src/components/product/Process/Processes/CustomerEquipmentMessage.vue?0189","webpack:///./src/components/product/Process/Processes/CustomerEquipmentMessage.vue"],"names":["webpackJsonp","380","module","exports","__webpack_require__","Object","defineProperty","value","_vueClient","default","title","data","devicetypes","this","$appdata","getParam","flagg","devicesinfo","userinfoid","imgdelete","imgadd","props","ready","load","methods","_this","selectdata","tablename","condition","String","f_process_id","$resetpost","resolveMsg","rejectMsg","then","res","confirm","row","index","_this2","f_userinfo_id","process_id","length","f_devices_state","f_devices_type","parameters","f_brand","f_devices_model","f_devices_num","$showMessage","deleteDevice","_this3","id","http","HttpResetClass","splice","addDevice","push","482","version","sources","names","mappings","file","sourcesContent","sourceRoot","529","content","locals","753","931","__vue_script__","__vue_template__","__vue_styles__","__esModule","__vue_options__","options","template","computed","keys","forEach","key"],"mappings":"AAAAA,cAAc,KAERC,IACA,SAAUC,EAAQC,EAASC,GAEhC,YAEAC,QAAOC,eAAeH,EAAS,cAC7BI,OAAO,GAGT,IAAIC,GAAaJ,EAAoB,EAErCD,GAAQM,SCsDTC,MAAA,OACAC,KAFA,WAGA,OACAC,YAAAC,KAAAC,SAAAC,SAAA,QACAC,OAAA,EACAC,eACAC,WAAA,GACAC,UAAA,mCACAC,OAAA,kCAGAC,OAAA,qBACAC,MAbA,WAeAT,KAAAU,QAEAC,SACAD,KADA,WACA,GAAAE,GAAAZ,IACA,IAAAA,KAAAa,WAAA,CAEA,GAAAf,IACAgB,UAAA,YACAC,UAAA,iBAAAC,OAAAhB,KAAAa,WAAAI,cAAA,IAEAjB,MAAAkB,WAAA,sBAAApB,SAAAqB,WAAA,KAAAC,UAAA,SACAC,KAAA,SAAAC,GACAV,EAAAR,eACAQ,EAAAR,YAAAkB,EAAAxB,SAGAyB,QAdA,SAcAC,EAAAC,GAAA,GAAAC,GAAA1B,IAEAA,MAAAkB,WAAA,uBAAApB,MAAA6B,cAAAH,EAAAG,cAAAC,WAAA5B,KAAAa,WAAAI,gBAAAI,KAAA,SAAAC,GACA,GAAAA,EAAAxB,KAAA+B,OAAA,GACAL,EAAAP,aAAAS,EAAAb,WAAAI,aACAO,EAAAM,gBAAA,KACA,MAAAN,EAAAO,qBACAP,GAAAO,eAEAP,EAAAO,eAAAP,EAAAO,eAAA,EAEA,IAAAjC,IACAgB,UAAA,YACAkB,WAAAR,EAEAA,GAAAS,SAAAT,EAAAU,iBAAAV,EAAAW,cAIAT,EAAAR,WAAA,uBAAApB,SACAqB,WAAA,KACAC,UAAA,UACAC,KAAA,SAAAC,GACAI,EAAAvB,OAAA,EAEAuB,EAAAhB,OACAgB,EAAAU,aAAA,WAVAV,EAAAU,aAAA,6BAcAV,GAAAU,aAAA,iBAKAC,aAjDA,SAiDAZ,EAAAD,GAAA,GAAAc,GAAAtC,IAEAwB,GAAAe,GAIAvC,KAAAoC,aAAA,uCAAAf,KAAA,SAAAC,GACA,eAAAA,EAAA,CACA,GAAAkB,GAAA,GAAA7C,GAAA8C,cACAD,GAAA9B,KAAA,gCAAAc,EAAAe,IAAAlB,KAAA,SAAAC,GACAgB,EAAA5B,YANAV,KAAAI,YAAAsC,OAAAjB,EAAA,IAYAkB,UAjEA,WAkEA3C,KAAAI,YAAAwC,MACAb,eAAA,GACAJ,cAAA3B,KAAAK,iBD5CMwC,IACA,SAAUxD,EAAQC,EAASC,GE5GjCD,EAAAD,EAAAC,QAAAC,EAAA,KAKAD,EAAAsD,MAAAvD,EAAAkD,GAAA,0NAAiP,IAAQO,QAAA,EAAAC,SAAA,4EAAAC,SAAAC,SAAA,2FAAAC,KAAA,+BAAAC,gBAAA,2NAAoeC,WAAA,iBFqHvtBC,IACA,SAAUhE,EAAQC,EAASC,GGxHjC,GAAA+D,GAAA/D,EAAA,IACA,iBAAA+D,SAAAjE,EAAAkD,GAAAe,EAAA,KAEA/D,GAAA,GAAA+D,KACAA,GAAAC,SAAAlE,EAAAC,QAAAgE,EAAAC,SH8IMC,IACA,SAAUnE,EAAQC,GItJxBD,EAAAC,QAAA,8pEJ4JMmE,IACA,SAAUpE,EAAQC,EAASC,GK7JjC,GAAAmE,GAAAC,EACAC,IACArE,GAAA,KACAmE,EAAAnE,EAAA,KACAoE,EAAApE,EAAA,KACAF,EAAAC,QAAAoE,MACArE,EAAAC,QAAAuE,aAAAxE,EAAAC,QAAAD,EAAAC,QAAAM,QACA,IAAAkE,GAAA,kBAAAzE,GAAAC,QAAAD,EAAAC,QAAAyE,UAAA1E,EAAAC,QAAAyE,YAAoH1E,EAAAC,OACpHqE,KACAG,EAAAE,SAAAL,GAEAG,EAAAG,WAAAH,EAAAG,aACAzE,OAAA0E,KAAAN,GAAAO,QAAA,SAAAC,GACA,GAAA/E,GAAAuE,EAAAQ,EACAN,GAAAG,SAAAG,GAAA,WAA6C,MAAA/E","file":"26.js","sourcesContent":["webpackJsonp([26],{\n\n/***/ 380:\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t\n\tObject.defineProperty(exports, \"__esModule\", {\n\t value: true\n\t});\n\t\n\tvar _vueClient = __webpack_require__(3);\n\t\n\texports.default = {\n\t title: '设备信息',\n\t data: function data() {\n\t return {\n\t devicetypes: this.$appdata.getParam('设备类型'),\n\t flagg: true,\n\t devicesinfo: [],\n\t userinfoid: '',\n\t imgdelete: 'images/mainicon/deletedevice.png',\n\t imgadd: 'images/mainicon/adddevice.png'\n\t };\n\t },\n\t\n\t props: ['selectdata', 'edit'],\n\t ready: function ready() {\n\t this.load();\n\t },\n\t\n\t methods: {\n\t load: function load() {\n\t var _this = this;\n\t\n\t if (!this.selectdata) return;\n\t var data = {\n\t tablename: 't_devices',\n\t condition: 'f_process_id=' + '\\'' + String(this.selectdata.f_process_id) + '\\''\n\t };\n\t this.$resetpost('rs/sql/singleTable', { data: data }, { resolveMsg: null, rejectMsg: '查询失败' }).then(function (res) {\n\t _this.devicesinfo = [];\n\t _this.devicesinfo = res.data;\n\t });\n\t },\n\t confirm: function confirm(row, index) {\n\t var _this2 = this;\n\t\n\t this.$resetpost('rs/sql/findUserInfo', { data: { f_userinfo_id: row.f_userinfo_id, process_id: this.selectdata.f_process_id } }).then(function (res) {\n\t if (res.data.length > 0) {\n\t row.f_process_id = _this2.selectdata.f_process_id;\n\t row.f_devices_state = '正常';\n\t if (row.f_devices_type == '[]') {\n\t delete row.f_devices_type;\n\t } else {\n\t row.f_devices_type = row.f_devices_type[0];\n\t }\n\t var data = {\n\t tablename: 't_devices',\n\t parameters: row\n\t };\n\t if (!(row.f_brand && row.f_devices_model && row.f_devices_num)) {\n\t _this2.$showMessage(\"请检查设备品牌,设备型号,设备数量是否填写\");\n\t } else {\n\t _this2.$resetpost('rs/logic/saveentity', { data: data }, {\n\t resolveMsg: null,\n\t rejectMsg: '添加失败!'\n\t }).then(function (res) {\n\t _this2.flagg = false;\n\t\n\t _this2.load();\n\t _this2.$showMessage(\"添加成功!\");\n\t });\n\t }\n\t } else {\n\t _this2.$showMessage(\"不存在的户档案编号!\");\n\t }\n\t });\n\t },\n\t deleteDevice: function deleteDevice(index, row) {\n\t var _this3 = this;\n\t\n\t if (!row.id) {\n\t this.devicesinfo.splice(index, 1);\n\t } else {\n\t this.$showMessage('删除后不可恢复,确认删除吗?', ['confirm', 'cancel']).then(function (res) {\n\t if (res === 'confirm') {\n\t var http = new _vueClient.HttpResetClass();\n\t http.load('DELETE', 'rs/entity/t_devices/' + row.id).then(function (res) {\n\t _this3.load();\n\t });\n\t }\n\t });\n\t }\n\t },\n\t addDevice: function addDevice() {\n\t this.devicesinfo.push({\n\t f_devices_type: '',\n\t f_userinfo_id: this.userinfoid\n\t });\n\t }\n\t }\n\t\n\t};\n\n/***/ }),\n\n/***/ 482:\n/***/ (function(module, exports, __webpack_require__) {\n\n\texports = module.exports = __webpack_require__(4)();\n\t// imports\n\t\n\t\n\t// module\n\texports.push([module.id, \".flex-deviceinfo{padding:0 20px;-ms-flex-pack:justify;justify-content:space-between;height:auto;-ms-flex-wrap:wrap;flex-wrap:wrap}.flex-two-info{margin-bottom:10px;-ms-flex-align:center;align-items:center;width:48%}\", \"\", {\"version\":3,\"sources\":[\"/./src/components/product/Process/Processes/CustomerEquipmentMessage.vue\"],\"names\":[],\"mappings\":\"AAAA,iBAAiB,eAAe,sBAAsB,8BAA8B,YAAY,mBAAmB,cAAc,CAAC,eAAe,mBAAmB,sBAAsB,mBAAmB,SAAS,CAAC\",\"file\":\"CustomerEquipmentMessage.vue\",\"sourcesContent\":[\".flex-deviceinfo{padding:0 20px;-ms-flex-pack:justify;justify-content:space-between;height:auto;-ms-flex-wrap:wrap;flex-wrap:wrap}.flex-two-info{margin-bottom:10px;-ms-flex-align:center;align-items:center;width:48%}\"],\"sourceRoot\":\"webpack://\"}]);\n\t\n\t// exports\n\n\n/***/ }),\n\n/***/ 529:\n/***/ (function(module, exports, __webpack_require__) {\n\n\t// style-loader: Adds some css to the DOM by adding a <style> tag\n\t\n\t// load the styles\n\tvar content = __webpack_require__(482);\n\tif(typeof content === 'string') content = [[module.id, content, '']];\n\t// add the styles to the DOM\n\tvar update = __webpack_require__(5)(content, {});\n\tif(content.locals) module.exports = content.locals;\n\t// Hot Module Replacement\n\tif(false) {\n\t\t// When the styles change, update the <style> tags\n\t\tif(!content.locals) {\n\t\t\tmodule.hot.accept(\"!!../../../../../node_modules/css-loader/index.js?sourceMap!../../../../../node_modules/vue-loader/lib/style-rewriter.js!../../../../../node_modules/less-loader/index.js?sourceMap!../../../../../node_modules/vue-loader/lib/selector.js?type=style&index=0!./CustomerEquipmentMessage.vue\", function() {\n\t\t\t\tvar newContent = require(\"!!../../../../../node_modules/css-loader/index.js?sourceMap!../../../../../node_modules/vue-loader/lib/style-rewriter.js!../../../../../node_modules/less-loader/index.js?sourceMap!../../../../../node_modules/vue-loader/lib/selector.js?type=style&index=0!./CustomerEquipmentMessage.vue\");\n\t\t\t\tif(typeof newContent === 'string') newContent = [[module.id, newContent, '']];\n\t\t\t\tupdate(newContent);\n\t\t\t});\n\t\t}\n\t\t// When the module is disposed, remove the <style> tags\n\t\tmodule.hot.dispose(function() { update(); });\n\t}\n\n/***/ }),\n\n/***/ 753:\n/***/ (function(module, exports) {\n\n\tmodule.exports = \" <div class=\\\"flex-row flex-deviceinfo\\\"> <div class=\\\"flex-row flex-two-info panel panel-default\\\" v-for=\\\"row in devicesinfo\\\"> <avatar-upload :img-src.sync=row.img.content :filename.sync=\\\"row.img.filename \\\"></avatar-upload> <form class=form-horizontal style=\\\"flex: 1\\\"> <div class=\\\"form-group auto\\\" style=\\\"margin-top: 10px;margin-left: 10px\\\"> <div class=col-sm-6 style=\\\"padding-right: 5px\\\" id=userfiles-useDevInf-设备类型> <v-select :value.sync=row.f_devices_type v-model=row.f_devices_type :options=devicetypes placeholder=设备类型 close-on-select></v-select> </div> <div class=col-sm-6 style=\\\"padding-right: 5px\\\"> <input type=text class=form-control v-else v-model=row.f_devices_no placeholder=设备编号 v-next-el=\\\"{id: $index+'brand'}\\\"> </div> </div> <div class=\\\"form-group auto\\\" style=\\\"margin-left: 10px\\\"> <div class=col-sm-6 style=\\\"padding-right: 5px\\\"> <input type=text class=form-control v-model=row.f_brand placeholder=设备品牌 v-next-el=\\\"{id: $index+'devicesmodel'}\\\" :id=\\\"$index+'brand'\\\"> </div> <div class=col-sm-6 style=\\\"padding-right: 5px\\\"> <input type=text class=form-control v-model=row.f_devices_model placeholder=设备型号 :id=\\\"$index+'devicesmodel'\\\"> </div> </div> <div class=\\\"form-group auto\\\" style=\\\"margin-left: 10px\\\"> <div class=col-sm-6 style=\\\"padding-right: 5px\\\"> <input type=number class=form-control v-model=row.f_devices_num placeholder=设备数量 :id=\\\"$index+'devicesnum'\\\"> </div> <div class=col-sm-6 style=\\\"padding-right: 5px\\\"> <input type=text class=form-control v-model=row.f_userinfo_id placeholder=户档案编号> </div> <div class=col-sm-6 style=\\\"padding-right: 5px\\\"> </div> </div> <div class=\\\"form-group auto\\\" style=\\\"margin-left: 10px\\\"> <div class=col-sm-6 style=\\\"padding-right: 5px\\\"> <button type=button @click=\\\"deleteDevice($index, row)\\\" class=\\\"btn btn-primary\\\" v-show=edit> 删除 </button> </div> <div class=col-sm-6 style=\\\"padding-right: 5px\\\" v-if=!row.id> <button type=button @click=confirm(row,$index) class=\\\"btn btn-primary\\\" v-show=edit> 提交 </button> </div> </div> </form> </div> <div class=\\\"panel panel-default flex-two-info text-center\\\" style=\\\"line-height: 164px\\\"> <img :src=imgadd alt=图片加载失败 class=img-rounded style=\\\"width: 60px;padding: 10px;cursor: pointer\\\" @click=addDevice()> </div> </div> \";\n\n/***/ }),\n\n/***/ 931:\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar __vue_script__, __vue_template__\n\tvar __vue_styles__ = {}\n\t__webpack_require__(529)\n\t__vue_script__ = __webpack_require__(380)\n\t__vue_template__ = __webpack_require__(753)\n\tmodule.exports = __vue_script__ || {}\n\tif (module.exports.__esModule) module.exports = module.exports.default\n\tvar __vue_options__ = typeof module.exports === \"function\" ? (module.exports.options || (module.exports.options = {})) : module.exports\n\tif (__vue_template__) {\n\t__vue_options__.template = __vue_template__\n\t}\n\tif (!__vue_options__.computed) __vue_options__.computed = {}\n\tObject.keys(__vue_styles__).forEach(function (key) {\n\tvar module = __vue_styles__[key]\n\t__vue_options__.computed[key] = function () { return module }\n\t})\n\n\n/***/ })\n\n});\n\n\n// WEBPACK FOOTER //\n// 26.js","<template>\r\n <div class=\"flex-row flex-deviceinfo\">\r\n <div class=\"flex-row flex-two-info panel panel-default\" v-for=\"row in devicesinfo\">\r\n <avatar-upload :img-src.sync=\"row.img.content\" :filename.sync=\"row.img.filename \"></avatar-upload>\r\n <form class=\"form-horizontal\" style=\"flex: 1;\">\r\n <div class=\"form-group auto\" style=\"margin-top: 10px;margin-left: 10px;\">\r\n <div class=\"col-sm-6\" style=\"padding-right: 5px;\" id=userfiles-useDevInf-设备类型>\r\n <v-select :value.sync=\"row.f_devices_type\" v-model=\"row.f_devices_type\"\r\n :options='devicetypes' placeholder='设备类型'\r\n close-on-select></v-select>\r\n </div>\r\n <div class=\"col-sm-6\" style=\"padding-right: 5px;\">\r\n <input type=\"text\" class=\"form-control\" v-else v-model=\"row.f_devices_no\" placeholder='设备编号' v-next-el=\"{id: $index+'brand'}\" >\r\n </div>\r\n </div>\r\n <div class=\"form-group auto\" style=\"margin-left: 10px;\">\r\n <div class=\"col-sm-6\" style=\"padding-right: 5px;\">\r\n <input type=\"text\" class=\"form-control\" v-model=\"row.f_brand\" placeholder='设备品牌' v-next-el=\"{id: $index+'devicesmodel'}\" :id=\"$index+'brand'\">\r\n </div>\r\n <div class=\"col-sm-6\" style=\"padding-right: 5px;\">\r\n <input type=\"text\" class=\"form-control\" v-model=\"row.f_devices_model\" placeholder='设备型号' :id=\"$index+'devicesmodel'\">\r\n </div>\r\n </div>\r\n <div class=\"form-group auto\" style=\"margin-left: 10px;\">\r\n <div class=\"col-sm-6\" style=\"padding-right: 5px;\">\r\n <input type=\"number\" class=\"form-control\" v-model=\"row.f_devices_num\" placeholder='设备数量' :id=\"$index+'devicesnum'\">\r\n </div>\r\n <div class=\"col-sm-6\" style=\"padding-right: 5px;\">\r\n <input type=\"text\" class=\"form-control\" v-model=\"row.f_userinfo_id\" placeholder='户档案编号' >\r\n </div>\r\n <div class=\"col-sm-6\" style=\"padding-right: 5px;\">\r\n <!--<input type=\"text\" v-show=\"false\" v-model=\"$refs.installtime.value\"-->\r\n <!--v-validate:installtime='{required: true}'/>-->\r\n <!--<datepicker-->\r\n <!--v-model=\"row.f_install_date\" v-ref:installtime-->\r\n <!--:disabled-days-of-Week=\"[]\"-->\r\n <!--:value.sync=\"row.f_install_date\"-->\r\n <!--:show-reset-button=\"reset\"-->\r\n <!--:format=\"'yyyy-MM-dd'\" readonly=\"readonly\">-->\r\n <!--</datepicker>-->\r\n </div>\r\n </div>\r\n <div class=\"form-group auto\" style=\"margin-left: 10px;\">\r\n <div class=\"col-sm-6 \" style=\"padding-right: 5px;\">\r\n <button type=\"button\" @click=\"deleteDevice($index, row)\" class=\"btn btn-primary\" v-show=\"edit\">\r\n 删除\r\n </button>\r\n </div>\r\n <div class=\"col-sm-6 \" style=\"padding-right: 5px;\" v-if=\"!row.id\">\r\n <button type=\"button\" @click=\"confirm(row,$index)\" class=\"btn btn-primary\" v-show=\"edit\">\r\n 提交\r\n </button>\r\n </div>\r\n </div>\r\n </form>\r\n <!--<img :src=\"imgdelete\" alt=\"图片加载失败\" class=\"img-rounded\" style=\"width: 60px;padding: 20px;margin-left: -15px;cursor: pointer;\"-->\r\n <!--@click=\"deleteDevice($index, row)\" v-if=\"row.f_devices_state !== '有效'\">-->\r\n </div>\r\n <div class=\"panel panel-default flex-two-info text-center\" style=\"line-height: 164px;\">\r\n <img :src=\"imgadd\" alt=\"图片加载失败\" class=\"img-rounded\" style=\"width: 60px;padding: 10px;cursor: pointer;\" @click=\"addDevice()\">\r\n </div>\r\n </div>\r\n</template>\r\n\r\n<script>\r\n import {HttpResetClass} from 'vue-client'\r\n export default {\r\n title: '设备信息',\r\n data () {\r\n return {\r\n devicetypes: this.$appdata.getParam('设备类型'),\r\n flagg: true,\r\n devicesinfo:[],\r\n userinfoid:'',\r\n imgdelete: 'images/mainicon/deletedevice.png',\r\n imgadd: 'images/mainicon/adddevice.png'\r\n }\r\n },\r\n props: ['selectdata','edit'],\r\n ready() {\r\n // 获取数据\r\n this.load()\r\n },\r\n methods: {\r\n load() {\r\n if (!this.selectdata)\r\n return\r\n let data = {\r\n tablename: 't_devices',\r\n condition: 'f_process_id=' + '\\'' + String(this.selectdata.f_process_id) + '\\''\r\n }\r\n this.$resetpost('rs/sql/singleTable', {data: data}, {resolveMsg: null, rejectMsg: '查询失败'})\r\n .then((res) => {\r\n this.devicesinfo = []\r\n this.devicesinfo = res.data\r\n })\r\n },\r\n confirm(row, index) {\r\n //提交前先判断填写的户档案编号是否存在\r\n this.$resetpost('rs/sql/findUserInfo', {data:{f_userinfo_id:row.f_userinfo_id,process_id:this.selectdata.f_process_id}}).then((res) => {\r\n if(res.data.length > 0){\r\n row.f_process_id = this.selectdata.f_process_id\r\n row.f_devices_state = '正常'\r\n if(row.f_devices_type == '[]'){\r\n delete row.f_devices_type\r\n }else{\r\n row.f_devices_type = row.f_devices_type[0]\r\n }\r\n let data ={\r\n tablename:'t_devices',\r\n parameters:row\r\n }\r\n if(!(row.f_brand&&row.f_devices_model&&row.f_devices_num)){\r\n this.$showMessage(\"请检查设备品牌,设备型号,设备数量是否填写\")\r\n\r\n }else{\r\n this.$resetpost('rs/logic/saveentity', {data:data},{\r\n resolveMsg: null,\r\n rejectMsg: '添加失败!'\r\n }).then((res) => {\r\n this.flagg = false\r\n // 如果没有id,需要在数组中添加\r\n this.load()\r\n this.$showMessage(\"添加成功!\")\r\n })\r\n }\r\n }else {\r\n this.$showMessage(\"不存在的户档案编号!\")\r\n }\r\n })\r\n\r\n },\r\n deleteDevice (index, row) {\r\n // this.devicesinfo.splice(index, 1)\r\n if (!row.id) {\r\n // 没有id 从数组里删除\r\n this.devicesinfo.splice(index, 1)\r\n } else {\r\n this.$showMessage('删除后不可恢复,确认删除吗?', ['confirm', 'cancel']).then((res) => {\r\n if (res === 'confirm') {\r\n let http = new HttpResetClass()\r\n http.load('DELETE',`rs/entity/t_devices/${row.id}`).then((res) => {\r\n this.load()\r\n })\r\n }\r\n })\r\n }\r\n },\r\n addDevice () {\r\n this.devicesinfo.push({\r\n f_devices_type: '',\r\n f_userinfo_id: this.userinfoid\r\n // f_install_date: this.$login.toStandardTimeString()\r\n })\r\n },\r\n },\r\n\r\n }\r\n</script>\r\n<style lang=\"less\">\r\n .flex-deviceinfo {\r\n padding: 0px 20px;\r\n justify-content: space-between;\r\n height: auto;\r\n flex-wrap: wrap;\r\n }\r\n .flex-two-info {\r\n margin-bottom: 10px;\r\n align-items: center;\r\n width: 48%;\r\n }\r\n</style>\r\n\n\n\n// WEBPACK FOOTER //\n// CustomerEquipmentMessage.vue?06fea24d","exports = module.exports = require(\"../../../../../node_modules/css-loader/lib/css-base.js\")();\n// imports\n\n\n// module\nexports.push([module.id, \".flex-deviceinfo{padding:0 20px;-ms-flex-pack:justify;justify-content:space-between;height:auto;-ms-flex-wrap:wrap;flex-wrap:wrap}.flex-two-info{margin-bottom:10px;-ms-flex-align:center;align-items:center;width:48%}\", \"\", {\"version\":3,\"sources\":[\"/./src/components/product/Process/Processes/CustomerEquipmentMessage.vue\"],\"names\":[],\"mappings\":\"AAAA,iBAAiB,eAAe,sBAAsB,8BAA8B,YAAY,mBAAmB,cAAc,CAAC,eAAe,mBAAmB,sBAAsB,mBAAmB,SAAS,CAAC\",\"file\":\"CustomerEquipmentMessage.vue\",\"sourcesContent\":[\".flex-deviceinfo{padding:0 20px;-ms-flex-pack:justify;justify-content:space-between;height:auto;-ms-flex-wrap:wrap;flex-wrap:wrap}.flex-two-info{margin-bottom:10px;-ms-flex-align:center;align-items:center;width:48%}\"],\"sourceRoot\":\"webpack://\"}]);\n\n// exports\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./~/css-loader?sourceMap!./~/vue-loader/lib/style-rewriter.js!./~/less-loader?sourceMap!./~/vue-loader/lib/selector.js?type=style&index=0!./src/components/product/Process/Processes/CustomerEquipmentMessage.vue\n// module id = 482\n// module chunks = 26","// style-loader: Adds some css to the DOM by adding a <style> tag\n\n// load the styles\nvar content = require(\"!!../../../../../node_modules/css-loader/index.js?sourceMap!../../../../../node_modules/vue-loader/lib/style-rewriter.js!../../../../../node_modules/less-loader/index.js?sourceMap!../../../../../node_modules/vue-loader/lib/selector.js?type=style&index=0!./CustomerEquipmentMessage.vue\");\nif(typeof content === 'string') content = [[module.id, content, '']];\n// add the styles to the DOM\nvar update = require(\"!../../../../../node_modules/vue-style-loader/addStyles.js\")(content, {});\nif(content.locals) module.exports = content.locals;\n// Hot Module Replacement\nif(module.hot) {\n\t// When the styles change, update the <style> tags\n\tif(!content.locals) {\n\t\tmodule.hot.accept(\"!!../../../../../node_modules/css-loader/index.js?sourceMap!../../../../../node_modules/vue-loader/lib/style-rewriter.js!../../../../../node_modules/less-loader/index.js?sourceMap!../../../../../node_modules/vue-loader/lib/selector.js?type=style&index=0!./CustomerEquipmentMessage.vue\", function() {\n\t\t\tvar newContent = require(\"!!../../../../../node_modules/css-loader/index.js?sourceMap!../../../../../node_modules/vue-loader/lib/style-rewriter.js!../../../../../node_modules/less-loader/index.js?sourceMap!../../../../../node_modules/vue-loader/lib/selector.js?type=style&index=0!./CustomerEquipmentMessage.vue\");\n\t\t\tif(typeof newContent === 'string') newContent = [[module.id, newContent, '']];\n\t\t\tupdate(newContent);\n\t\t});\n\t}\n\t// When the module is disposed, remove the <style> tags\n\tmodule.hot.dispose(function() { update(); });\n}\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./~/extract-text-webpack-plugin/loader.js?{\"omit\":1,\"extract\":true,\"remove\":true}!./~/vue-style-loader!./~/css-loader?sourceMap!./~/vue-loader/lib/style-rewriter.js!./~/less-loader?sourceMap!./~/vue-loader/lib/selector.js?type=style&index=0!./src/components/product/Process/Processes/CustomerEquipmentMessage.vue\n// module id = 529\n// module chunks = 26","module.exports = \" <div class=\\\"flex-row flex-deviceinfo\\\"> <div class=\\\"flex-row flex-two-info panel panel-default\\\" v-for=\\\"row in devicesinfo\\\"> <avatar-upload :img-src.sync=row.img.content :filename.sync=\\\"row.img.filename \\\"></avatar-upload> <form class=form-horizontal style=\\\"flex: 1\\\"> <div class=\\\"form-group auto\\\" style=\\\"margin-top: 10px;margin-left: 10px\\\"> <div class=col-sm-6 style=\\\"padding-right: 5px\\\" id=userfiles-useDevInf-设备类型> <v-select :value.sync=row.f_devices_type v-model=row.f_devices_type :options=devicetypes placeholder=设备类型 close-on-select></v-select> </div> <div class=col-sm-6 style=\\\"padding-right: 5px\\\"> <input type=text class=form-control v-else v-model=row.f_devices_no placeholder=设备编号 v-next-el=\\\"{id: $index+'brand'}\\\"> </div> </div> <div class=\\\"form-group auto\\\" style=\\\"margin-left: 10px\\\"> <div class=col-sm-6 style=\\\"padding-right: 5px\\\"> <input type=text class=form-control v-model=row.f_brand placeholder=设备品牌 v-next-el=\\\"{id: $index+'devicesmodel'}\\\" :id=\\\"$index+'brand'\\\"> </div> <div class=col-sm-6 style=\\\"padding-right: 5px\\\"> <input type=text class=form-control v-model=row.f_devices_model placeholder=设备型号 :id=\\\"$index+'devicesmodel'\\\"> </div> </div> <div class=\\\"form-group auto\\\" style=\\\"margin-left: 10px\\\"> <div class=col-sm-6 style=\\\"padding-right: 5px\\\"> <input type=number class=form-control v-model=row.f_devices_num placeholder=设备数量 :id=\\\"$index+'devicesnum'\\\"> </div> <div class=col-sm-6 style=\\\"padding-right: 5px\\\"> <input type=text class=form-control v-model=row.f_userinfo_id placeholder=户档案编号> </div> <div class=col-sm-6 style=\\\"padding-right: 5px\\\"> </div> </div> <div class=\\\"form-group auto\\\" style=\\\"margin-left: 10px\\\"> <div class=col-sm-6 style=\\\"padding-right: 5px\\\"> <button type=button @click=\\\"deleteDevice($index, row)\\\" class=\\\"btn btn-primary\\\" v-show=edit> 删除 </button> </div> <div class=col-sm-6 style=\\\"padding-right: 5px\\\" v-if=!row.id> <button type=button @click=confirm(row,$index) class=\\\"btn btn-primary\\\" v-show=edit> 提交 </button> </div> </div> </form> </div> <div class=\\\"panel panel-default flex-two-info text-center\\\" style=\\\"line-height: 164px\\\"> <img :src=imgadd alt=图片加载失败 class=img-rounded style=\\\"width: 60px;padding: 10px;cursor: pointer\\\" @click=addDevice()> </div> </div> \";\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./~/vue-html-loader!./~/vue-loader/lib/selector.js?type=template&index=0!./src/components/product/Process/Processes/CustomerEquipmentMessage.vue\n// module id = 753\n// module chunks = 26","var __vue_script__, __vue_template__\nvar __vue_styles__ = {}\nrequire(\"!!../../../../../node_modules/extract-text-webpack-plugin/loader.js?{\\\"omit\\\":1,\\\"extract\\\":true,\\\"remove\\\":true}!vue-style-loader!css-loader?sourceMap!../../../../../node_modules/vue-loader/lib/style-rewriter.js!less-loader?sourceMap!../../../../../node_modules/vue-loader/lib/selector.js?type=style&index=0!./CustomerEquipmentMessage.vue\")\n__vue_script__ = require(\"!!babel-loader?presets[]=es2015&plugins[]=transform-runtime&comments=false!../../../../../node_modules/vue-loader/lib/selector.js?type=script&index=0!./CustomerEquipmentMessage.vue\")\n__vue_template__ = require(\"!!vue-html-loader!../../../../../node_modules/vue-loader/lib/selector.js?type=template&index=0!./CustomerEquipmentMessage.vue\")\nmodule.exports = __vue_script__ || {}\nif (module.exports.__esModule) module.exports = module.exports.default\nvar __vue_options__ = typeof module.exports === \"function\" ? (module.exports.options || (module.exports.options = {})) : module.exports\nif (__vue_template__) {\n__vue_options__.template = __vue_template__\n}\nif (!__vue_options__.computed) __vue_options__.computed = {}\nObject.keys(__vue_styles__).forEach(function (key) {\nvar module = __vue_styles__[key]\n__vue_options__.computed[key] = function () { return module }\n})\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./src/components/product/Process/Processes/CustomerEquipmentMessage.vue\n// module id = 931\n// module chunks = 26"],"sourceRoot":""}
@@ -1,2 +0,0 @@
1
- webpackJsonp([27],{378:function(n,e,s){"use strict";function t(n){return n&&n.__esModule?n:{default:n}}Object.defineProperty(e,"__esModule",{value:!0});var a=s(2),o=t(a),i=s(7),l=t(i),r=s(3);e.default={title:"通气点火信息",data:function(){return{data:null,defnames:null,showpanl:[]}},props:["selectdata"],methods:{initializtion:function(){for(var n=[],e=0;e<this.defnames.length;e++)for(var s=0;s<this.$workflow_vue.activitys.length;s++)if(this.defnames[e].defname===this.$workflow_vue.activitys[s].title){var t=this.$workflow_vue.activitys[s];this.defnames[e].hasOwnProperty("person")&&(t.person=this.defnames[e].person),this.showpanl.push({hasError:!1,show:!0,showdef:!0,showinfo:!1}),n.push(t)}for(var a=0;a<n.length;a++)for(var o=0;o<n[a].fields.length;o++)if(n[a].fields[o].hasOwnProperty("field"))n[a].fields[o].value=this.selectdata[n[a].fields[o].field];else if(n[a].fields[o].hasOwnProperty("items"))for(var i=0;i<n[a].fields[o].items.length;i++)n[a].fields[o].items[i].value=this.selectdata[n[a].fields[o].items[i].field];this.data=n},hello:function(n){this.selectdata.defname&&(this.showpanl[n].show?(this.showpanl[n].show=!1,this.showpanl[n].hasError=!0):(this.showpanl[n].show=!0,this.showpanl[n].hasError=!1))}},watch:{selectdata:function(){function n(){return e.apply(this,arguments)}var e=(0,l.default)(o.default.mark(function n(){var e,s,t,a,i,l;return o.default.wrap(function(n){for(;;)switch(n.prev=n.next){case 0:if(e=new r.HttpResetClass,s=[],!this.selectdata){n.next=8;break}return n.next=5,e.load("POST","rs/sql/getdefname",{data:{processid:this.selectdata.f_process_id}},{resolveMsg:null,rejectMsg:null});case 5:for(t=n.sent,a=0;a<t.data.length;a++){for(i=!0,l=0;l<s.length;l++)t.data[a].defname==s[l].defname&&(i=!1);i&&s.push(t.data[a])}this.defnames=s;case 8:this.initializtion();case 9:case"end":return n.stop()}},n,this)}));return n}()}}},515:function(n,e,s){e=n.exports=s(4)(),e.push([n.id,".background-default[_v-825ff3c4]{background-color:#f2f6fa}","",{version:3,sources:["/./src/components/product/Process/ProcessInfo/history_control.vue"],names:[],mappings:"AAyGA,iCACE,wBAA0B,CAC3B",file:"history_control.vue",sourcesContent:["\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n.background-default[_v-825ff3c4]{\n background-color: #F2F6FA;\n}\n\n"],sourceRoot:"webpack://"}])},604:function(n,e,s){var t=s(515);"string"==typeof t&&(t=[[n.id,t,""]]);s(5)(t,{});t.locals&&(n.exports=t.locals)},800:function(n,e){n.exports=' <div class=auto style="padding-right:5px; padding-top: 10px" _v-825ff3c4=""> <validator name=v _v-825ff3c4=""> <div v-for="(index,item) in data" class=panel v-bind:class="{\'panel-default\': showpanl[index].showdef, \' panel-info \' : showpanl[index].showinfo}" _v-825ff3c4=""> <div :class="{\'panel-heading background-default\':showpanl[index].show,\'panel-heading\':!showpanl[index].show}" @click=hello(index) _v-825ff3c4=""> <h3 class=panel-title _v-825ff3c4="">{{item.title}}信息:{{item.person}}<span class="pull-right glyphicon" v-bind:class="{\'glyphicon-chevron-right\': showpanl[index].show, \'glyphicon-chevron-down\' : showpanl[index].hasError}" _v-825ff3c4=""></span></h3> </div> <div class=panel-body v-if=showpanl[index].hasError _v-825ff3c4=""> <div class=col-sm-12 _v-825ff3c4=""> <div v-for="(index2,row) in item.fields" _v-825ff3c4=""> <span v-if="row.hasOwnProperty(\'field\')" class=col-sm-6 _v-825ff3c4="">{{item.fields[index2].label}}:{{item.fields[index2].value}}</span> <span v-else="" class=col-sm-6 v-for="(index3,arr) in row.items" _v-825ff3c4="">{{arr.label}}:{{arr.value?\'是\':\'否\'}}</span> </div> </div> </div> </div> </validator> </div> '},929:function(n,e,s){var t,a,o={};s(604),t=s(378),a=s(800),n.exports=t||{},n.exports.__esModule&&(n.exports=n.exports.default);var i="function"==typeof n.exports?n.exports.options||(n.exports.options={}):n.exports;a&&(i.template=a),i.computed||(i.computed={}),Object.keys(o).forEach(function(n){var e=o[n];i.computed[n]=function(){return e}})}});
2
- //# sourceMappingURL=27.js.map
@@ -1 +0,0 @@
1
- {"version":3,"sources":["webpack:///27.js","webpack:///history_control.vue","webpack:///./src/components/product/Process/ProcessInfo/history_control.vue?bd7c","webpack:///./src/components/product/Process/ProcessInfo/history_control.vue?52b8","webpack:///./src/components/product/Process/ProcessInfo/history_control.vue?653b","webpack:///./src/components/product/Process/ProcessInfo/history_control.vue"],"names":["webpackJsonp","378","module","exports","__webpack_require__","_interopRequireDefault","obj","__esModule","default","Object","defineProperty","value","_regenerator","_regenerator2","_asyncToGenerator2","_asyncToGenerator3","_vueClient","title","data","defnames","showpanl","props","methods","initializtion","tempArray","i","this","length","j","$workflow_vue","activitys","defname","temp","hasOwnProperty","person","push","hasError","show","showdef","showinfo","_i","_j","fields","selectdata","field","k","items","hello","index","watch","_ref","apply","arguments","mark","_callee","http","res","flag","wrap","_context","prev","next","HttpResetClass","load","processid","f_process_id","resolveMsg","rejectMsg","sent","stop","515","id","version","sources","names","mappings","file","sourcesContent","sourceRoot","604","content","locals","800","929","__vue_script__","__vue_template__","__vue_styles__","__vue_options__","options","template","computed","keys","forEach","key"],"mappings":"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","file":"27.js","sourcesContent":["webpackJsonp([27],{\n\n/***/ 378:\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t\n\tObject.defineProperty(exports, \"__esModule\", {\n\t value: true\n\t});\n\t\n\tvar _regenerator = __webpack_require__(2);\n\t\n\tvar _regenerator2 = _interopRequireDefault(_regenerator);\n\t\n\tvar _asyncToGenerator2 = __webpack_require__(7);\n\t\n\tvar _asyncToGenerator3 = _interopRequireDefault(_asyncToGenerator2);\n\t\n\tvar _vueClient = __webpack_require__(3);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\texports.default = {\n\t title: '通气点火信息',\n\t data: function data() {\n\t return {\n\t data: null,\n\t defnames: null,\n\t showpanl: []\n\t };\n\t },\n\t\n\t props: ['selectdata'],\n\t methods: {\n\t initializtion: function initializtion() {\n\t var tempArray = [];\n\t\n\t for (var i = 0; i < this.defnames.length; i++) {\n\t for (var j = 0; j < this.$workflow_vue.activitys.length; j++) {\n\t if (this.defnames[i].defname === this.$workflow_vue.activitys[j].title) {\n\t var temp = this.$workflow_vue.activitys[j];\n\t if (this.defnames[i].hasOwnProperty('person')) {\n\t temp.person = this.defnames[i].person;\n\t }\n\t this.showpanl.push({ hasError: false, show: true, showdef: true, showinfo: false });\n\t tempArray.push(temp);\n\t }\n\t }\n\t }\n\t\n\t for (var _i = 0; _i < tempArray.length; _i++) {\n\t for (var _j = 0; _j < tempArray[_i].fields.length; _j++) {\n\t if (tempArray[_i].fields[_j].hasOwnProperty('field')) {\n\t tempArray[_i].fields[_j].value = this.selectdata[tempArray[_i].fields[_j].field];\n\t } else if (tempArray[_i].fields[_j].hasOwnProperty('items')) {\n\t for (var k = 0; k < tempArray[_i].fields[_j].items.length; k++) {\n\t tempArray[_i].fields[_j].items[k].value = this.selectdata[tempArray[_i].fields[_j].items[k].field];\n\t }\n\t }\n\t }\n\t }\n\t this.data = tempArray;\n\t },\n\t hello: function hello(index) {\n\t if (!this.selectdata.defname) {\n\t return;\n\t }\n\t if (this.showpanl[index].show) {\n\t this.showpanl[index].show = false;\n\t this.showpanl[index].hasError = true;\n\t } else {\n\t this.showpanl[index].show = true;\n\t this.showpanl[index].hasError = false;\n\t }\n\t }\n\t },\n\t watch: {\n\t 'selectdata': function () {\n\t var _ref = (0, _asyncToGenerator3.default)(_regenerator2.default.mark(function _callee() {\n\t var http, temp, res, i, flag, j;\n\t return _regenerator2.default.wrap(function _callee$(_context) {\n\t while (1) {\n\t switch (_context.prev = _context.next) {\n\t case 0:\n\t http = new _vueClient.HttpResetClass();\n\t temp = [];\n\t\n\t if (!this.selectdata) {\n\t _context.next = 8;\n\t break;\n\t }\n\t\n\t _context.next = 5;\n\t return http.load('POST', 'rs/sql/getdefname', { data: { processid: this.selectdata.f_process_id } }, { resolveMsg: null, rejectMsg: null });\n\t\n\t case 5:\n\t res = _context.sent;\n\t\n\t for (i = 0; i < res.data.length; i++) {\n\t flag = true;\n\t\n\t for (j = 0; j < temp.length; j++) {\n\t if (res.data[i].defname == temp[j].defname) {\n\t flag = false;\n\t }\n\t }\n\t if (flag) {\n\t temp.push(res.data[i]);\n\t }\n\t }\n\t this.defnames = temp;\n\t\n\t case 8:\n\t this.initializtion();\n\t\n\t case 9:\n\t case 'end':\n\t return _context.stop();\n\t }\n\t }\n\t }, _callee, this);\n\t }));\n\t\n\t function selectdata() {\n\t return _ref.apply(this, arguments);\n\t }\n\t\n\t return selectdata;\n\t }()\n\t }\n\t};\n\n/***/ }),\n\n/***/ 515:\n/***/ (function(module, exports, __webpack_require__) {\n\n\texports = module.exports = __webpack_require__(4)();\n\t// imports\n\t\n\t\n\t// module\n\texports.push([module.id, \".background-default[_v-825ff3c4]{background-color:#f2f6fa}\", \"\", {\"version\":3,\"sources\":[\"/./src/components/product/Process/ProcessInfo/history_control.vue\"],\"names\":[],\"mappings\":\"AAyGA,iCACE,wBAA0B,CAC3B\",\"file\":\"history_control.vue\",\"sourcesContent\":[\"\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n.background-default[_v-825ff3c4]{\\n background-color: #F2F6FA;\\n}\\n\\n\"],\"sourceRoot\":\"webpack://\"}]);\n\t\n\t// exports\n\n\n/***/ }),\n\n/***/ 604:\n/***/ (function(module, exports, __webpack_require__) {\n\n\t// style-loader: Adds some css to the DOM by adding a <style> tag\n\t\n\t// load the styles\n\tvar content = __webpack_require__(515);\n\tif(typeof content === 'string') content = [[module.id, content, '']];\n\t// add the styles to the DOM\n\tvar update = __webpack_require__(5)(content, {});\n\tif(content.locals) module.exports = content.locals;\n\t// Hot Module Replacement\n\tif(false) {\n\t\t// When the styles change, update the <style> tags\n\t\tif(!content.locals) {\n\t\t\tmodule.hot.accept(\"!!../../../../../node_modules/css-loader/index.js?sourceMap!../../../../../node_modules/vue-loader/lib/style-rewriter.js?id=_v-825ff3c4&scoped=true!../../../../../node_modules/vue-loader/lib/selector.js?type=style&index=0!./history_control.vue\", function() {\n\t\t\t\tvar newContent = require(\"!!../../../../../node_modules/css-loader/index.js?sourceMap!../../../../../node_modules/vue-loader/lib/style-rewriter.js?id=_v-825ff3c4&scoped=true!../../../../../node_modules/vue-loader/lib/selector.js?type=style&index=0!./history_control.vue\");\n\t\t\t\tif(typeof newContent === 'string') newContent = [[module.id, newContent, '']];\n\t\t\t\tupdate(newContent);\n\t\t\t});\n\t\t}\n\t\t// When the module is disposed, remove the <style> tags\n\t\tmodule.hot.dispose(function() { update(); });\n\t}\n\n/***/ }),\n\n/***/ 800:\n/***/ (function(module, exports) {\n\n\tmodule.exports = \" <div class=auto style=\\\"padding-right:5px; padding-top: 10px\\\" _v-825ff3c4=\\\"\\\"> <validator name=v _v-825ff3c4=\\\"\\\"> <div v-for=\\\"(index,item) in data\\\" class=panel v-bind:class=\\\"{'panel-default': showpanl[index].showdef, ' panel-info ' : showpanl[index].showinfo}\\\" _v-825ff3c4=\\\"\\\"> <div :class=\\\"{'panel-heading background-default':showpanl[index].show,'panel-heading':!showpanl[index].show}\\\" @click=hello(index) _v-825ff3c4=\\\"\\\"> <h3 class=panel-title _v-825ff3c4=\\\"\\\">{{item.title}}信息:{{item.person}}<span class=\\\"pull-right glyphicon\\\" v-bind:class=\\\"{'glyphicon-chevron-right': showpanl[index].show, 'glyphicon-chevron-down' : showpanl[index].hasError}\\\" _v-825ff3c4=\\\"\\\"></span></h3> </div> <div class=panel-body v-if=showpanl[index].hasError _v-825ff3c4=\\\"\\\"> <div class=col-sm-12 _v-825ff3c4=\\\"\\\"> <div v-for=\\\"(index2,row) in item.fields\\\" _v-825ff3c4=\\\"\\\"> <span v-if=\\\"row.hasOwnProperty('field')\\\" class=col-sm-6 _v-825ff3c4=\\\"\\\">{{item.fields[index2].label}}:{{item.fields[index2].value}}</span> <span v-else=\\\"\\\" class=col-sm-6 v-for=\\\"(index3,arr) in row.items\\\" _v-825ff3c4=\\\"\\\">{{arr.label}}:{{arr.value?'是':'否'}}</span> </div> </div> </div> </div> </validator> </div> \";\n\n/***/ }),\n\n/***/ 929:\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar __vue_script__, __vue_template__\n\tvar __vue_styles__ = {}\n\t__webpack_require__(604)\n\t__vue_script__ = __webpack_require__(378)\n\t__vue_template__ = __webpack_require__(800)\n\tmodule.exports = __vue_script__ || {}\n\tif (module.exports.__esModule) module.exports = module.exports.default\n\tvar __vue_options__ = typeof module.exports === \"function\" ? (module.exports.options || (module.exports.options = {})) : module.exports\n\tif (__vue_template__) {\n\t__vue_options__.template = __vue_template__\n\t}\n\tif (!__vue_options__.computed) __vue_options__.computed = {}\n\tObject.keys(__vue_styles__).forEach(function (key) {\n\tvar module = __vue_styles__[key]\n\t__vue_options__.computed[key] = function () { return module }\n\t})\n\n\n/***/ })\n\n});\n\n\n// WEBPACK FOOTER //\n// 27.js","<template>\r\n <div class=\"auto\" style=\"padding-right:5px; padding-top: 10px;\">\r\n <validator name=\"v\">\r\n\r\n <div v-for=\"(index,item) in data\" class=\"panel\" v-bind:class=\"{'panel-default': showpanl[index].showdef, ' panel-info ' : showpanl[index].showinfo}\">\r\n <div :class=\"{'panel-heading background-default':showpanl[index].show,'panel-heading':!showpanl[index].show}\" @click =\"hello(index)\">\r\n <h3 class=\"panel-title\">{{item.title}}信息:{{item.person}}<span class=\"pull-right glyphicon\" v-bind:class=\"{'glyphicon-chevron-right': showpanl[index].show, 'glyphicon-chevron-down' : showpanl[index].hasError}\"></span></h3>\r\n </div>\r\n <div class=\"panel-body\" v-if=\"showpanl[index].hasError\">\r\n <div class=\"col-sm-12\">\r\n <div v-for=\"(index2,row) in item.fields\">\r\n <span v-if=\"row.hasOwnProperty('field')\" class=\"col-sm-6\">{{item.fields[index2].label}}:{{item.fields[index2].value}}</span>\r\n <span v-else class=\"col-sm-6\" v-for=\"(index3,arr) in row.items\">{{arr.label}}:{{arr.value?'是':'否'}}</span>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n\r\n </validator>\r\n </div>\r\n</template>\r\n<script>\r\n import {HttpResetClass} from 'vue-client'\r\n export default {\r\n title: '通气点火信息',\r\n data () {\r\n return {\r\n data:null,\r\n defnames:null,\r\n showpanl:[]\r\n }\r\n },\r\n props: ['selectdata'],\r\n methods: {\r\n // 初始化 [{label:xx,value:vvv,filed}]\r\n initializtion(){\r\n let tempArray =[]\r\n // 按照数据库defname的顺序排序\r\n for(let i = 0;i<this.defnames.length;i++){\r\n // 配置文件title循环\r\n for(let j = 0;j<this.$workflow_vue.activitys.length;j++){\r\n if(this.defnames[i].defname===this.$workflow_vue.activitys[j].title){\r\n let temp = this.$workflow_vue.activitys[j]\r\n if(this.defnames[i].hasOwnProperty('person')){\r\n temp.person = this.defnames[i].person\r\n }\r\n this.showpanl.push({hasError:false,show:true,showdef:true,showinfo:false})\r\n tempArray.push(temp)\r\n }\r\n }\r\n }\r\n // 给排序后的数组填充数据\r\n for(let i=0;i<tempArray.length;i++){\r\n for(let j = 0;j<tempArray[i].fields.length;j++){\r\n if(tempArray[i].fields[j].hasOwnProperty('field')){\r\n tempArray[i].fields[j].value = this.selectdata[tempArray[i].fields[j].field]\r\n }else if(tempArray[i].fields[j].hasOwnProperty('items')){\r\n for(let k = 0;k<tempArray[i].fields[j].items.length;k++){\r\n tempArray[i].fields[j].items[k].value = this.selectdata[tempArray[i].fields[j].items[k].field]\r\n }\r\n }\r\n }\r\n }\r\n this.data = tempArray\r\n },\r\n hello (index) {\r\n if (!this.selectdata.defname) {\r\n return\r\n }\r\n if (this.showpanl[index].show) {\r\n this.showpanl[index].show = false\r\n this.showpanl[index].hasError = true\r\n } else {\r\n this.showpanl[index].show = true\r\n this.showpanl[index].hasError= false\r\n }\r\n }\r\n },\r\n watch:{\r\n async 'selectdata'(){\r\n let http = new HttpResetClass()\r\n var temp = []\r\n if(this.selectdata){\r\n let res = await http.load('POST','rs/sql/getdefname',{data:{processid:this.selectdata.f_process_id}},{resolveMsg:null, rejectMsg:null})\r\n //循环去除回退导致重复的节点\r\n for (var i = 0; i < res.data.length; i++) {\r\n var flag = true\r\n for (var j = 0; j< temp.length; j++){\r\n if(res.data[i].defname == temp[j].defname){\r\n flag = false\r\n }\r\n }\r\n if(flag){\r\n temp.push(res.data[i])\r\n }\r\n }\r\n this.defnames = temp\r\n }\r\n // 初始化开始\r\n this.initializtion()\r\n }\r\n }\r\n }\r\n</script>\r\n<style scoped>\r\n .background-default{\r\n background-color: #F2F6FA;\r\n }\r\n\r\n</style>\r\n\n\n\n// WEBPACK FOOTER //\n// history_control.vue?506c203d","exports = module.exports = require(\"../../../../../node_modules/css-loader/lib/css-base.js\")();\n// imports\n\n\n// module\nexports.push([module.id, \".background-default[_v-825ff3c4]{background-color:#f2f6fa}\", \"\", {\"version\":3,\"sources\":[\"/./src/components/product/Process/ProcessInfo/history_control.vue\"],\"names\":[],\"mappings\":\"AAyGA,iCACE,wBAA0B,CAC3B\",\"file\":\"history_control.vue\",\"sourcesContent\":[\"\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n.background-default[_v-825ff3c4]{\\n background-color: #F2F6FA;\\n}\\n\\n\"],\"sourceRoot\":\"webpack://\"}]);\n\n// exports\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./~/css-loader?sourceMap!./~/vue-loader/lib/style-rewriter.js?id=_v-825ff3c4&scoped=true!./~/vue-loader/lib/selector.js?type=style&index=0!./src/components/product/Process/ProcessInfo/history_control.vue\n// module id = 515\n// module chunks = 27","// style-loader: Adds some css to the DOM by adding a <style> tag\n\n// load the styles\nvar content = require(\"!!../../../../../node_modules/css-loader/index.js?sourceMap!../../../../../node_modules/vue-loader/lib/style-rewriter.js?id=_v-825ff3c4&scoped=true!../../../../../node_modules/vue-loader/lib/selector.js?type=style&index=0!./history_control.vue\");\nif(typeof content === 'string') content = [[module.id, content, '']];\n// add the styles to the DOM\nvar update = require(\"!../../../../../node_modules/vue-style-loader/addStyles.js\")(content, {});\nif(content.locals) module.exports = content.locals;\n// Hot Module Replacement\nif(module.hot) {\n\t// When the styles change, update the <style> tags\n\tif(!content.locals) {\n\t\tmodule.hot.accept(\"!!../../../../../node_modules/css-loader/index.js?sourceMap!../../../../../node_modules/vue-loader/lib/style-rewriter.js?id=_v-825ff3c4&scoped=true!../../../../../node_modules/vue-loader/lib/selector.js?type=style&index=0!./history_control.vue\", function() {\n\t\t\tvar newContent = require(\"!!../../../../../node_modules/css-loader/index.js?sourceMap!../../../../../node_modules/vue-loader/lib/style-rewriter.js?id=_v-825ff3c4&scoped=true!../../../../../node_modules/vue-loader/lib/selector.js?type=style&index=0!./history_control.vue\");\n\t\t\tif(typeof newContent === 'string') newContent = [[module.id, newContent, '']];\n\t\t\tupdate(newContent);\n\t\t});\n\t}\n\t// When the module is disposed, remove the <style> tags\n\tmodule.hot.dispose(function() { update(); });\n}\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./~/extract-text-webpack-plugin/loader.js?{\"omit\":1,\"extract\":true,\"remove\":true}!./~/vue-style-loader!./~/css-loader?sourceMap!./~/vue-loader/lib/style-rewriter.js?id=_v-825ff3c4&scoped=true!./~/vue-loader/lib/selector.js?type=style&index=0!./src/components/product/Process/ProcessInfo/history_control.vue\n// module id = 604\n// module chunks = 27","module.exports = \" <div class=auto style=\\\"padding-right:5px; padding-top: 10px\\\" _v-825ff3c4=\\\"\\\"> <validator name=v _v-825ff3c4=\\\"\\\"> <div v-for=\\\"(index,item) in data\\\" class=panel v-bind:class=\\\"{'panel-default': showpanl[index].showdef, ' panel-info ' : showpanl[index].showinfo}\\\" _v-825ff3c4=\\\"\\\"> <div :class=\\\"{'panel-heading background-default':showpanl[index].show,'panel-heading':!showpanl[index].show}\\\" @click=hello(index) _v-825ff3c4=\\\"\\\"> <h3 class=panel-title _v-825ff3c4=\\\"\\\">{{item.title}}信息:{{item.person}}<span class=\\\"pull-right glyphicon\\\" v-bind:class=\\\"{'glyphicon-chevron-right': showpanl[index].show, 'glyphicon-chevron-down' : showpanl[index].hasError}\\\" _v-825ff3c4=\\\"\\\"></span></h3> </div> <div class=panel-body v-if=showpanl[index].hasError _v-825ff3c4=\\\"\\\"> <div class=col-sm-12 _v-825ff3c4=\\\"\\\"> <div v-for=\\\"(index2,row) in item.fields\\\" _v-825ff3c4=\\\"\\\"> <span v-if=\\\"row.hasOwnProperty('field')\\\" class=col-sm-6 _v-825ff3c4=\\\"\\\">{{item.fields[index2].label}}:{{item.fields[index2].value}}</span> <span v-else=\\\"\\\" class=col-sm-6 v-for=\\\"(index3,arr) in row.items\\\" _v-825ff3c4=\\\"\\\">{{arr.label}}:{{arr.value?'是':'否'}}</span> </div> </div> </div> </div> </validator> </div> \";\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./~/vue-html-loader!./~/vue-loader/lib/template-rewriter.js?id=_v-825ff3c4!./~/vue-loader/lib/selector.js?type=template&index=0!./src/components/product/Process/ProcessInfo/history_control.vue\n// module id = 800\n// module chunks = 27","var __vue_script__, __vue_template__\nvar __vue_styles__ = {}\nrequire(\"!!../../../../../node_modules/extract-text-webpack-plugin/loader.js?{\\\"omit\\\":1,\\\"extract\\\":true,\\\"remove\\\":true}!vue-style-loader!css-loader?sourceMap!../../../../../node_modules/vue-loader/lib/style-rewriter.js?id=_v-825ff3c4&scoped=true!../../../../../node_modules/vue-loader/lib/selector.js?type=style&index=0!./history_control.vue\")\n__vue_script__ = require(\"!!babel-loader?presets[]=es2015&plugins[]=transform-runtime&comments=false!../../../../../node_modules/vue-loader/lib/selector.js?type=script&index=0!./history_control.vue\")\n__vue_template__ = require(\"!!vue-html-loader!../../../../../node_modules/vue-loader/lib/template-rewriter.js?id=_v-825ff3c4!../../../../../node_modules/vue-loader/lib/selector.js?type=template&index=0!./history_control.vue\")\nmodule.exports = __vue_script__ || {}\nif (module.exports.__esModule) module.exports = module.exports.default\nvar __vue_options__ = typeof module.exports === \"function\" ? (module.exports.options || (module.exports.options = {})) : module.exports\nif (__vue_template__) {\n__vue_options__.template = __vue_template__\n}\nif (!__vue_options__.computed) __vue_options__.computed = {}\nObject.keys(__vue_styles__).forEach(function (key) {\nvar module = __vue_styles__[key]\n__vue_options__.computed[key] = function () { return module }\n})\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./src/components/product/Process/ProcessInfo/history_control.vue\n// module id = 929\n// module chunks = 27"],"sourceRoot":""}
@@ -1,2 +0,0 @@
1
- webpackJsonp([28],{377:function(n,e,t){"use strict";function s(n){return n&&n.__esModule?n:{default:n}}Object.defineProperty(e,"__esModule",{value:!0});var a=t(45),o=s(a),i=t(11),r=s(i),l=t(148),d=s(l),c=t(2),u=s(c),f=t(7),h=s(f),p=t(3),m=t(1),b=s(m),v=function(){var n=(0,h.default)(u.default.mark(function n(e){return u.default.wrap(function(n){for(;;)switch(n.prev=n.next){case 0:return console.log("获取登录信息,",e.$login,e.$appdata,e.$appdata.getParam("用户类型"),b.default.$login.f.name),e.headers.username=b.default.$login.f.name,e.headers.username=b.default.$login.guid(),n.next=5,e.search();case 5:return n.next=7,e.$ApplyLoadParams.loadParam();case 7:e.initAdjustables();case 8:case"end":return n.stop()}},n,this)}));return function(e){return n.apply(this,arguments)}}();e.default={title:"用户档案",data:function(){return{model:new p.PagedList("rs/sql/singleTable_OrderBy",30,{items:'"*"',tablename:'"t_userinfo"',orderitem:'"CONVERT(int,f_userinfo_id) desc"'}),row:null,arearow:null,areainfo:null,rows:[],newArea:!1,nonUser:!1,modify:!1,batcan:!1,batenable:!1,show:!1,showaccept:!1,headers:{username:this.$login.f.name,blodid:this.$login.guid()},contract:[{label:"全部",value:" is null or f_contract_id is not null"},{label:"有",value:" is not null"},{label:"无",value:" is null"}],orderDefault:"f_createfile_date desc",orderFields:{f_userinfo_id:"no"},inputtores:this.$appdata.getParam("抄表员"),adjustables:[]}},ready:function(){v(this)},methods:{addAccept:function(){this.showaccept=!0,this.newArea=!1,this.batcan=!1,this.batenable=!1,this.nonUser=!1,this.modify=!1,this.row=null,this.areainfo=null},search:function(){this.$refs.paged.$refs.criteria.search()},modifyinfo:function(n){this.$parent.show=!0,this.$parent.$refs.queryuser.addactive(n)},clean:function(){this.newArea=!1,this.batcan=!1,this.batenable=!1,this.nonUser=!1,this.modify=!1,this.row=null,this.areainfo=null,this.showaccept=!1,this.$refs.paged.$refs.grid.select(null),this.$refs.paged.$refs.grid.model.rows=this.rows},renew:function(){this.nonUser=!1,this.modify=!1,this.newArea=!1,this.showaccept=!1,this.row=null,this.areainfo=null,this.clearCondition(),this.search(),this.$refs.addressfiles.$refs.paged.$refs.cri.search()},clearCondition:function(){var n=this;console.log("清空条件。。",this.$refs.paged),(0,d.default)(this.$refs.paged.$refs.criteria.model).forEach(function(e){n.$refs.paged.$refs.criteria.model[e]=""})},buildFile:function(n){this.row=n,this.modify=!1,this.nonUser=!1,this.newArea=!1,this.showaccept=!1},selected:function(n){this.nonUser=!1,this.modify=!1,this.arearow=n.val,this.areainfo=null,this.newArea=!0,this.showaccept=!1,this.row=null,this.$refs.paged.$refs.grid.model.rows=this.rows},bulidFiles:function(n){console.log("k开始建档"),this.arearow=null,this.newArea=!1,this.nonUser=!1,this.modify=!1,this.showaccept=!1,this.row=null,this.areainfo=n,this.$refs.paged.$refs.grid.model.rows=this.rows},addNoUser:function(n){console.log("建非民用row",n),this.arearow=null,this.newArea=!1,this.row=null,this.showaccept=!1,this.modify=!1,this.areainfo=n,this.nonUser=!0},buildFileSuccess:function(n){this.model.rows.unshift(n)},selfSearch:function(n){n.condition=n.condition+" and f_filialeids = '"+this.$login.f.f_orgids+"'",this.model.search(n.condition,n.model)},bulkOperations:function(n,e){"批量销户"===n?(this.batcan=!0,this.batenable=!1,this.newArea=!1,this.showaccept=!1):"批量启用"===n&&(this.batenable=!0,this.batcan=!1,this.newArea=!1,this.showaccept=!1)},batchSuccess:function(){this.batenable=!1,this.batcan=!1,this.showaccept=!1,this.search()},fileUpload:function(){this.show=!0},close:function(){this.show&&(this.show=!1,this.$refs.file.$el.querySelector("input").value="")},sort:function(n,e){for(var t in this.orderFields)t===n?this.orderFields[t]=e:this.orderFields[t]="no";"no"===e?this.model.paramSource.orderitem="'"+this.orderDefault+"'":this.model.paramSource.orderitem="'"+n+" "+e+"'",this.search()},getLocation:function(n){var e=this;console.log("进入",n),n.f_useraddress_id?this.$resetpost("rs/sql/saleSingleTable",{data:{tablename:"t_userinfo",condition:"f_useraddress_id = '"+n.f_useraddress_id+"'"}},{resolveMsg:null,rejectMsg:"获取档案出错"}).then(function(n){1===n.data.length&&e.modifyUser(n.data[0])}):this.$resetpost("rs/sql/sale_getService_sql",{data:{condition:"'"+n.id+"'"}},{resolveMsg:null,rejectMsg:"查询工单信息失败"}).then(function(t){1===t.data.length?e.$showMessage("该地址下有已完成的置换通气单,是否要将通气单中的信息带入建档中?",["confirm","cancel"]).then(function(s){if("confirm"===s){var a=(0,r.default)({},n,t.data[0]);e.bulidFiles(a)}else e.bulidFiles(n)}):e.bulidFiles(n)})},areaFiles:function(n){this.bulidFiles(n)},initAdjustables:function(){console.log("初始化调压箱",this.$GetSaleParam);var n=[],e=this.$login.f.f_orgids;this.$GetSaleParam.getAdjustable(e).forEach(function(e){var t={};t.label="["+e.value.f_adjustable_id+"]-"+e.label,t.value=""+e.value.id,n.push(t)}),this.adjustables=[{label:"全部",value:""}].concat(n)}},computed:{userstates:function(){return[{label:"全部",value:""}].concat((0,o.default)(this.$appdata.getParam("用户状态")))},areas:function(){for(var n=[],e=0;e<this.$login.f.f_allArea.length;e++){var t={label:this.$login.f.f_allArea[e].label,value:this.$login.f.f_allArea[e].label};n.push(t)}return[{label:"全部",value:""}].concat(n)},firestates:function(){return[{label:"全部",value:""},{label:"点火",value:"1"},{label:"未点火",value:"0"}]},jurisdiction:function(){return this.$login.r}},watch:{"model.state":function(n){"正确"===n&&(this.rows=this.model.rows)}},events:{onFileUpload:function(n,e){var t=this,s={tablename:"t_userinfo",filepath:e.path};this.$resetpost("rs/logic/import",s,{resolveMsg:null,rejectMsg:"上传失败"}).then(function(n){console.log("dddddddd",t),t.close(),t.$showAlert("一共上传"+n.data.total+"条数据, 成功"+n.data.successnum+"条","success",2e3),t.search()})}}}},494:function(n,e,t){e=n.exports=t(4)(),e.push([n.id,".nav-tabss ul>li>a{padding:5px 10px}","",{version:3,sources:["/./src/components/product/Process/ModifyUserFiles.vue"],names:[],mappings:"AAgcA,mBACE,gBAAkB,CACnB",file:"ModifyUserFiles.vue",sourcesContent:["\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n.nav-tabss ul > li > a{\n padding: 5px 10px;\n}\n"],sourceRoot:"webpack://"}])},565:function(n,e,t){var s=t(494);"string"==typeof s&&(s=[[n.id,s,""]]);t(5)(s,{});s.locals&&(n.exports=s.locals)},751:function(n,e){n.exports=' <div class=flex-row> <div style="flex: 1.5;width: 100%" class=flex id=user-files> <div class=flex> <criteria-paged :model=model v-ref:paged :pager="!row && !newArea && !areainfo" @sort=sort> <criteria partial=criteria v-ref:criteria @condition-changed=$parent.selfSearch> <div novalidate class="form-inline auto" partial> <div class=form-group> <input type=text class=form-control v-model=model.f_userinfo_code condition="f_userinfo_code=\'{}\'" placeholder=用户编号 :size="model.f_userinfo_code ? model.f_userinfo_code.length : 4"> </div> <div class=form-group> <input type=text class=form-control v-model=model.f_user_name condition="f_user_name like \'%{}%\'" placeholder=用户姓名 :size="model.f_user_name ? model.f_user_name.length * 2 : 4"> </div> <div class=form-group> <input type=text class=form-control v-model=model.f_user_phone placeholder=电话 condition="f_user_phone = \'{}\'" :size="model.f_user_phone ? model.f_user_phone.length : 2"> </div> <div class=form-group> <input type=text class=form-control v-model=model.f_residential_area condition="f_residential_area like \'%{}%\'" placeholder=小区 :size="model.f_residential_area ? model.f_residential_area.length * 2 : 4"> </div> <div class=form-group> <input type=text class=form-control v-model=model.f_address condition="f_address like \'%{}%\'" placeholder=用户地址 :size="model.f_address ? model.f_address.length * 2 : 4"> </div> <div class=form-group> <v-select :value.sync=model.f_user_state v-model=model.f_user_state :options=$parent.$parent.userstates placeholder=用户状态 close-on-select condition="f_user_state=\'{}\'"></v-select> </div> <div class=form-group> <v-select :value.sync=model.f_area v-model=model.f_area :options=$parent.$parent.areas placeholder=片区/管理站 condition="f_area like \'%{}%\'" close-on-select> </v-select> </div> <div class=form-group> <v-select :value.sync=model.f_adjustable_id :options=$parent.$parent.adjustables placeholder=调压箱 close-on-select v-model=model.f_adjustable_id condition="f_adjustable_id = \'{}\'" :search=true></v-select> </div> <div class=form-group> <button class="btn btn-success width-100" @click="search(), $parent.$parent.clean()">查询</button> </div> <div class="form-group col-sm-offset-1"> <button class="btn btn-danger width-50" @click="$parent.$parent.$parent.show = true">返回</button> </div> </div> </criteria> <data-grid :model=model v-ref:grid partial=list> <template partial=head> <tr> <th><nobr>序号</nobr></th> <th> <data-order field=f_userinfo_code name=用户编号 :order.sync=$parent.$parent.$parent.orderFields.f_userinfo_code></data-order> </th> <th><nobr>用户信息</nobr></th> <th><nobr>地址信息</nobr></th> <th><nobr>状态</nobr></th> <th><nobr>操作</nobr></th> </tr> </template> <template partial=body> <td style="text-align: center">{{$index + 1}}</td> <td>{{row.f_userinfo_code}}</td> <td>{{row.f_user_name}}&nbsp;&nbsp;{{row.f_user_phone ? row.f_user_phone : \'\'}}</td> <td>{{row.f_address_detail ? row.f_address + row.f_address_detail : row.f_address}}</td> <td style="text-align: center">{{row.f_user_state}}</td> <td style="text-align: center"> <button type=button name=button class="btn btn-link" v-if="row.f_user_state === \'正常\'" @click.stop=$parent.$parent.$parent.modifyinfo(row)>改装</button> </td> </template> </data-grid> </criteria-paged> </div> <div style="height: 500px" v-show="row || newArea || areainfo || nonUser" class=select-overspread> <user-general-info v-if="row || areainfo || nonUser" :row=row :modify=modify @clean=clean :areainfo=areainfo :non-user=nonUser @success=renew @build-success=buildFileSuccess></user-general-info> </div> <div style="height: 500px" v-if="batcan || batenable"> <batch-cancellation v-if=batcan :useraccount=model.rows @clean=clean @success=batchSuccess></batch-cancellation> <batch-enable v-if=batenable :useraccount=model.rows @clean=clean @success=batchSuccess></batch-enable> </div> </div> <modal :show.sync=show v-ref:modal backdrop=false> <header slot=modal-header class=modal-header> <button type=button class=close @click=close><span>&times;</span></button> <h4 class=modal-title>文件上传</h4> </header> <article slot=modal-body class=modal-body> <div class=form-group> <file-upload class=my-file-uploader name=myFile action=rs/file/upload tagname=文件上传 :headers=headers multiple=multiple v-ref:file></file-upload> </div> </article> <footer slot=modal-footer class=modal-footer> </footer> </modal> </div> '},928:function(n,e,t){var s,a,o={};t(565),s=t(377),a=t(751),n.exports=s||{},n.exports.__esModule&&(n.exports=n.exports.default);var i="function"==typeof n.exports?n.exports.options||(n.exports.options={}):n.exports;a&&(i.template=a),i.computed||(i.computed={}),Object.keys(o).forEach(function(n){var e=o[n];i.computed[n]=function(){return e}})}});
2
- //# sourceMappingURL=28.js.map
@@ -1 +0,0 @@
1
- {"version":3,"sources":["webpack:///28.js","webpack:///ModifyUserFiles.vue","webpack:///./src/components/product/Process/ModifyUserFiles.vue?d4eb","webpack:///./src/components/product/Process/ModifyUserFiles.vue?a375","webpack:///./src/components/product/Process/ModifyUserFiles.vue?380a","webpack:///./src/components/product/Process/ModifyUserFiles.vue"],"names":["webpackJsonp","377","module","exports","__webpack_require__","_interopRequireDefault","obj","__esModule","default","Object","defineProperty","value","_toConsumableArray2","_toConsumableArray3","_assign","_assign2","_keys","_keys2","_regenerator","_regenerator2","_asyncToGenerator2","_asyncToGenerator3","_vueClient","_vue","_vue2","loadParamGem","_ref","mark","_callee","self","wrap","_context","prev","next","console","log","$login","$appdata","getParam","f","name","headers","username","guid","search","$ApplyLoadParams","loadParam","initAdjustables","stop","this","_x","apply","arguments","title","data","model","PagedList","items","tablename","orderitem","row","arearow","areainfo","rows","newArea","nonUser","modify","batcan","batenable","show","showaccept","blodid","contract","label","orderDefault","orderFields","f_userinfo_id","inputtores","adjustables","ready","methods","addAccept","$refs","paged","criteria","modifyinfo","$parent","queryuser","addactive","clean","grid","select","renew","clearCondition","addressfiles","cri","_this","forEach","key","buildFile","selected","val","bulidFiles","addNoUser","buildFileSuccess","unshift","selfSearch","args","condition","f_orgids","bulkOperations","type","batchSuccess","fileUpload","close","file","$el","querySelector","sort","field","rule","paramSource","getLocation","_this2","f_useraddress_id","$resetpost","resolveMsg","rejectMsg","then","getUser","length","modifyUser","id","getService","$showMessage","res","filesinfo","areaFiles","$GetSaleParam","arr","filter","getAdjustable","item","temp","f_adjustable_id","push","concat","computed","userstates","areas","rs","i","f_allArea","firestates","jurisdiction","r","watch","model.state","events","onFileUpload","_this3","filepath","path","$showAlert","total","successnum","494","version","sources","names","mappings","sourcesContent","sourceRoot","565","content","locals","751","928","__vue_script__","__vue_template__","__vue_styles__","__vue_options__","options","template","keys"],"mappings":"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","file":"28.js","sourcesContent":["webpackJsonp([28],{\n\n/***/ 377:\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t\n\tObject.defineProperty(exports, \"__esModule\", {\n\t value: true\n\t});\n\t\n\tvar _toConsumableArray2 = __webpack_require__(45);\n\t\n\tvar _toConsumableArray3 = _interopRequireDefault(_toConsumableArray2);\n\t\n\tvar _assign = __webpack_require__(11);\n\t\n\tvar _assign2 = _interopRequireDefault(_assign);\n\t\n\tvar _keys = __webpack_require__(148);\n\t\n\tvar _keys2 = _interopRequireDefault(_keys);\n\t\n\tvar _regenerator = __webpack_require__(2);\n\t\n\tvar _regenerator2 = _interopRequireDefault(_regenerator);\n\t\n\tvar _asyncToGenerator2 = __webpack_require__(7);\n\t\n\tvar _asyncToGenerator3 = _interopRequireDefault(_asyncToGenerator2);\n\t\n\tvar _vueClient = __webpack_require__(3);\n\t\n\tvar _vue = __webpack_require__(1);\n\t\n\tvar _vue2 = _interopRequireDefault(_vue);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\tvar loadParamGem = function () {\n\t var _ref = (0, _asyncToGenerator3.default)(_regenerator2.default.mark(function _callee(self) {\n\t return _regenerator2.default.wrap(function _callee$(_context) {\n\t while (1) {\n\t switch (_context.prev = _context.next) {\n\t case 0:\n\t console.log('获取登录信息,', self.$login, self.$appdata, self.$appdata.getParam('用户类型'), _vue2.default.$login.f.name);\n\t self.headers.username = _vue2.default.$login.f.name;\n\t self.headers.username = _vue2.default.$login.guid();\n\t _context.next = 5;\n\t return self.search();\n\t\n\t case 5:\n\t _context.next = 7;\n\t return self.$ApplyLoadParams.loadParam();\n\t\n\t case 7:\n\t self.initAdjustables();\n\t\n\t case 8:\n\t case 'end':\n\t return _context.stop();\n\t }\n\t }\n\t }, _callee, this);\n\t }));\n\t\n\t return function loadParamGem(_x) {\n\t return _ref.apply(this, arguments);\n\t };\n\t}();\n\t\n\texports.default = {\n\t 'title': '用户档案',\n\t data: function data() {\n\t return {\n\t model: new _vueClient.PagedList('rs/sql/singleTable_OrderBy', 30, { items: '\"*\"', tablename: '\"t_userinfo\"', orderitem: '\"CONVERT(int,f_userinfo_id) desc\"' }),\n\t row: null,\n\t arearow: null,\n\t areainfo: null,\n\t rows: [],\n\t newArea: false,\n\t nonUser: false,\n\t modify: false,\n\t batcan: false,\n\t batenable: false,\n\t show: false,\n\t showaccept: false,\n\t headers: { 'username': this.$login.f.name, 'blodid': this.$login.guid() },\n\t contract: [{ label: '全部', value: ' is null or f_contract_id is not null' }, { label: '有', value: ' is not null' }, { label: '无', value: ' is null' }],\n\t orderDefault: 'f_createfile_date desc',\n\t orderFields: {\n\t f_userinfo_id: 'no'\n\t },\n\t\n\t inputtores: this.$appdata.getParam('抄表员'),\n\t adjustables: []\n\t };\n\t },\n\t ready: function ready() {\n\t loadParamGem(this);\n\t },\n\t\n\t methods: {\n\t addAccept: function addAccept() {\n\t this.showaccept = true;\n\t this.newArea = false;\n\t this.batcan = false;\n\t this.batenable = false;\n\t this.nonUser = false;\n\t this.modify = false;\n\t this.row = null;\n\t this.areainfo = null;\n\t },\n\t search: function search() {\n\t this.$refs.paged.$refs.criteria.search();\n\t },\n\t modifyinfo: function modifyinfo(row) {\n\t this.$parent.show = true;\n\t this.$parent.$refs.queryuser.addactive(row);\n\t },\n\t clean: function clean() {\n\t this.newArea = false;\n\t this.batcan = false;\n\t this.batenable = false;\n\t this.nonUser = false;\n\t this.modify = false;\n\t this.row = null;\n\t this.areainfo = null;\n\t this.showaccept = false;\n\t this.$refs.paged.$refs.grid.select(null);\n\t this.$refs.paged.$refs.grid.model.rows = this.rows;\n\t },\n\t renew: function renew() {\n\t this.nonUser = false;\n\t this.modify = false;\n\t this.newArea = false;\n\t this.showaccept = false;\n\t this.row = null;\n\t this.areainfo = null;\n\t this.clearCondition();\n\t this.search();\n\t\n\t this.$refs.addressfiles.$refs.paged.$refs.cri.search();\n\t },\n\t clearCondition: function clearCondition() {\n\t var _this = this;\n\t\n\t console.log('清空条件。。', this.$refs.paged);\n\t (0, _keys2.default)(this.$refs.paged.$refs.criteria.model).forEach(function (key) {\n\t _this.$refs.paged.$refs.criteria.model[key] = '';\n\t });\n\t },\n\t buildFile: function buildFile(row) {\n\t this.row = row;\n\t this.modify = false;\n\t this.nonUser = false;\n\t this.newArea = false;\n\t this.showaccept = false;\n\t },\n\t selected: function selected(row) {\n\t this.nonUser = false;\n\t this.modify = false;\n\t this.arearow = row.val;\n\t this.areainfo = null;\n\t this.newArea = true;\n\t this.showaccept = false;\n\t this.row = null;\n\t this.$refs.paged.$refs.grid.model.rows = this.rows;\n\t },\n\t bulidFiles: function bulidFiles(row) {\n\t console.log('k开始建档');\n\t this.arearow = null;\n\t this.newArea = false;\n\t this.nonUser = false;\n\t this.modify = false;\n\t this.showaccept = false;\n\t this.row = null;\n\t this.areainfo = row;\n\t\n\t this.$refs.paged.$refs.grid.model.rows = this.rows;\n\t },\n\t addNoUser: function addNoUser(row) {\n\t console.log('建非民用row', row);\n\t this.arearow = null;\n\t this.newArea = false;\n\t this.row = null;\n\t this.showaccept = false;\n\t\n\t this.modify = false;\n\t this.areainfo = row;\n\t\n\t this.nonUser = true;\n\t },\n\t buildFileSuccess: function buildFileSuccess(data) {\n\t this.model.rows.unshift(data);\n\t },\n\t selfSearch: function selfSearch(args) {\n\t args.condition = args.condition + ' and f_filialeids = \\'' + this.$login.f.f_orgids + '\\'';\n\t this.model.search(args.condition, args.model);\n\t },\n\t bulkOperations: function bulkOperations(name, type) {\n\t if (name === '批量销户') {\n\t this.batcan = true;\n\t this.batenable = false;\n\t this.newArea = false;\n\t this.showaccept = false;\n\t } else if (name === '批量启用') {\n\t this.batenable = true;\n\t this.batcan = false;\n\t this.newArea = false;\n\t this.showaccept = false;\n\t }\n\t },\n\t batchSuccess: function batchSuccess() {\n\t this.batenable = false;\n\t this.batcan = false;\n\t this.showaccept = false;\n\t this.search();\n\t },\n\t fileUpload: function fileUpload() {\n\t this.show = true;\n\t },\n\t close: function close() {\n\t if (this.show) {\n\t this.show = false;\n\t\n\t this.$refs.file.$el.querySelector('input').value = '';\n\t }\n\t },\n\t sort: function sort(field, rule) {\n\t for (var key in this.orderFields) {\n\t if (key === field) {\n\t this.orderFields[key] = rule;\n\t } else {\n\t this.orderFields[key] = 'no';\n\t }\n\t }\n\t\n\t if (rule === 'no') {\n\t this.model.paramSource.orderitem = '\\'' + this.orderDefault + '\\'';\n\t } else {\n\t this.model.paramSource.orderitem = '\\'' + field + ' ' + rule + '\\'';\n\t }\n\t\n\t this.search();\n\t },\n\t getLocation: function getLocation(row) {\n\t var _this2 = this;\n\t\n\t console.log('进入', row);\n\t\n\t if (row.f_useraddress_id) {\n\t this.$resetpost('rs/sql/saleSingleTable', { data: { tablename: 't_userinfo', condition: 'f_useraddress_id = \\'' + row.f_useraddress_id + '\\'' } }, { resolveMsg: null, rejectMsg: '获取档案出错' }).then(function (getUser) {\n\t if (getUser.data.length === 1) {\n\t _this2.modifyUser(getUser.data[0]);\n\t }\n\t });\n\t } else {\n\t this.$resetpost('rs/sql/sale_getService_sql', { data: { condition: '\\'' + row.id + '\\'' } }, { resolveMsg: null, rejectMsg: '查询工单信息失败' }).then(function (getService) {\n\t if (getService.data.length === 1) {\n\t _this2.$showMessage('该地址下有已完成的置换通气单,是否要将通气单中的信息带入建档中?', ['confirm', 'cancel']).then(function (res) {\n\t if (res === 'confirm') {\n\t var filesinfo = (0, _assign2.default)({}, row, getService.data[0]);\n\t _this2.bulidFiles(filesinfo);\n\t } else {\n\t _this2.bulidFiles(row);\n\t }\n\t });\n\t } else {\n\t _this2.bulidFiles(row);\n\t }\n\t });\n\t }\n\t },\n\t areaFiles: function areaFiles(row) {\n\t this.bulidFiles(row);\n\t },\n\t initAdjustables: function initAdjustables() {\n\t console.log('初始化调压箱', this.$GetSaleParam);\n\t var arr = [];\n\t var filter = this.$login.f.f_orgids;\n\t this.$GetSaleParam.getAdjustable(filter).forEach(function (item) {\n\t var temp = {};\n\t temp.label = '[' + item.value.f_adjustable_id + ']-' + item.label;\n\t temp.value = '' + item.value.id;\n\t arr.push(temp);\n\t });\n\t this.adjustables = [{ label: '全部', value: '' }].concat(arr);\n\t }\n\t },\n\t computed: {\n\t userstates: function userstates() {\n\t return [{ label: '全部', value: '' }].concat((0, _toConsumableArray3.default)(this.$appdata.getParam('用户状态')));\n\t },\n\t areas: function areas() {\n\t var rs = [];\n\t for (var i = 0; i < this.$login.f.f_allArea.length; i++) {\n\t var temp = {\n\t label: this.$login.f.f_allArea[i].label,\n\t value: this.$login.f.f_allArea[i].label\n\t };\n\t rs.push(temp);\n\t }\n\t return [{ label: '全部', value: '' }].concat(rs);\n\t },\n\t firestates: function firestates() {\n\t return [{ label: '全部', value: '' }, { label: '点火', value: '1' }, { label: '未点火', value: '0' }];\n\t },\n\t jurisdiction: function jurisdiction() {\n\t return this.$login.r;\n\t }\n\t },\n\t watch: {\n\t 'model.state': function modelState(val) {\n\t if (val === '正确') {\n\t this.rows = this.model.rows;\n\t }\n\t }\n\t },\n\t events: {\n\t onFileUpload: function onFileUpload(file, res) {\n\t var _this3 = this;\n\t\n\t var data = {\n\t tablename: 't_userinfo',\n\t filepath: res.path\n\t };\n\t this.$resetpost('rs/logic/import', data, { resolveMsg: null, rejectMsg: '上传失败' }).then(function (res) {\n\t console.log('dddddddd', _this3);\n\t _this3.close();\n\t _this3.$showAlert('\\u4E00\\u5171\\u4E0A\\u4F20' + res.data.total + '\\u6761\\u6570\\u636E, \\u6210\\u529F' + res.data.successnum + '\\u6761', 'success', 2000);\n\t _this3.search();\n\t });\n\t }\n\t }\n\t};\n\n/***/ }),\n\n/***/ 494:\n/***/ (function(module, exports, __webpack_require__) {\n\n\texports = module.exports = __webpack_require__(4)();\n\t// imports\n\t\n\t\n\t// module\n\texports.push([module.id, \".nav-tabss ul>li>a{padding:5px 10px}\", \"\", {\"version\":3,\"sources\":[\"/./src/components/product/Process/ModifyUserFiles.vue\"],\"names\":[],\"mappings\":\"AAgcA,mBACE,gBAAkB,CACnB\",\"file\":\"ModifyUserFiles.vue\",\"sourcesContent\":[\"\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n.nav-tabss ul > li > a{\\n padding: 5px 10px;\\n}\\n\"],\"sourceRoot\":\"webpack://\"}]);\n\t\n\t// exports\n\n\n/***/ }),\n\n/***/ 565:\n/***/ (function(module, exports, __webpack_require__) {\n\n\t// style-loader: Adds some css to the DOM by adding a <style> tag\n\t\n\t// load the styles\n\tvar content = __webpack_require__(494);\n\tif(typeof content === 'string') content = [[module.id, content, '']];\n\t// add the styles to the DOM\n\tvar update = __webpack_require__(5)(content, {});\n\tif(content.locals) module.exports = content.locals;\n\t// Hot Module Replacement\n\tif(false) {\n\t\t// When the styles change, update the <style> tags\n\t\tif(!content.locals) {\n\t\t\tmodule.hot.accept(\"!!../../../../node_modules/css-loader/index.js?sourceMap!../../../../node_modules/vue-loader/lib/style-rewriter.js!../../../../node_modules/vue-loader/lib/selector.js?type=style&index=0!./ModifyUserFiles.vue\", function() {\n\t\t\t\tvar newContent = require(\"!!../../../../node_modules/css-loader/index.js?sourceMap!../../../../node_modules/vue-loader/lib/style-rewriter.js!../../../../node_modules/vue-loader/lib/selector.js?type=style&index=0!./ModifyUserFiles.vue\");\n\t\t\t\tif(typeof newContent === 'string') newContent = [[module.id, newContent, '']];\n\t\t\t\tupdate(newContent);\n\t\t\t});\n\t\t}\n\t\t// When the module is disposed, remove the <style> tags\n\t\tmodule.hot.dispose(function() { update(); });\n\t}\n\n/***/ }),\n\n/***/ 751:\n/***/ (function(module, exports) {\n\n\tmodule.exports = \" <div class=flex-row> <div style=\\\"flex: 1.5;width: 100%\\\" class=flex id=user-files> <div class=flex> <criteria-paged :model=model v-ref:paged :pager=\\\"!row && !newArea && !areainfo\\\" @sort=sort> <criteria partial=criteria v-ref:criteria @condition-changed=$parent.selfSearch> <div novalidate class=\\\"form-inline auto\\\" partial> <div class=form-group> <input type=text class=form-control v-model=model.f_userinfo_code condition=\\\"f_userinfo_code='{}'\\\" placeholder=用户编号 :size=\\\"model.f_userinfo_code ? model.f_userinfo_code.length : 4\\\"> </div> <div class=form-group> <input type=text class=form-control v-model=model.f_user_name condition=\\\"f_user_name like '%{}%'\\\" placeholder=用户姓名 :size=\\\"model.f_user_name ? model.f_user_name.length * 2 : 4\\\"> </div> <div class=form-group> <input type=text class=form-control v-model=model.f_user_phone placeholder=电话 condition=\\\"f_user_phone = '{}'\\\" :size=\\\"model.f_user_phone ? model.f_user_phone.length : 2\\\"> </div> <div class=form-group> <input type=text class=form-control v-model=model.f_residential_area condition=\\\"f_residential_area like '%{}%'\\\" placeholder=小区 :size=\\\"model.f_residential_area ? model.f_residential_area.length * 2 : 4\\\"> </div> <div class=form-group> <input type=text class=form-control v-model=model.f_address condition=\\\"f_address like '%{}%'\\\" placeholder=用户地址 :size=\\\"model.f_address ? model.f_address.length * 2 : 4\\\"> </div> <div class=form-group> <v-select :value.sync=model.f_user_state v-model=model.f_user_state :options=$parent.$parent.userstates placeholder=用户状态 close-on-select condition=\\\"f_user_state='{}'\\\"></v-select> </div> <div class=form-group> <v-select :value.sync=model.f_area v-model=model.f_area :options=$parent.$parent.areas placeholder=片区/管理站 condition=\\\"f_area like '%{}%'\\\" close-on-select> </v-select> </div> <div class=form-group> <v-select :value.sync=model.f_adjustable_id :options=$parent.$parent.adjustables placeholder=调压箱 close-on-select v-model=model.f_adjustable_id condition=\\\"f_adjustable_id = '{}'\\\" :search=true></v-select> </div> <div class=form-group> <button class=\\\"btn btn-success width-100\\\" @click=\\\"search(), $parent.$parent.clean()\\\">查询</button> </div> <div class=\\\"form-group col-sm-offset-1\\\"> <button class=\\\"btn btn-danger width-50\\\" @click=\\\"$parent.$parent.$parent.show = true\\\">返回</button> </div> </div> </criteria> <data-grid :model=model v-ref:grid partial=list> <template partial=head> <tr> <th><nobr>序号</nobr></th> <th> <data-order field=f_userinfo_code name=用户编号 :order.sync=$parent.$parent.$parent.orderFields.f_userinfo_code></data-order> </th> <th><nobr>用户信息</nobr></th> <th><nobr>地址信息</nobr></th> <th><nobr>状态</nobr></th> <th><nobr>操作</nobr></th> </tr> </template> <template partial=body> <td style=\\\"text-align: center\\\">{{$index + 1}}</td> <td>{{row.f_userinfo_code}}</td> <td>{{row.f_user_name}}&nbsp;&nbsp;{{row.f_user_phone ? row.f_user_phone : ''}}</td> <td>{{row.f_address_detail ? row.f_address + row.f_address_detail : row.f_address}}</td> <td style=\\\"text-align: center\\\">{{row.f_user_state}}</td> <td style=\\\"text-align: center\\\"> <button type=button name=button class=\\\"btn btn-link\\\" v-if=\\\"row.f_user_state === '正常'\\\" @click.stop=$parent.$parent.$parent.modifyinfo(row)>改装</button> </td> </template> </data-grid> </criteria-paged> </div> <div style=\\\"height: 500px\\\" v-show=\\\"row || newArea || areainfo || nonUser\\\" class=select-overspread> <user-general-info v-if=\\\"row || areainfo || nonUser\\\" :row=row :modify=modify @clean=clean :areainfo=areainfo :non-user=nonUser @success=renew @build-success=buildFileSuccess></user-general-info> </div> <div style=\\\"height: 500px\\\" v-if=\\\"batcan || batenable\\\"> <batch-cancellation v-if=batcan :useraccount=model.rows @clean=clean @success=batchSuccess></batch-cancellation> <batch-enable v-if=batenable :useraccount=model.rows @clean=clean @success=batchSuccess></batch-enable> </div> </div> <modal :show.sync=show v-ref:modal backdrop=false> <header slot=modal-header class=modal-header> <button type=button class=close @click=close><span>&times;</span></button> <h4 class=modal-title>文件上传</h4> </header> <article slot=modal-body class=modal-body> <div class=form-group> <file-upload class=my-file-uploader name=myFile action=rs/file/upload tagname=文件上传 :headers=headers multiple=multiple v-ref:file></file-upload> </div> </article> <footer slot=modal-footer class=modal-footer> </footer> </modal> </div> \";\n\n/***/ }),\n\n/***/ 928:\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar __vue_script__, __vue_template__\n\tvar __vue_styles__ = {}\n\t__webpack_require__(565)\n\t__vue_script__ = __webpack_require__(377)\n\t__vue_template__ = __webpack_require__(751)\n\tmodule.exports = __vue_script__ || {}\n\tif (module.exports.__esModule) module.exports = module.exports.default\n\tvar __vue_options__ = typeof module.exports === \"function\" ? (module.exports.options || (module.exports.options = {})) : module.exports\n\tif (__vue_template__) {\n\t__vue_options__.template = __vue_template__\n\t}\n\tif (!__vue_options__.computed) __vue_options__.computed = {}\n\tObject.keys(__vue_styles__).forEach(function (key) {\n\tvar module = __vue_styles__[key]\n\t__vue_options__.computed[key] = function () { return module }\n\t})\n\n\n/***/ })\n\n});\n\n\n// WEBPACK FOOTER //\n// 28.js","<template>\r\n <div class=\"flex-row\" >\r\n <div style=\"flex: 1.5;width: 100%\" class=\"flex\" id=\"user-files\">\r\n <div class=\"flex\">\r\n <criteria-paged :model=\"model\" v-ref:paged :pager=\"!row && !newArea && !areainfo\" @sort=\"sort\">\r\n <criteria partial='criteria' v-ref:criteria @condition-changed=\"$parent.selfSearch\">\r\n <div novalidate class=\"form-inline auto\" partial>\r\n <div class=\"form-group\">\r\n <input type=\"text\" class=\"form-control\" v-model=\"model.f_userinfo_code\"\r\n condition=\"f_userinfo_code='{}'\" placeholder='用户编号'\r\n :size=\"model.f_userinfo_code ? model.f_userinfo_code.length : 4\">\r\n </div>\r\n <div class=\"form-group\">\r\n <input type=\"text\" class=\"form-control\" v-model=\"model.f_user_name\"\r\n condition=\"f_user_name like '%{}%'\" placeholder='用户姓名'\r\n :size=\"model.f_user_name ? model.f_user_name.length * 2 : 4\">\r\n </div>\r\n <div class=\"form-group\">\r\n <input type=\"text\" class=\"form-control\" v-model=\"model.f_user_phone\" placeholder='电话'\r\n condition=\"f_user_phone = '{}'\"\r\n :size=\"model.f_user_phone ? model.f_user_phone.length : 2\">\r\n </div>\r\n\r\n <div class=\"form-group\">\r\n <input type=\"text\" class=\"form-control\" v-model=\"model.f_residential_area\"\r\n condition=\"f_residential_area like '%{}%'\" placeholder='小区'\r\n :size=\"model.f_residential_area ? model.f_residential_area.length * 2 : 4\">\r\n </div>\r\n <div class=\"form-group\">\r\n <input type=\"text\" class=\"form-control\" v-model=\"model.f_address\"\r\n condition=\"f_address like '%{}%'\" placeholder='用户地址'\r\n :size=\"model.f_address ? model.f_address.length * 2 : 4\">\r\n </div>\r\n <div class=\"form-group\">\r\n <v-select :value.sync=\"model.f_user_state\" v-model=\"model.f_user_state\"\r\n :options='$parent.$parent.userstates' placeholder='用户状态'\r\n close-on-select condition=\"f_user_state='{}'\"></v-select>\r\n </div>\r\n <div class=\"form-group\">\r\n <v-select\r\n :value.sync=\"model.f_area\"\r\n v-model=\"model.f_area\"\r\n :options='$parent.$parent.areas'\r\n placeholder='片区/管理站'\r\n condition=\"f_area like '%{}%'\"\r\n close-on-select>\r\n </v-select>\r\n </div>\r\n <div class=\"form-group\">\r\n <v-select :value.sync=\"model.f_adjustable_id\" :options='$parent.$parent.adjustables' placeholder='调压箱' close-on-select\r\n v-model='model.f_adjustable_id' condition=\"f_adjustable_id = '{}'\" :search='true'></v-select>\r\n </div>\r\n <div class=\"form-group\">\r\n <button class=\"btn btn-success width-100\" @click=\"search(), $parent.$parent.clean()\">查询</button>\r\n </div>\r\n <div class=\"form-group col-sm-offset-1\">\r\n <button class=\"btn btn-danger width-50\" @click=\"$parent.$parent.$parent.show = true\">返回</button>\r\n </div>\r\n <!--<div class=\"form-group\">-->\r\n <!--<button class=\"btn btn-success width-150\" @click=\"$parent.$parent.addNoUser()\">新建非民用</button>-->\r\n <!--</div>-->\r\n <!--<div class=\"form-group\">-->\r\n <!--<button class=\"btn btn-success width-100\" @click=\"$parent.$parent.fileUpload()\">文件上传</button>-->\r\n <!--</div>-->\r\n <!--<div class=\"form-group\">-->\r\n <!--<button class=\"btn btn-success width-100\" v-if=\"$parent.$parent.rows && $parent.$parent.rows.length === 1 && $parent.$parent.rows[0].f_user_state === '正常'\"-->\r\n <!--@click=\"$parent.$parent.bulkOperations('批量销户', 'batch-cancellation')\">销户</button>-->\r\n <!--</div>-->\r\n <!--<div class=\"form-group\">-->\r\n <!--<button class=\"btn btn-success width-100\" v-if=\"$parent.$parent.rows && $parent.$parent.rows.length === 1 && $parent.$parent.rows[0].f_user_state === '销户'\"-->\r\n <!--@click=\"$parent.$parent.bulkOperations('批量启用', 'batch-enable')\">启用</button>-->\r\n <!--</div>-->\r\n </div>\r\n </criteria>\r\n <data-grid :model=\"model\" v-ref:grid partial='list'>\r\n <template partial='head'>\r\n <tr>\r\n <th><nobr>序号</nobr></th>\r\n <th>\r\n <data-order field=\"f_userinfo_code\" name=\"用户编号\" :order.sync=\"$parent.$parent.$parent.orderFields.f_userinfo_code\"></data-order>\r\n </th>\r\n <th><nobr>用户信息</nobr></th>\r\n <th><nobr>地址信息</nobr></th>\r\n <th><nobr>状态</nobr></th>\r\n <th><nobr>操作</nobr></th>\r\n <!-- <th v-show= \"$parent.$parent.$parent.jurisdiction.includes('档案修正权限')\"><nobr>操作</nobr></th> -->\r\n </tr>\r\n </template>\r\n <template partial='body'>\r\n <td style=\"text-align: center;\">{{$index + 1}}</td>\r\n <td>{{row.f_userinfo_code}}</td>\r\n <td>{{row.f_user_name}}&nbsp;&nbsp;{{row.f_user_phone ? row.f_user_phone : ''}}</td>\r\n <td>{{row.f_address_detail ? row.f_address + row.f_address_detail : row.f_address}}</td>\r\n <td style=\"text-align: center;\">{{row.f_user_state}}</td>\r\n <td style=\"text-align: center;\">\r\n <!-- <td style=\"text-align: center;\" v-show= \"$parent.$parent.$parent.jurisdiction.includes('档案修正权限')\"> -->\r\n <button type=\"button\" name=\"button\" class=\"btn btn-link\" v-if=\"row.f_user_state === '正常'\"\r\n @click.stop=\"$parent.$parent.$parent.modifyinfo(row)\">改装</button>\r\n </td>\r\n </template>\r\n </data-grid>\r\n </criteria-paged>\r\n </div>\r\n <div style=\"height: 500px;\" v-show=\"row || newArea || areainfo || nonUser\" class=\"select-overspread\">\r\n <user-general-info v-if=\"row || areainfo || nonUser\" :row=\"row\" :modify=\"modify\" @clean=\"clean\" :areainfo=\"areainfo\" :non-user=\"nonUser\" @success=\"renew\" @build-success=\"buildFileSuccess\"></user-general-info>\r\n <!--<new-area-info v-if=\"newArea\" @clean=\"clean\" @success=\"addArea\" :row=\"arearow\"></new-area-info>-->\r\n </div>\r\n <div style=\"height: 500px;\" v-if=\"batcan || batenable\">\r\n <batch-cancellation v-if=\"batcan\" :useraccount=\"model.rows\" @clean=\"clean\" @success=\"batchSuccess\"></batch-cancellation>\r\n <batch-enable v-if=\"batenable\" :useraccount=\"model.rows\" @clean=\"clean\" @success=\"batchSuccess\"></batch-enable>\r\n </div>\r\n <!-- <div style=\"height: 500px;\" v-if=\"showaccept\">\r\n <business-accept v-if=\"showaccept\" @clean=\"clean\"></business-accept>\r\n </div> -->\r\n </div>\r\n <!-- <card-list :btns=\"operatebtn\" :userinfoid=\"row ? row.f_userinfo_id : ''\" v-ref:card :is-operate=\"false\"></card-list> -->\r\n <modal :show.sync=\"show\" v-ref:modal backdrop=\"false\">\r\n <header slot=\"modal-header\" class=\"modal-header\">\r\n <button type=\"button\" class=\"close\" @click=\"close\"><span>&times;</span></button>\r\n <h4 class=\"modal-title\">文件上传</h4>\r\n </header>\r\n <article slot=\"modal-body\" class=\"modal-body\">\r\n <div class=\"form-group\">\r\n <file-upload class=\"my-file-uploader\" name=\"myFile\"\r\n action=\"rs/file/upload\" tagname=\"文件上传\" :headers=\"headers\" multiple v-ref:file></file-upload>\r\n </div>\r\n </article>\r\n\r\n <footer slot=\"modal-footer\" class=\"modal-footer\">\r\n <!-- <button v-show=\"show\" type=\"button\" class=\"btn btn-default\" @click='close'>取消</button>\r\n\r\n <button v-show=\"show\" type=\"button\" class=\"btn btn-success\" @click='confirm(filename)'>确认</button> -->\r\n </footer>\r\n </modal>\r\n </div>\r\n</template>\r\n\r\n<script>\r\n\r\n import { PagedList } from 'vue-client'\r\n import Vue from 'vue'\r\n\r\n let loadParamGem = async function (self) {\r\n console.log('获取登录信息,', self.$login, self.$appdata, self.$appdata.getParam('用户类型'), Vue.$login.f.name)\r\n self.headers.username = Vue.$login.f.name\r\n self.headers.username = Vue.$login.guid()\r\n await self.search()\r\n await self.$ApplyLoadParams.loadParam()\r\n self.initAdjustables()\r\n }\r\n\r\n export default {\r\n 'title': '用户档案',\r\n data () {\r\n return {\r\n model: new PagedList('rs/sql/singleTable_OrderBy', 30, {items: '\"*\"', tablename: '\"t_userinfo\"', orderitem: '\"CONVERT(int,f_userinfo_id) desc\"'}),\r\n row: null, // 选择一条用户信息,对其进行修改\r\n arearow: null, // 新建修改小区使用的数据小区使用\r\n areainfo: null, // 小区批量建档使用的数据\r\n rows: [], // 用户档案选择一条时,将只显示一条信息,rows用来存放整页的数据\r\n newArea: false,\r\n nonUser: false, // 非民用\r\n modify: false,\r\n batcan: false,\r\n batenable: false,\r\n show: false,\r\n showaccept: false,\r\n headers: {'username': this.$login.f.name, 'blodid': this.$login.guid()},\r\n contract: [{label: '全部', value: ' is null or f_contract_id is not null'}, {label: '有', value: ' is not null'},\r\n {label: '无', value: ' is null'}],\r\n orderDefault: 'f_createfile_date desc',\r\n orderFields: {\r\n f_userinfo_id: 'no'\r\n },\r\n\r\n inputtores: this.$appdata.getParam('抄表员'),\r\n adjustables: []\r\n }\r\n },\r\n ready () {\r\n loadParamGem(this)\r\n },\r\n methods: {\r\n addAccept () {\r\n this.showaccept = true\r\n this.newArea = false\r\n this.batcan = false\r\n this.batenable = false\r\n this.nonUser = false\r\n this.modify = false\r\n this.row = null\r\n this.areainfo = null\r\n },\r\n search () {\r\n this.$refs.paged.$refs.criteria.search()\r\n },\r\n modifyinfo (row) {\r\n this.$parent.show = true\r\n this.$parent.$refs.queryuser.addactive(row)\r\n },\r\n clean () {\r\n this.newArea = false\r\n this.batcan = false\r\n this.batenable = false\r\n this.nonUser = false\r\n this.modify = false\r\n this.row = null\r\n this.areainfo = null\r\n this.showaccept = false\r\n this.$refs.paged.$refs.grid.select(null)\r\n this.$refs.paged.$refs.grid.model.rows = this.rows\r\n },\r\n renew () {\r\n this.nonUser = false\r\n this.modify = false\r\n this.newArea = false\r\n this.showaccept = false\r\n this.row = null\r\n this.areainfo = null\r\n this.clearCondition()\r\n this.search()\r\n //建档或修正档案成功刷新地址列表\r\n this.$refs.addressfiles.$refs.paged.$refs.cri.search()\r\n },\r\n clearCondition () {\r\n console.log('清空条件。。', this.$refs.paged)\r\n Object.keys(this.$refs.paged.$refs.criteria.model).forEach((key) => {\r\n this.$refs.paged.$refs.criteria.model[key] = ''\r\n })\r\n },\r\n buildFile (row) {\r\n // console.log('我是建档。。。', row)\r\n this.row = row\r\n this.modify = false\r\n this.nonUser = false\r\n this.newArea = false\r\n this.showaccept = false\r\n },\r\n // 查看修改小区\r\n selected (row) {\r\n // console.log('我是修改小区。。。', row)\r\n this.nonUser = false\r\n this.modify = false\r\n this.arearow = row.val\r\n this.areainfo = null\r\n this.newArea = true\r\n this.showaccept = false\r\n this.row = null\r\n this.$refs.paged.$refs.grid.model.rows = this.rows\r\n },\r\n // 小区批量建档\r\n bulidFiles (row) {\r\n console.log('k开始建档')\r\n this.arearow = null\r\n this.newArea = false\r\n this.nonUser = false\r\n this.modify = false\r\n this.showaccept = false\r\n this.row = null\r\n this.areainfo = row\r\n // 将列表的数据清空\r\n // this.model.rows = []\r\n this.$refs.paged.$refs.grid.model.rows = this.rows\r\n },\r\n addNoUser (row) {\r\n console.log('建非民用row', row)\r\n this.arearow = null\r\n this.newArea = false\r\n this.row = null\r\n this.showaccept = false\r\n // 将列表的数据清空\r\n this.modify = false\r\n this.areainfo = row\r\n // this.model.rows = []\r\n this.nonUser = true\r\n },\r\n // 小区批量建档成功\r\n buildFileSuccess (data) {\r\n // console.log('建档案成功', data)\r\n this.model.rows.unshift(data)\r\n },\r\n selfSearch (args) {\r\n args.condition = `${args.condition} and f_filialeids = '${this.$login.f.f_orgids}'`\r\n this.model.search(args.condition, args.model)\r\n },\r\n bulkOperations (name, type) {\r\n if (name === '批量销户') {\r\n this.batcan = true\r\n this.batenable = false\r\n this.newArea = false\r\n this.showaccept = false\r\n } else if (name === '批量启用') {\r\n this.batenable = true\r\n this.batcan = false\r\n this.newArea = false\r\n this.showaccept = false\r\n }\r\n },\r\n batchSuccess () {\r\n this.batenable = false\r\n this.batcan = false\r\n this.showaccept = false\r\n this.search()\r\n },\r\n // 打开文件上传对话框\r\n fileUpload () {\r\n this.show = true\r\n },\r\n // 关闭文件上传对话框\r\n close () {\r\n // this.show = false\r\n if (this.show) {\r\n this.show = false\r\n // 讲选的文件清空\r\n this.$refs.file.$el.querySelector('input').value = ''\r\n }\r\n },\r\n sort (field, rule) {\r\n // 将所有排序方式设为不排序,实现相互排斥\r\n for (let key in this.orderFields) {\r\n if (key === field) {\r\n this.orderFields[key] = rule\r\n } else {\r\n this.orderFields[key] = 'no'\r\n }\r\n }\r\n // 如果新规则不排序,还原为默认排序\r\n if (rule === 'no') {\r\n this.model.paramSource.orderitem = `'${this.orderDefault}'`\r\n } else {\r\n this.model.paramSource.orderitem = `'${field} ${rule}'`\r\n }\r\n\r\n this.search()\r\n },\r\n\r\n getLocation(row){\r\n console.log('进入',row)\r\n //是修改档案\r\n if(row.f_useraddress_id){\r\n this.$resetpost('rs/sql/saleSingleTable', {data:{tablename: 't_userinfo', condition: `f_useraddress_id = '${row.f_useraddress_id}'`}}, {resolveMsg: null, rejectMsg: '获取档案出错'}).then((getUser) => {\r\n //只有一条档案数据才正确\r\n if (getUser.data.length === 1) {\r\n this.modifyUser(getUser.data[0])\r\n }\r\n })\r\n }else{\r\n //是创建档案\r\n //查询工单里面的档案数据\r\n this.$resetpost('rs/sql/sale_getService_sql',{data:{condition: `'${row.id}'`}},{resolveMsg: null, rejectMsg: '查询工单信息失败'}).then((getService) => {\r\n //工单中有数据\r\n if(getService.data.length === 1){\r\n this.$showMessage('该地址下有已完成的置换通气单,是否要将通气单中的信息带入建档中?', ['confirm', 'cancel']).then((res)=>{\r\n if (res === 'confirm') {\r\n let filesinfo = Object.assign({},row,getService.data[0])\r\n this.bulidFiles(filesinfo)\r\n }else{\r\n this.bulidFiles(row)\r\n }\r\n })\r\n }else{\r\n this.bulidFiles(row)\r\n }\r\n })\r\n }\r\n },\r\n areaFiles(row){\r\n this.bulidFiles(row)\r\n },\r\n\r\n initAdjustables () {\r\n console.log('初始化调压箱', this.$GetSaleParam)\r\n let arr = []\r\n let filter = this.$login.f.f_orgids\r\n this.$GetSaleParam.getAdjustable(filter).forEach((item) => {\r\n let temp = {}\r\n temp.label = `[${item.value.f_adjustable_id}]-${item.label}`\r\n temp.value = `${item.value.id}`\r\n arr.push(temp)\r\n })\r\n this.adjustables = [{label: '全部', value: ''}, ...arr]\r\n },\r\n },\r\n computed: {\r\n userstates () {\r\n return [{label: '全部', value: ''}, ...this.$appdata.getParam('用户状态')]\r\n },\r\n areas () {\r\n let rs = []\r\n for (let i = 0; i < this.$login.f.f_allArea.length; i++) {\r\n let temp = {\r\n label: this.$login.f.f_allArea[i].label,\r\n value: this.$login.f.f_allArea[i].label\r\n }\r\n rs.push(temp)\r\n }\r\n return [{label: '全部', value: ''}, ...rs]\r\n },\r\n // sliceArea () {\r\n // let rs = []\r\n // console.log('小区片区。。。', this.$refs.paged.$refs.criteria.model.f_area)\r\n // if (this.$refs.paged.$refs.criteria.model.f_area.length > 0) {\r\n // for (let i = 0; i < this.$login.f.f_allArea.length; i++) {\r\n // if (this.$login.f.f_allArea[i].label === this.$refs.paged.$refs.criteria.model.f_area[0]) {\r\n // rs = this.$login.f.f_allArea[i].value\r\n // }\r\n // }\r\n // }\r\n // console.log('获取小区片区。。。。', rs)\r\n // return [{label: '全部', value: ''}, ...rs]\r\n // },\r\n firestates () {\r\n return [\r\n {label: '全部', value: ''},\r\n {label: '点火', value: '1'},\r\n {label: '未点火', value: '0'}\r\n ]\r\n },\r\n jurisdiction () {\r\n return this.$login.r\r\n }\r\n },\r\n watch: {\r\n // 每次查询将查询到的数据存储起来,供选择操作后的替换\r\n 'model.state' (val) {\r\n if (val === '正确') {\r\n this.rows = this.model.rows\r\n }\r\n }\r\n },\r\n events: {\r\n onFileUpload: function (file, res) {\r\n let data = {\r\n // configpath: 'hibernate/用户档案/userinfo.hbm.xml',\r\n tablename: 't_userinfo',\r\n filepath: res.path\r\n }\r\n this.$resetpost('rs/logic/import', data, {resolveMsg: null, rejectMsg: '上传失败'}).then((res) => {\r\n console.log('dddddddd', this)\r\n this.close()\r\n this.$showAlert(`一共上传${res.data.total}条数据, 成功${res.data.successnum}条`, 'success', 2000)\r\n this.search()\r\n })\r\n }\r\n }\r\n }\r\n</script>\r\n<style>\r\n .nav-tabss ul > li > a{\r\n padding: 5px 10px;\r\n }\r\n</style>\r\n\n\n\n// WEBPACK FOOTER //\n// ModifyUserFiles.vue?b4caaeee","exports = module.exports = require(\"../../../../node_modules/css-loader/lib/css-base.js\")();\n// imports\n\n\n// module\nexports.push([module.id, \".nav-tabss ul>li>a{padding:5px 10px}\", \"\", {\"version\":3,\"sources\":[\"/./src/components/product/Process/ModifyUserFiles.vue\"],\"names\":[],\"mappings\":\"AAgcA,mBACE,gBAAkB,CACnB\",\"file\":\"ModifyUserFiles.vue\",\"sourcesContent\":[\"\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n.nav-tabss ul > li > a{\\n padding: 5px 10px;\\n}\\n\"],\"sourceRoot\":\"webpack://\"}]);\n\n// exports\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./~/css-loader?sourceMap!./~/vue-loader/lib/style-rewriter.js!./~/vue-loader/lib/selector.js?type=style&index=0!./src/components/product/Process/ModifyUserFiles.vue\n// module id = 494\n// module chunks = 28","// style-loader: Adds some css to the DOM by adding a <style> tag\n\n// load the styles\nvar content = require(\"!!../../../../node_modules/css-loader/index.js?sourceMap!../../../../node_modules/vue-loader/lib/style-rewriter.js!../../../../node_modules/vue-loader/lib/selector.js?type=style&index=0!./ModifyUserFiles.vue\");\nif(typeof content === 'string') content = [[module.id, content, '']];\n// add the styles to the DOM\nvar update = require(\"!../../../../node_modules/vue-style-loader/addStyles.js\")(content, {});\nif(content.locals) module.exports = content.locals;\n// Hot Module Replacement\nif(module.hot) {\n\t// When the styles change, update the <style> tags\n\tif(!content.locals) {\n\t\tmodule.hot.accept(\"!!../../../../node_modules/css-loader/index.js?sourceMap!../../../../node_modules/vue-loader/lib/style-rewriter.js!../../../../node_modules/vue-loader/lib/selector.js?type=style&index=0!./ModifyUserFiles.vue\", function() {\n\t\t\tvar newContent = require(\"!!../../../../node_modules/css-loader/index.js?sourceMap!../../../../node_modules/vue-loader/lib/style-rewriter.js!../../../../node_modules/vue-loader/lib/selector.js?type=style&index=0!./ModifyUserFiles.vue\");\n\t\t\tif(typeof newContent === 'string') newContent = [[module.id, newContent, '']];\n\t\t\tupdate(newContent);\n\t\t});\n\t}\n\t// When the module is disposed, remove the <style> tags\n\tmodule.hot.dispose(function() { update(); });\n}\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./~/extract-text-webpack-plugin/loader.js?{\"omit\":1,\"extract\":true,\"remove\":true}!./~/vue-style-loader!./~/css-loader?sourceMap!./~/vue-loader/lib/style-rewriter.js!./~/vue-loader/lib/selector.js?type=style&index=0!./src/components/product/Process/ModifyUserFiles.vue\n// module id = 565\n// module chunks = 28","module.exports = \" <div class=flex-row> <div style=\\\"flex: 1.5;width: 100%\\\" class=flex id=user-files> <div class=flex> <criteria-paged :model=model v-ref:paged :pager=\\\"!row && !newArea && !areainfo\\\" @sort=sort> <criteria partial=criteria v-ref:criteria @condition-changed=$parent.selfSearch> <div novalidate class=\\\"form-inline auto\\\" partial> <div class=form-group> <input type=text class=form-control v-model=model.f_userinfo_code condition=\\\"f_userinfo_code='{}'\\\" placeholder=用户编号 :size=\\\"model.f_userinfo_code ? model.f_userinfo_code.length : 4\\\"> </div> <div class=form-group> <input type=text class=form-control v-model=model.f_user_name condition=\\\"f_user_name like '%{}%'\\\" placeholder=用户姓名 :size=\\\"model.f_user_name ? model.f_user_name.length * 2 : 4\\\"> </div> <div class=form-group> <input type=text class=form-control v-model=model.f_user_phone placeholder=电话 condition=\\\"f_user_phone = '{}'\\\" :size=\\\"model.f_user_phone ? model.f_user_phone.length : 2\\\"> </div> <div class=form-group> <input type=text class=form-control v-model=model.f_residential_area condition=\\\"f_residential_area like '%{}%'\\\" placeholder=小区 :size=\\\"model.f_residential_area ? model.f_residential_area.length * 2 : 4\\\"> </div> <div class=form-group> <input type=text class=form-control v-model=model.f_address condition=\\\"f_address like '%{}%'\\\" placeholder=用户地址 :size=\\\"model.f_address ? model.f_address.length * 2 : 4\\\"> </div> <div class=form-group> <v-select :value.sync=model.f_user_state v-model=model.f_user_state :options=$parent.$parent.userstates placeholder=用户状态 close-on-select condition=\\\"f_user_state='{}'\\\"></v-select> </div> <div class=form-group> <v-select :value.sync=model.f_area v-model=model.f_area :options=$parent.$parent.areas placeholder=片区/管理站 condition=\\\"f_area like '%{}%'\\\" close-on-select> </v-select> </div> <div class=form-group> <v-select :value.sync=model.f_adjustable_id :options=$parent.$parent.adjustables placeholder=调压箱 close-on-select v-model=model.f_adjustable_id condition=\\\"f_adjustable_id = '{}'\\\" :search=true></v-select> </div> <div class=form-group> <button class=\\\"btn btn-success width-100\\\" @click=\\\"search(), $parent.$parent.clean()\\\">查询</button> </div> <div class=\\\"form-group col-sm-offset-1\\\"> <button class=\\\"btn btn-danger width-50\\\" @click=\\\"$parent.$parent.$parent.show = true\\\">返回</button> </div> </div> </criteria> <data-grid :model=model v-ref:grid partial=list> <template partial=head> <tr> <th><nobr>序号</nobr></th> <th> <data-order field=f_userinfo_code name=用户编号 :order.sync=$parent.$parent.$parent.orderFields.f_userinfo_code></data-order> </th> <th><nobr>用户信息</nobr></th> <th><nobr>地址信息</nobr></th> <th><nobr>状态</nobr></th> <th><nobr>操作</nobr></th> </tr> </template> <template partial=body> <td style=\\\"text-align: center\\\">{{$index + 1}}</td> <td>{{row.f_userinfo_code}}</td> <td>{{row.f_user_name}}&nbsp;&nbsp;{{row.f_user_phone ? row.f_user_phone : ''}}</td> <td>{{row.f_address_detail ? row.f_address + row.f_address_detail : row.f_address}}</td> <td style=\\\"text-align: center\\\">{{row.f_user_state}}</td> <td style=\\\"text-align: center\\\"> <button type=button name=button class=\\\"btn btn-link\\\" v-if=\\\"row.f_user_state === '正常'\\\" @click.stop=$parent.$parent.$parent.modifyinfo(row)>改装</button> </td> </template> </data-grid> </criteria-paged> </div> <div style=\\\"height: 500px\\\" v-show=\\\"row || newArea || areainfo || nonUser\\\" class=select-overspread> <user-general-info v-if=\\\"row || areainfo || nonUser\\\" :row=row :modify=modify @clean=clean :areainfo=areainfo :non-user=nonUser @success=renew @build-success=buildFileSuccess></user-general-info> </div> <div style=\\\"height: 500px\\\" v-if=\\\"batcan || batenable\\\"> <batch-cancellation v-if=batcan :useraccount=model.rows @clean=clean @success=batchSuccess></batch-cancellation> <batch-enable v-if=batenable :useraccount=model.rows @clean=clean @success=batchSuccess></batch-enable> </div> </div> <modal :show.sync=show v-ref:modal backdrop=false> <header slot=modal-header class=modal-header> <button type=button class=close @click=close><span>&times;</span></button> <h4 class=modal-title>文件上传</h4> </header> <article slot=modal-body class=modal-body> <div class=form-group> <file-upload class=my-file-uploader name=myFile action=rs/file/upload tagname=文件上传 :headers=headers multiple=multiple v-ref:file></file-upload> </div> </article> <footer slot=modal-footer class=modal-footer> </footer> </modal> </div> \";\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./~/vue-html-loader!./~/vue-loader/lib/selector.js?type=template&index=0!./src/components/product/Process/ModifyUserFiles.vue\n// module id = 751\n// module chunks = 28","var __vue_script__, __vue_template__\nvar __vue_styles__ = {}\nrequire(\"!!../../../../node_modules/extract-text-webpack-plugin/loader.js?{\\\"omit\\\":1,\\\"extract\\\":true,\\\"remove\\\":true}!vue-style-loader!css-loader?sourceMap!../../../../node_modules/vue-loader/lib/style-rewriter.js!../../../../node_modules/vue-loader/lib/selector.js?type=style&index=0!./ModifyUserFiles.vue\")\n__vue_script__ = require(\"!!babel-loader?presets[]=es2015&plugins[]=transform-runtime&comments=false!../../../../node_modules/vue-loader/lib/selector.js?type=script&index=0!./ModifyUserFiles.vue\")\n__vue_template__ = require(\"!!vue-html-loader!../../../../node_modules/vue-loader/lib/selector.js?type=template&index=0!./ModifyUserFiles.vue\")\nmodule.exports = __vue_script__ || {}\nif (module.exports.__esModule) module.exports = module.exports.default\nvar __vue_options__ = typeof module.exports === \"function\" ? (module.exports.options || (module.exports.options = {})) : module.exports\nif (__vue_template__) {\n__vue_options__.template = __vue_template__\n}\nif (!__vue_options__.computed) __vue_options__.computed = {}\nObject.keys(__vue_styles__).forEach(function (key) {\nvar module = __vue_styles__[key]\n__vue_options__.computed[key] = function () { return module }\n})\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./src/components/product/Process/ModifyUserFiles.vue\n// module id = 928\n// module chunks = 28"],"sourceRoot":""}
@@ -1,2 +0,0 @@
1
- webpackJsonp([29],{369:function(e,s,o){"use strict";function t(e){return e&&e.__esModule?e:{default:e}}Object.defineProperty(s,"__esModule",{value:!0});var a=o(11),n=t(a);s.default={title:"基本信息",data:function(){return{temp:2,showbasicinfo:!0,showallinfo:!1,model:{f_user_name:"无",f_address:"无",f_apply_count:"无",f_phone:"无",f_apply_type:"无",f_area:"无",f_user_type:"无",f_house_type:"无",f_residential_area:"无",f_apply_remarks:"无"}}},props:["infeeinfo"],ready:function(){this.model=(0,n.default)({},this.model,this.infeeinfo),console.log("ttttttttttttttthis.model",this.model)},methods:{showbasic:function(){this.showbasicinfo=!0,this.showallinfo=!1},showall:function(){this.showbasicinfo=!1,this.showallinfo=!0}},watch:{infeeinfo:function(){this.model=(0,n.default)({},this.model,this.infeeinfo)}},computed:{aaa:function(){return this.model.f_jmhj_cost=Number(this.model.f_total_cost)-Number(this.model.f_actualfee),this.model.f_jmhj_cost}}}},493:function(e,s,o){s=e.exports=o(4)(),s.push([e.id,"","",{version:3,sources:[],names:[],mappings:"",file:"InstallFeeInfo.vue",sourceRoot:"webpack://"}])},564:function(e,s,o){var t=o(493);"string"==typeof t&&(t=[[e.id,t,""]]);o(5)(t,{});t.locals&&(e.exports=t.locals)},745:function(e,s){e.exports=' <div class=auto style=padding-right:5px> <div class="panel panel-info"> <div class=panel-heading> <h3 class="panel-title text-center"><span @click=showbasic() style="cursor: pointer" class=pull-left>用户基本信息</span></h3> </div> <div class=panel-body v-if=showbasicinfo> <div class=panel-body> <span>客户名称:{{model.f_user_name}}</span> <span>电话:{{model.f_phone}}</span> <span>片区:{{model.f_area}}</span> <span>报建类型:{{model.f_apply_type}}</span> <span>用户类型:{{model.f_user_type}}</span> <span>申请户数:{{model.f_apply_count}}</span> <span>房屋类型:{{model.f_house_type}}</span> <span>小区:{{model.f_residential_area}}</span> <span>地址:{{model.f_address}}</span> <span>报建备注:{{model.f_apply_remarks}}</span> </div> <div class="panel panel-body" v-if="$login.f.f_fengongsi.includes(\'博能\')"> <p>票据历史:</p> <div> <span>累计开票金额:{{model.f_total_cost}}</span> </div> <div v-for="tem in temp"> <span>票据类型:{{model.f_total_cost}}</span> <span>金额:{{model.f_total_cost}}</span> <span>开票人:{{model.f_actualfee}}</span> <span>开票时间:{{aaa}}</span> </div> </div> </div> <div class=panel-body v-if=showallinfo> <allselect :applyinfo=model></allselect> </div> </div> </div> '},920:function(e,s,o){var t,a,n={};o(564),t=o(369),a=o(745),e.exports=t||{},e.exports.__esModule&&(e.exports=e.exports.default);var l="function"==typeof e.exports?e.exports.options||(e.exports.options={}):e.exports;a&&(l.template=a),l.computed||(l.computed={}),Object.keys(n).forEach(function(e){var s=n[e];l.computed[e]=function(){return s}})}});
2
- //# sourceMappingURL=29.js.map
@@ -1 +0,0 @@
1
- {"version":3,"sources":["webpack:///29.js","webpack:///InstallFeeInfo.vue","webpack:///./src/components/product/Function/functions/InstallFeeInfo.vue?9ced","webpack:///./src/components/product/Function/functions/InstallFeeInfo.vue?3773","webpack:///./src/components/product/Function/functions/InstallFeeInfo.vue?3a24","webpack:///./src/components/product/Function/functions/InstallFeeInfo.vue"],"names":["webpackJsonp","369","module","exports","__webpack_require__","_interopRequireDefault","obj","__esModule","default","Object","defineProperty","value","_assign","_assign2","title","data","temp","showbasicinfo","showallinfo","model","f_user_name","f_address","f_apply_count","f_phone","f_apply_type","f_area","f_user_type","f_house_type","f_residential_area","f_apply_remarks","props","ready","this","infeeinfo","console","log","methods","showbasic","showall","watch","computed","aaa","f_jmhj_cost","Number","f_total_cost","f_actualfee","493","push","id","version","sources","names","mappings","file","sourceRoot","564","content","locals","745","920","__vue_script__","__vue_template__","__vue_styles__","__vue_options__","options","template","keys","forEach","key"],"mappings":"AAAAA,cAAc,KAERC,IACA,SAAUC,EAAQC,EAASC,GAEhC,YAUA,SAASC,GAAuBC,GAAO,MAAOA,IAAOA,EAAIC,WAAaD,GAAQE,QAASF,GARvFG,OAAOC,eAAeP,EAAS,cAC7BQ,OAAO,GAGT,IAAIC,GAAUR,EAAoB,IAE9BS,EAAWR,EAAuBO,EAItCT,GAAQK,SCkCTM,MAAA,OACAC,KAFA,WAGA,OACAC,KAAA,EACAC,eAAA,EACAC,aAAA,EACAC,OACAC,YAAA,IACAC,UAAA,IACAC,cAAA,IACAC,QAAA,IACAC,aAAA,IACAC,OAAA,IACAC,YAAA,IACAC,aAAA,IACAC,mBAAA,IACAC,gBAAA,OAIAC,OAAA,aACAC,MAtBA,WAuBAC,KAAAb,OAAA,EAAAN,EAAAL,YAAAwB,KAAAb,MAAAa,KAAAC,WACAC,QAAAC,IAAA,2BAAAH,KAAAb,QAEAiB,SACAC,UADA,WAEAL,KAAAf,eAAA,EACAe,KAAAd,aAAA,GAEAoB,QALA,WAMAN,KAAAf,eAAA,EACAe,KAAAd,aAAA,IAGAqB,OACAN,UADA,WAEAD,KAAAb,OAAA,EAAAN,EAAAL,YAAAwB,KAAAb,MAAAa,KAAAC,aAGAO,UACAC,IADA,WAGA,MADAT,MAAAb,MAAAuB,YAAAC,OAAAX,KAAAb,MAAAyB,cAAAD,OAAAX,KAAAb,MAAA0B,aACAb,KAAAb,MAAAuB,gBDxBMI,IACA,SAAU5C,EAAQC,EAASC,GEvEjCD,EAAAD,EAAAC,QAAAC,EAAA,KAKAD,EAAA4C,MAAA7C,EAAA8C,GAAA,OAAkCC,QAAA,EAAAC,WAAAC,SAAAC,SAAA,GAAAC,KAAA,qBAAAC,WAAA,iBFgF5BC,IACA,SAAUrD,EAAQC,EAASC,GGnFjC,GAAAoD,GAAApD,EAAA,IACA,iBAAAoD,SAAAtD,EAAA8C,GAAAQ,EAAA,KAEApD,GAAA,GAAAoD,KACAA,GAAAC,SAAAvD,EAAAC,QAAAqD,EAAAC,SHyGMC,IACA,SAAUxD,EAAQC,GIjHxBD,EAAAC,QAAA,inCJuHMwD,IACA,SAAUzD,EAAQC,EAASC,GKxHjC,GAAAwD,GAAAC,EACAC,IACA1D,GAAA,KACAwD,EAAAxD,EAAA,KACAyD,EAAAzD,EAAA,KACAF,EAAAC,QAAAyD,MACA1D,EAAAC,QAAAI,aAAAL,EAAAC,QAAAD,EAAAC,QAAAK,QACA,IAAAuD,GAAA,kBAAA7D,GAAAC,QAAAD,EAAAC,QAAA6D,UAAA9D,EAAAC,QAAA6D,YAAoH9D,EAAAC,OACpH0D,KACAE,EAAAE,SAAAJ,GAEAE,EAAAvB,WAAAuB,EAAAvB,aACA/B,OAAAyD,KAAAJ,GAAAK,QAAA,SAAAC,GACA,GAAAlE,GAAA4D,EAAAM,EACAL,GAAAvB,SAAA4B,GAAA,WAA6C,MAAAlE","file":"29.js","sourcesContent":["webpackJsonp([29],{\n\n/***/ 369:\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t\n\tObject.defineProperty(exports, \"__esModule\", {\n\t value: true\n\t});\n\t\n\tvar _assign = __webpack_require__(11);\n\t\n\tvar _assign2 = _interopRequireDefault(_assign);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\texports.default = {\n\t title: '基本信息',\n\t data: function data() {\n\t return {\n\t temp: 2,\n\t showbasicinfo: true,\n\t showallinfo: false,\n\t model: {\n\t f_user_name: '无',\n\t f_address: '无',\n\t f_apply_count: '无',\n\t f_phone: '无',\n\t f_apply_type: '无',\n\t f_area: '无',\n\t f_user_type: '无',\n\t f_house_type: '无',\n\t f_residential_area: '无',\n\t f_apply_remarks: '无'\n\t }\n\t };\n\t },\n\t\n\t props: ['infeeinfo'],\n\t ready: function ready() {\n\t this.model = (0, _assign2.default)({}, this.model, this.infeeinfo);\n\t console.log('ttttttttttttttthis.model', this.model);\n\t },\n\t\n\t methods: {\n\t showbasic: function showbasic() {\n\t this.showbasicinfo = true;\n\t this.showallinfo = false;\n\t },\n\t showall: function showall() {\n\t this.showbasicinfo = false;\n\t this.showallinfo = true;\n\t }\n\t },\n\t watch: {\n\t 'infeeinfo': function infeeinfo() {\n\t this.model = (0, _assign2.default)({}, this.model, this.infeeinfo);\n\t }\n\t },\n\t computed: {\n\t aaa: function aaa() {\n\t this.model.f_jmhj_cost = Number(this.model.f_total_cost) - Number(this.model.f_actualfee);\n\t return this.model.f_jmhj_cost;\n\t }\n\t }\n\t};\n\n/***/ }),\n\n/***/ 493:\n/***/ (function(module, exports, __webpack_require__) {\n\n\texports = module.exports = __webpack_require__(4)();\n\t// imports\n\t\n\t\n\t// module\n\texports.push([module.id, \"\", \"\", {\"version\":3,\"sources\":[],\"names\":[],\"mappings\":\"\",\"file\":\"InstallFeeInfo.vue\",\"sourceRoot\":\"webpack://\"}]);\n\t\n\t// exports\n\n\n/***/ }),\n\n/***/ 564:\n/***/ (function(module, exports, __webpack_require__) {\n\n\t// style-loader: Adds some css to the DOM by adding a <style> tag\n\t\n\t// load the styles\n\tvar content = __webpack_require__(493);\n\tif(typeof content === 'string') content = [[module.id, content, '']];\n\t// add the styles to the DOM\n\tvar update = __webpack_require__(5)(content, {});\n\tif(content.locals) module.exports = content.locals;\n\t// Hot Module Replacement\n\tif(false) {\n\t\t// When the styles change, update the <style> tags\n\t\tif(!content.locals) {\n\t\t\tmodule.hot.accept(\"!!../../../../../node_modules/css-loader/index.js?sourceMap!../../../../../node_modules/vue-loader/lib/style-rewriter.js!../../../../../node_modules/vue-loader/lib/selector.js?type=style&index=0!./InstallFeeInfo.vue\", function() {\n\t\t\t\tvar newContent = require(\"!!../../../../../node_modules/css-loader/index.js?sourceMap!../../../../../node_modules/vue-loader/lib/style-rewriter.js!../../../../../node_modules/vue-loader/lib/selector.js?type=style&index=0!./InstallFeeInfo.vue\");\n\t\t\t\tif(typeof newContent === 'string') newContent = [[module.id, newContent, '']];\n\t\t\t\tupdate(newContent);\n\t\t\t});\n\t\t}\n\t\t// When the module is disposed, remove the <style> tags\n\t\tmodule.hot.dispose(function() { update(); });\n\t}\n\n/***/ }),\n\n/***/ 745:\n/***/ (function(module, exports) {\n\n\tmodule.exports = \" <div class=auto style=padding-right:5px> <div class=\\\"panel panel-info\\\"> <div class=panel-heading> <h3 class=\\\"panel-title text-center\\\"><span @click=showbasic() style=\\\"cursor: pointer\\\" class=pull-left>用户基本信息</span></h3> </div> <div class=panel-body v-if=showbasicinfo> <div class=panel-body> <span>客户名称:{{model.f_user_name}}</span> <span>电话:{{model.f_phone}}</span> <span>片区:{{model.f_area}}</span> <span>报建类型:{{model.f_apply_type}}</span> <span>用户类型:{{model.f_user_type}}</span> <span>申请户数:{{model.f_apply_count}}</span> <span>房屋类型:{{model.f_house_type}}</span> <span>小区:{{model.f_residential_area}}</span> <span>地址:{{model.f_address}}</span> <span>报建备注:{{model.f_apply_remarks}}</span> </div> <div class=\\\"panel panel-body\\\" v-if=\\\"$login.f.f_fengongsi.includes('博能')\\\"> <p>票据历史:</p> <div> <span>累计开票金额:{{model.f_total_cost}}</span> </div> <div v-for=\\\"tem in temp\\\"> <span>票据类型:{{model.f_total_cost}}</span> <span>金额:{{model.f_total_cost}}</span> <span>开票人:{{model.f_actualfee}}</span> <span>开票时间:{{aaa}}</span> </div> </div> </div> <div class=panel-body v-if=showallinfo> <allselect :applyinfo=model></allselect> </div> </div> </div> \";\n\n/***/ }),\n\n/***/ 920:\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar __vue_script__, __vue_template__\n\tvar __vue_styles__ = {}\n\t__webpack_require__(564)\n\t__vue_script__ = __webpack_require__(369)\n\t__vue_template__ = __webpack_require__(745)\n\tmodule.exports = __vue_script__ || {}\n\tif (module.exports.__esModule) module.exports = module.exports.default\n\tvar __vue_options__ = typeof module.exports === \"function\" ? (module.exports.options || (module.exports.options = {})) : module.exports\n\tif (__vue_template__) {\n\t__vue_options__.template = __vue_template__\n\t}\n\tif (!__vue_options__.computed) __vue_options__.computed = {}\n\tObject.keys(__vue_styles__).forEach(function (key) {\n\tvar module = __vue_styles__[key]\n\t__vue_options__.computed[key] = function () { return module }\n\t})\n\n\n/***/ })\n\n});\n\n\n// WEBPACK FOOTER //\n// 29.js","<template>\r\n <div class=\"auto\" style=\"padding-right:5px;\">\r\n <div class=\"panel panel-info\">\r\n \t<div class=\"panel-heading\">\r\n \t\t<h3 class=\"panel-title text-center\"><span @click=\"showbasic()\" style=\"cursor: pointer;\" class=\"pull-left\">用户基本信息</span></h3>\r\n \t</div>\r\n <div class=\"panel-body\" v-if=\"showbasicinfo\">\r\n <div class=\"panel-body\">\r\n <span>客户名称:{{model.f_user_name}}</span>\r\n <span>电话:{{model.f_phone}}</span>\r\n <span>片区:{{model.f_area}}</span>\r\n <span>报建类型:{{model.f_apply_type}}</span>\r\n <span>用户类型:{{model.f_user_type}}</span>\r\n <span>申请户数:{{model.f_apply_count}}</span>\r\n <span>房屋类型:{{model.f_house_type}}</span>\r\n <span>小区:{{model.f_residential_area}}</span>\r\n <span>地址:{{model.f_address}}</span>\r\n <span>报建备注:{{model.f_apply_remarks}}</span>\r\n </div>\r\n <!--<div class=\"panel panel-body\">-->\r\n <!--<span>工程名称:{{model.f_total_cost}}</span>-->\r\n <!--<span>地址:{{model.f_actualfee}}</span>-->\r\n <!--<span>合同号:{{model.f_contract_number}}</span>-->\r\n <!--<span>合同金额:{{$parent.$refs.prestorefee.sum}}</span>-->\r\n <!--</div>-->\r\n <div class=\"panel panel-body\" v-if=\"$login.f.f_fengongsi.includes('博能')\">\r\n <p>票据历史:</p>\r\n <div>\r\n <span>累计开票金额:{{model.f_total_cost}}</span>\r\n </div>\r\n <div v-for=\"tem in temp\">\r\n <span>票据类型:{{model.f_total_cost}}</span>\r\n <span>金额:{{model.f_total_cost}}</span>\r\n <span>开票人:{{model.f_actualfee}}</span>\r\n <span>开票时间:{{aaa}}</span>\r\n </div>\r\n </div>\r\n <!--<div class=\"panel panel-body\">-->\r\n <!--<span>总计金额:{{model.f_total_cost}}</span>-->\r\n <!--<span>实缴金额:{{model.f_actualfee}}</span>-->\r\n <!--<span>未交金额:{{aaa}}</span>-->\r\n <!--</div>-->\r\n </div>\r\n <div class=\"panel-body\" v-if=\"showallinfo\">\r\n <allselect :applyinfo=\"model\"></allselect>\r\n </div>\r\n </div>\r\n</div>\r\n</template>\r\n<script>\r\n export default {\r\n title: '基本信息',\r\n data () {\r\n return {\r\n temp : 2,\r\n showbasicinfo: true,\r\n showallinfo: false,\r\n model: {\r\n f_user_name: '无',\r\n f_address: '无',\r\n f_apply_count: '无',\r\n f_phone: '无',\r\n f_apply_type: '无',\r\n f_area: '无',\r\n f_user_type: '无',\r\n f_house_type: '无',\r\n f_residential_area: '无',\r\n f_apply_remarks: '无'\r\n }\r\n }\r\n },\r\n props: ['infeeinfo'],\r\n ready () {\r\n this.model = Object.assign({}, this.model, this.infeeinfo)\r\n console.log('ttttttttttttttthis.model', this.model)\r\n },\r\n methods: {\r\n showbasic () {\r\n this.showbasicinfo = true\r\n this.showallinfo = false\r\n },\r\n showall () {\r\n this.showbasicinfo = false\r\n this.showallinfo = true\r\n }\r\n },\r\n watch: {\r\n 'infeeinfo' () {\r\n this.model = Object.assign({}, this.model, this.infeeinfo)\r\n }\r\n },\r\n computed: {\r\n aaa () {\r\n this.model.f_jmhj_cost = Number(this.model.f_total_cost)-Number(this.model.f_actualfee)\r\n return this.model.f_jmhj_cost\r\n }\r\n }\r\n }\r\n</script>\r\n<style>\r\n</style>\r\n\n\n\n// WEBPACK FOOTER //\n// InstallFeeInfo.vue?00c1d1f0","exports = module.exports = require(\"../../../../../node_modules/css-loader/lib/css-base.js\")();\n// imports\n\n\n// module\nexports.push([module.id, \"\", \"\", {\"version\":3,\"sources\":[],\"names\":[],\"mappings\":\"\",\"file\":\"InstallFeeInfo.vue\",\"sourceRoot\":\"webpack://\"}]);\n\n// exports\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./~/css-loader?sourceMap!./~/vue-loader/lib/style-rewriter.js!./~/vue-loader/lib/selector.js?type=style&index=0!./src/components/product/Function/functions/InstallFeeInfo.vue\n// module id = 493\n// module chunks = 29","// style-loader: Adds some css to the DOM by adding a <style> tag\n\n// load the styles\nvar content = require(\"!!../../../../../node_modules/css-loader/index.js?sourceMap!../../../../../node_modules/vue-loader/lib/style-rewriter.js!../../../../../node_modules/vue-loader/lib/selector.js?type=style&index=0!./InstallFeeInfo.vue\");\nif(typeof content === 'string') content = [[module.id, content, '']];\n// add the styles to the DOM\nvar update = require(\"!../../../../../node_modules/vue-style-loader/addStyles.js\")(content, {});\nif(content.locals) module.exports = content.locals;\n// Hot Module Replacement\nif(module.hot) {\n\t// When the styles change, update the <style> tags\n\tif(!content.locals) {\n\t\tmodule.hot.accept(\"!!../../../../../node_modules/css-loader/index.js?sourceMap!../../../../../node_modules/vue-loader/lib/style-rewriter.js!../../../../../node_modules/vue-loader/lib/selector.js?type=style&index=0!./InstallFeeInfo.vue\", function() {\n\t\t\tvar newContent = require(\"!!../../../../../node_modules/css-loader/index.js?sourceMap!../../../../../node_modules/vue-loader/lib/style-rewriter.js!../../../../../node_modules/vue-loader/lib/selector.js?type=style&index=0!./InstallFeeInfo.vue\");\n\t\t\tif(typeof newContent === 'string') newContent = [[module.id, newContent, '']];\n\t\t\tupdate(newContent);\n\t\t});\n\t}\n\t// When the module is disposed, remove the <style> tags\n\tmodule.hot.dispose(function() { update(); });\n}\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./~/extract-text-webpack-plugin/loader.js?{\"omit\":1,\"extract\":true,\"remove\":true}!./~/vue-style-loader!./~/css-loader?sourceMap!./~/vue-loader/lib/style-rewriter.js!./~/vue-loader/lib/selector.js?type=style&index=0!./src/components/product/Function/functions/InstallFeeInfo.vue\n// module id = 564\n// module chunks = 29","module.exports = \" <div class=auto style=padding-right:5px> <div class=\\\"panel panel-info\\\"> <div class=panel-heading> <h3 class=\\\"panel-title text-center\\\"><span @click=showbasic() style=\\\"cursor: pointer\\\" class=pull-left>用户基本信息</span></h3> </div> <div class=panel-body v-if=showbasicinfo> <div class=panel-body> <span>客户名称:{{model.f_user_name}}</span> <span>电话:{{model.f_phone}}</span> <span>片区:{{model.f_area}}</span> <span>报建类型:{{model.f_apply_type}}</span> <span>用户类型:{{model.f_user_type}}</span> <span>申请户数:{{model.f_apply_count}}</span> <span>房屋类型:{{model.f_house_type}}</span> <span>小区:{{model.f_residential_area}}</span> <span>地址:{{model.f_address}}</span> <span>报建备注:{{model.f_apply_remarks}}</span> </div> <div class=\\\"panel panel-body\\\" v-if=\\\"$login.f.f_fengongsi.includes('博能')\\\"> <p>票据历史:</p> <div> <span>累计开票金额:{{model.f_total_cost}}</span> </div> <div v-for=\\\"tem in temp\\\"> <span>票据类型:{{model.f_total_cost}}</span> <span>金额:{{model.f_total_cost}}</span> <span>开票人:{{model.f_actualfee}}</span> <span>开票时间:{{aaa}}</span> </div> </div> </div> <div class=panel-body v-if=showallinfo> <allselect :applyinfo=model></allselect> </div> </div> </div> \";\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./~/vue-html-loader!./~/vue-loader/lib/selector.js?type=template&index=0!./src/components/product/Function/functions/InstallFeeInfo.vue\n// module id = 745\n// module chunks = 29","var __vue_script__, __vue_template__\nvar __vue_styles__ = {}\nrequire(\"!!../../../../../node_modules/extract-text-webpack-plugin/loader.js?{\\\"omit\\\":1,\\\"extract\\\":true,\\\"remove\\\":true}!vue-style-loader!css-loader?sourceMap!../../../../../node_modules/vue-loader/lib/style-rewriter.js!../../../../../node_modules/vue-loader/lib/selector.js?type=style&index=0!./InstallFeeInfo.vue\")\n__vue_script__ = require(\"!!babel-loader?presets[]=es2015&plugins[]=transform-runtime&comments=false!../../../../../node_modules/vue-loader/lib/selector.js?type=script&index=0!./InstallFeeInfo.vue\")\n__vue_template__ = require(\"!!vue-html-loader!../../../../../node_modules/vue-loader/lib/selector.js?type=template&index=0!./InstallFeeInfo.vue\")\nmodule.exports = __vue_script__ || {}\nif (module.exports.__esModule) module.exports = module.exports.default\nvar __vue_options__ = typeof module.exports === \"function\" ? (module.exports.options || (module.exports.options = {})) : module.exports\nif (__vue_template__) {\n__vue_options__.template = __vue_template__\n}\nif (!__vue_options__.computed) __vue_options__.computed = {}\nObject.keys(__vue_styles__).forEach(function (key) {\nvar module = __vue_styles__[key]\n__vue_options__.computed[key] = function () { return module }\n})\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./src/components/product/Function/functions/InstallFeeInfo.vue\n// module id = 920\n// module chunks = 29"],"sourceRoot":""}
@@ -1,2 +0,0 @@
1
- webpackJsonp([3],{110:function(e,n,t){e.exports=t.p+"修改密码.png?b991a14"},113:function(e,n,t){e.exports=t.p+"导出数据.png?20ef677"},117:function(e,n,t){e.exports=t.p+"清空数据.png?6dab3a7"},178:function(e,n,t){var o,A,s={};t(596),o=t(240),A=t(792),e.exports=o||{},e.exports.__esModule&&(e.exports=e.exports.default);var c="function"==typeof e.exports?e.exports.options||(e.exports.options={}):e.exports;A&&(c.template=A),c.computed||(c.computed={}),Object.keys(s).forEach(function(e){var n=s[e];c.computed[e]=function(){return n}})},240:function(e,n,t){"use strict";function o(e){return e&&e.__esModule?e:{default:e}}Object.defineProperty(n,"__esModule",{value:!0});var A=t(1);o(A);n.default={title:"系统设置",data:function(){return{model:{}}},methods:{gotopage:function(e){this.$goto(e)},back:function(){this.$back()},cleandata:function(){var e=this;this.$showMessage("此操作为清理数据,无法恢复!",["confirm","cancel"]).then(function(n){if("confirm"===n){var t=e.$androidUtil.bzLogic("clearPhoneData",{flag:0});"成功"==t.result?e.$showAlert("清除数据完成","warning",1e3):e.$showAlert("清除数据失败","danger",1e3)}})},outdata:function(){HostApp.backupDatabase()}}}},512:function(e,n,t){n=e.exports=t(4)(),n.push([e.id,".flex-between[_v-641ec5ed]{display:-ms-flexbox;display:flex;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-align:center;align-items:center}.flex-between span[_v-641ec5ed]{padding-right:10px}.flex-full[_v-641ec5ed]{-ms-flex:1;flex:1}.name[_v-641ec5ed]{font:15px PingFang-SC-Medium;color:#666}.imgs[_v-641ec5ed]{width:60px;margin-top:15px}.plan[_v-641ec5ed],.user[_v-641ec5ed]{border-bottom:.5px solid #eaeaea;border-right:.5px solid #eaeaea;height:120px}.safecheck[_v-641ec5ed],.user[_v-641ec5ed]{border-left:.5px solid #eaeaea}.safecheck[_v-641ec5ed]{border-bottom:.5px solid #eaeaea;height:120px}.appointment[_v-641ec5ed],.search[_v-641ec5ed]{border-top:.5px solid #eaeaea;border-right:.5px solid #eaeaea;height:120px}.search[_v-641ec5ed],.upload[_v-641ec5ed]{border-left:.5px solid #eaeaea}.upload[_v-641ec5ed]{border-top:.5px solid #eaeaea;height:120px}","",{version:3,sources:["/./node_modules/system-phone/src/components/SystemSetUp.vue"],names:[],mappings:"AAyDA,2BACE,oBAAqB,AACrB,aAAc,AACd,sBAAuB,AACnB,8BAA+B,AACnC,sBAAuB,AACnB,kBAAoB,CACzB,AACD,gCACE,kBAAoB,CACrB,AACD,wBACE,WAAY,AACR,MAAQ,CACb,AACD,mBACE,6BAA8B,AAC9B,UAAe,CAChB,AACD,mBACE,WAAY,AACZ,eAAiB,CAClB,AAMD,sCAJE,iCAAmC,AACnC,gCAAkC,AAClC,YAAc,CAOf,AACD,2CAHE,8BAAiC,CAOlC,AAJD,wBACE,iCAAmC,AAEnC,YAAc,CACf,AAMD,+CAJE,8BAAgC,AAChC,gCAAkC,AAClC,YAAc,CAOf,AACD,0CAHE,8BAAiC,CAOlC,AAJD,qBACE,8BAAgC,AAEhC,YAAc,CACf",file:"SystemSetUp.vue",sourcesContent:["\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n.flex-between[_v-641ec5ed] {\n display: -ms-flexbox;\n display: flex;\n -ms-flex-pack: justify;\n justify-content: space-between;\n -ms-flex-align: center;\n align-items: center;\n}\n.flex-between span[_v-641ec5ed] {\n padding-right: 10px;\n}\n.flex-full[_v-641ec5ed] {\n -ms-flex: 1;\n flex: 1;\n}\n.name[_v-641ec5ed]{\n font: 15px PingFang-SC-Medium;\n color: #666666;\n}\n.imgs[_v-641ec5ed]{\n width: 60px;\n margin-top: 15px;\n}\n.plan[_v-641ec5ed] {\n border-bottom: 0.5px solid #EAEAEA;\n border-right: 0.5px solid #EAEAEA;\n height: 120px;\n}\n.user[_v-641ec5ed]{\n border-bottom: 0.5px solid #EAEAEA;\n border-right: 0.5px solid #EAEAEA;\n border-left: 0.5px solid #EAEAEA;\n height: 120px;\n}\n.safecheck[_v-641ec5ed]{\n border-bottom: 0.5px solid #EAEAEA;\n border-left: 0.5px solid #EAEAEA;\n height: 120px;\n}\n.appointment[_v-641ec5ed]{\n border-top: 0.5px solid #EAEAEA;\n border-right: 0.5px solid #EAEAEA;\n height: 120px;\n}\n.search[_v-641ec5ed]{\n border-top: 0.5px solid #EAEAEA;\n border-right: 0.5px solid #EAEAEA;\n border-left: 0.5px solid #EAEAEA;\n height: 120px;\n}\n.upload[_v-641ec5ed]{\n border-top: 0.5px solid #EAEAEA;\n border-left: 0.5px solid #EAEAEA;\n height: 120px;\n}\n\n\n"],sourceRoot:"webpack://"}])},596:function(e,n,t){var o=t(512);"string"==typeof o&&(o=[[e.id,o,""]]);t(5)(o,{});o.locals&&(e.exports=o.locals)},792:function(e,n,t){e.exports=' <div class="row auto" style="background-color: #FFFFFF" _v-641ec5ed=""> <div class="col-xs-4 text-center plan" @click="gotopage(\'modify-pass-word\')" _v-641ec5ed=""> <img src='+t(110)+' class=imgs alt="" _v-641ec5ed=""> <p class="text-center name" style="margin: 10px 0" _v-641ec5ed="">修改密码</p> </div> <div class="col-xs-4 text-center user" @click=cleandata() _v-641ec5ed=""> <img src='+t(117)+' class=imgs alt="" _v-641ec5ed=""> <p class="text-center name" style="margin: 10px 0" _v-641ec5ed="">清空数据</p> </div> <div class="col-xs-4 text-center user" @click=outdata() _v-641ec5ed=""> <img src='+t(113)+' class=imgs alt="" _v-641ec5ed=""> <p class="text-center name" style="margin: 10px 0" _v-641ec5ed="">导出数据</p> </div> </div> '}});
2
- //# sourceMappingURL=3.js.map
@@ -1 +0,0 @@
1
- {"version":3,"sources":["webpack:///3.js","webpack:///./~/system-phone/src/assets/修改密码.png","webpack:///./~/system-phone/src/assets/导出数据.png","webpack:///./~/system-phone/src/assets/清空数据.png","webpack:///./~/system-phone/src/components/SystemSetUp.vue","webpack:///SystemSetUp.vue","webpack:///./~/system-phone/src/components/SystemSetUp.vue?d9b0","webpack:///./~/system-phone/src/components/SystemSetUp.vue?85ce","webpack:///./~/system-phone/src/components/SystemSetUp.vue?a890"],"names":["webpackJsonp","110","module","exports","__webpack_require__","p","113","117","178","__vue_script__","__vue_template__","__vue_styles__","__esModule","default","__vue_options__","options","template","computed","Object","keys","forEach","key","240","_interopRequireDefault","obj","defineProperty","value","_vue","title","data","model","methods","gotopage","param","this","$goto","back","$back","cleandata","_this","$showMessage","then","res","result","$androidUtil","bzLogic","flag","$showAlert","outdata","HostApp","backupDatabase","512","push","id","version","sources","names","mappings","file","sourcesContent","sourceRoot","596","content","locals","792"],"mappings":"AAAAA,cAAc,IAERC,IACA,SAAUC,EAAQC,EAASC,GCHjCF,EAAAC,QAAAC,EAAAC,EAAA,oBDSMC,IACA,SAAUJ,EAAQC,EAASC,GEVjCF,EAAAC,QAAAC,EAAAC,EAAA,oBFgBME,IACA,SAAUL,EAAQC,EAASC,GGjBjCF,EAAAC,QAAAC,EAAAC,EAAA,oBHuBMG,IACA,SAAUN,EAAQC,EAASC,GIxBjC,GAAAK,GAAAC,EACAC,IACAP,GAAA,KACAK,EAAAL,EAAA,KACAM,EAAAN,EAAA,KACAF,EAAAC,QAAAM,MACAP,EAAAC,QAAAS,aAAAV,EAAAC,QAAAD,EAAAC,QAAAU,QACA,IAAAC,GAAA,kBAAAZ,GAAAC,QAAAD,EAAAC,QAAAY,UAAAb,EAAAC,QAAAY,YAAoHb,EAAAC,OACpHO,KACAI,EAAAE,SAAAN,GAEAI,EAAAG,WAAAH,EAAAG,aACAC,OAAAC,KAAAR,GAAAS,QAAA,SAAAC,GACA,GAAAnB,GAAAS,EAAAU,EACAP,GAAAG,SAAAI,GAAA,WAA6C,MAAAnB,OJgCvCoB,IACA,SAAUpB,EAAQC,EAASC,GAEhC,YAUA,SAASmB,GAAuBC,GAAO,MAAOA,IAAOA,EAAIZ,WAAaY,GAAQX,QAASW,GARvFN,OAAOO,eAAetB,EAAS,cAC7BuB,OAAO,GAGT,IAAIC,GAAOvB,EAAoB,EAEnBmB,GAAuBI,EAInCxB,GAAQU,SKxCTe,MAAA,OACAC,KAFA,WAGA,OACAC,WAGAC,SACAC,SADA,SACAC,GACAC,KAAAC,MAAAF,IAGAG,KALA,WAMAF,KAAAG,SAGAC,UATA,WASA,GAAAC,GAAAL,IACAA,MAAAM,aAAA,uCAAAC,KAAA,SAAAC,GACA,eAAAA,EAAA,CACA,GAAAC,GAAAJ,EAAAK,aAAAC,QAAA,kBAAAC,KAAA,GACA,OAAAH,SACAJ,EAAAQ,WAAA,wBAEAR,EAAAQ,WAAA,2BAMAC,QAtBA,WAuBAC,QAAAC,qBLgDMC,IACA,SAAUjD,EAAQC,EAASC,GMnGjCD,EAAAD,EAAAC,QAAAC,EAAA,KAKAD,EAAAiD,MAAAlD,EAAAmD,GAAA,y2BAAg4B,IAAQC,QAAA,EAAAC,SAAA,+DAAAC,SAAAC,SAAA,saAAAC,KAAA,kBAAAC,gBAAA,+1CAAm5DC,WAAA,iBN4GrxFC,IACA,SAAU3D,EAAQC,EAASC,GO/GjC,GAAA0D,GAAA1D,EAAA,IACA,iBAAA0D,SAAA5D,EAAAmD,GAAAS,EAAA,KAEA1D,GAAA,GAAA0D,KACAA,GAAAC,SAAA7D,EAAAC,QAAA2D,EAAAC,SPqIMC,IACA,SAAU9D,EAAQC,EAASC,GQ7IjCF,EAAAC,QAAA,oLAAAC,EAAA,gNAAAA,EAAA,8MAAAA,EAAA","file":"3.js","sourcesContent":["webpackJsonp([3],{\n\n/***/ 110:\n/***/ (function(module, exports, __webpack_require__) {\n\n\tmodule.exports = __webpack_require__.p + \"修改密码.png?b991a14\";\n\n/***/ }),\n\n/***/ 113:\n/***/ (function(module, exports, __webpack_require__) {\n\n\tmodule.exports = __webpack_require__.p + \"导出数据.png?20ef677\";\n\n/***/ }),\n\n/***/ 117:\n/***/ (function(module, exports, __webpack_require__) {\n\n\tmodule.exports = __webpack_require__.p + \"清空数据.png?6dab3a7\";\n\n/***/ }),\n\n/***/ 178:\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar __vue_script__, __vue_template__\n\tvar __vue_styles__ = {}\n\t__webpack_require__(596)\n\t__vue_script__ = __webpack_require__(240)\n\t__vue_template__ = __webpack_require__(792)\n\tmodule.exports = __vue_script__ || {}\n\tif (module.exports.__esModule) module.exports = module.exports.default\n\tvar __vue_options__ = typeof module.exports === \"function\" ? (module.exports.options || (module.exports.options = {})) : module.exports\n\tif (__vue_template__) {\n\t__vue_options__.template = __vue_template__\n\t}\n\tif (!__vue_options__.computed) __vue_options__.computed = {}\n\tObject.keys(__vue_styles__).forEach(function (key) {\n\tvar module = __vue_styles__[key]\n\t__vue_options__.computed[key] = function () { return module }\n\t})\n\n\n/***/ }),\n\n/***/ 240:\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t\n\tObject.defineProperty(exports, \"__esModule\", {\n\t value: true\n\t});\n\t\n\tvar _vue = __webpack_require__(1);\n\t\n\tvar _vue2 = _interopRequireDefault(_vue);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\texports.default = {\n\t title: '系统设置',\n\t data: function data() {\n\t return {\n\t model: {}\n\t };\n\t },\n\t\n\t methods: {\n\t gotopage: function gotopage(param) {\n\t this.$goto(param);\n\t },\n\t back: function back() {\n\t this.$back();\n\t },\n\t cleandata: function cleandata() {\n\t var _this = this;\n\t\n\t this.$showMessage('此操作为清理数据,无法恢复!', ['confirm', 'cancel']).then(function (res) {\n\t if (res === 'confirm') {\n\t var result = _this.$androidUtil.bzLogic('clearPhoneData', { flag: 0 });\n\t if (result.result == '成功') {\n\t _this.$showAlert('清除数据完成', 'warning', 1000);\n\t } else {\n\t _this.$showAlert('清除数据失败', 'danger', 1000);\n\t }\n\t }\n\t });\n\t },\n\t outdata: function outdata() {\n\t HostApp.backupDatabase();\n\t }\n\t }\n\t};\n\n/***/ }),\n\n/***/ 512:\n/***/ (function(module, exports, __webpack_require__) {\n\n\texports = module.exports = __webpack_require__(4)();\n\t// imports\n\t\n\t\n\t// module\n\texports.push([module.id, \".flex-between[_v-641ec5ed]{display:-ms-flexbox;display:flex;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-align:center;align-items:center}.flex-between span[_v-641ec5ed]{padding-right:10px}.flex-full[_v-641ec5ed]{-ms-flex:1;flex:1}.name[_v-641ec5ed]{font:15px PingFang-SC-Medium;color:#666}.imgs[_v-641ec5ed]{width:60px;margin-top:15px}.plan[_v-641ec5ed],.user[_v-641ec5ed]{border-bottom:.5px solid #eaeaea;border-right:.5px solid #eaeaea;height:120px}.safecheck[_v-641ec5ed],.user[_v-641ec5ed]{border-left:.5px solid #eaeaea}.safecheck[_v-641ec5ed]{border-bottom:.5px solid #eaeaea;height:120px}.appointment[_v-641ec5ed],.search[_v-641ec5ed]{border-top:.5px solid #eaeaea;border-right:.5px solid #eaeaea;height:120px}.search[_v-641ec5ed],.upload[_v-641ec5ed]{border-left:.5px solid #eaeaea}.upload[_v-641ec5ed]{border-top:.5px solid #eaeaea;height:120px}\", \"\", {\"version\":3,\"sources\":[\"/./node_modules/system-phone/src/components/SystemSetUp.vue\"],\"names\":[],\"mappings\":\"AAyDA,2BACE,oBAAqB,AACrB,aAAc,AACd,sBAAuB,AACnB,8BAA+B,AACnC,sBAAuB,AACnB,kBAAoB,CACzB,AACD,gCACE,kBAAoB,CACrB,AACD,wBACE,WAAY,AACR,MAAQ,CACb,AACD,mBACE,6BAA8B,AAC9B,UAAe,CAChB,AACD,mBACE,WAAY,AACZ,eAAiB,CAClB,AAMD,sCAJE,iCAAmC,AACnC,gCAAkC,AAClC,YAAc,CAOf,AACD,2CAHE,8BAAiC,CAOlC,AAJD,wBACE,iCAAmC,AAEnC,YAAc,CACf,AAMD,+CAJE,8BAAgC,AAChC,gCAAkC,AAClC,YAAc,CAOf,AACD,0CAHE,8BAAiC,CAOlC,AAJD,qBACE,8BAAgC,AAEhC,YAAc,CACf\",\"file\":\"SystemSetUp.vue\",\"sourcesContent\":[\"\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n.flex-between[_v-641ec5ed] {\\n display: -ms-flexbox;\\n display: flex;\\n -ms-flex-pack: justify;\\n justify-content: space-between;\\n -ms-flex-align: center;\\n align-items: center;\\n}\\n.flex-between span[_v-641ec5ed] {\\n padding-right: 10px;\\n}\\n.flex-full[_v-641ec5ed] {\\n -ms-flex: 1;\\n flex: 1;\\n}\\n.name[_v-641ec5ed]{\\n font: 15px PingFang-SC-Medium;\\n color: #666666;\\n}\\n.imgs[_v-641ec5ed]{\\n width: 60px;\\n margin-top: 15px;\\n}\\n.plan[_v-641ec5ed] {\\n border-bottom: 0.5px solid #EAEAEA;\\n border-right: 0.5px solid #EAEAEA;\\n height: 120px;\\n}\\n.user[_v-641ec5ed]{\\n border-bottom: 0.5px solid #EAEAEA;\\n border-right: 0.5px solid #EAEAEA;\\n border-left: 0.5px solid #EAEAEA;\\n height: 120px;\\n}\\n.safecheck[_v-641ec5ed]{\\n border-bottom: 0.5px solid #EAEAEA;\\n border-left: 0.5px solid #EAEAEA;\\n height: 120px;\\n}\\n.appointment[_v-641ec5ed]{\\n border-top: 0.5px solid #EAEAEA;\\n border-right: 0.5px solid #EAEAEA;\\n height: 120px;\\n}\\n.search[_v-641ec5ed]{\\n border-top: 0.5px solid #EAEAEA;\\n border-right: 0.5px solid #EAEAEA;\\n border-left: 0.5px solid #EAEAEA;\\n height: 120px;\\n}\\n.upload[_v-641ec5ed]{\\n border-top: 0.5px solid #EAEAEA;\\n border-left: 0.5px solid #EAEAEA;\\n height: 120px;\\n}\\n\\n\\n\"],\"sourceRoot\":\"webpack://\"}]);\n\t\n\t// exports\n\n\n/***/ }),\n\n/***/ 596:\n/***/ (function(module, exports, __webpack_require__) {\n\n\t// style-loader: Adds some css to the DOM by adding a <style> tag\n\t\n\t// load the styles\n\tvar content = __webpack_require__(512);\n\tif(typeof content === 'string') content = [[module.id, content, '']];\n\t// add the styles to the DOM\n\tvar update = __webpack_require__(5)(content, {});\n\tif(content.locals) module.exports = content.locals;\n\t// Hot Module Replacement\n\tif(false) {\n\t\t// When the styles change, update the <style> tags\n\t\tif(!content.locals) {\n\t\t\tmodule.hot.accept(\"!!../../../css-loader/index.js?sourceMap!../../../vue-loader/lib/style-rewriter.js?id=_v-641ec5ed&scoped=true!../../../vue-loader/lib/selector.js?type=style&index=0!./SystemSetUp.vue\", function() {\n\t\t\t\tvar newContent = require(\"!!../../../css-loader/index.js?sourceMap!../../../vue-loader/lib/style-rewriter.js?id=_v-641ec5ed&scoped=true!../../../vue-loader/lib/selector.js?type=style&index=0!./SystemSetUp.vue\");\n\t\t\t\tif(typeof newContent === 'string') newContent = [[module.id, newContent, '']];\n\t\t\t\tupdate(newContent);\n\t\t\t});\n\t\t}\n\t\t// When the module is disposed, remove the <style> tags\n\t\tmodule.hot.dispose(function() { update(); });\n\t}\n\n/***/ }),\n\n/***/ 792:\n/***/ (function(module, exports, __webpack_require__) {\n\n\tmodule.exports = \" <div class=\\\"row auto\\\" style=\\\"background-color: #FFFFFF\\\" _v-641ec5ed=\\\"\\\"> <div class=\\\"col-xs-4 text-center plan\\\" @click=\\\"gotopage('modify-pass-word')\\\" _v-641ec5ed=\\\"\\\"> <img src=\" + __webpack_require__(110) + \" class=imgs alt=\\\"\\\" _v-641ec5ed=\\\"\\\"> <p class=\\\"text-center name\\\" style=\\\"margin: 10px 0\\\" _v-641ec5ed=\\\"\\\">修改密码</p> </div> <div class=\\\"col-xs-4 text-center user\\\" @click=cleandata() _v-641ec5ed=\\\"\\\"> <img src=\" + __webpack_require__(117) + \" class=imgs alt=\\\"\\\" _v-641ec5ed=\\\"\\\"> <p class=\\\"text-center name\\\" style=\\\"margin: 10px 0\\\" _v-641ec5ed=\\\"\\\">清空数据</p> </div> <div class=\\\"col-xs-4 text-center user\\\" @click=outdata() _v-641ec5ed=\\\"\\\"> <img src=\" + __webpack_require__(113) + \" class=imgs alt=\\\"\\\" _v-641ec5ed=\\\"\\\"> <p class=\\\"text-center name\\\" style=\\\"margin: 10px 0\\\" _v-641ec5ed=\\\"\\\">导出数据</p> </div> </div> \";\n\n/***/ })\n\n});\n\n\n// WEBPACK FOOTER //\n// 3.js","module.exports = __webpack_public_path__ + \"修改密码.png?b991a14\";\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./~/system-phone/src/assets/修改密码.png\n// module id = 110\n// module chunks = 3 7","module.exports = __webpack_public_path__ + \"导出数据.png?20ef677\";\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./~/system-phone/src/assets/导出数据.png\n// module id = 113\n// module chunks = 3 7","module.exports = __webpack_public_path__ + \"清空数据.png?6dab3a7\";\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./~/system-phone/src/assets/清空数据.png\n// module id = 117\n// module chunks = 3 7","var __vue_script__, __vue_template__\nvar __vue_styles__ = {}\nrequire(\"!!../../../extract-text-webpack-plugin/loader.js?{\\\"omit\\\":1,\\\"extract\\\":true,\\\"remove\\\":true}!vue-style-loader!css-loader?sourceMap!../../../vue-loader/lib/style-rewriter.js?id=_v-641ec5ed&scoped=true!../../../vue-loader/lib/selector.js?type=style&index=0!./SystemSetUp.vue\")\n__vue_script__ = require(\"!!babel-loader?presets[]=es2015&plugins[]=transform-runtime&comments=false!../../../vue-loader/lib/selector.js?type=script&index=0!./SystemSetUp.vue\")\n__vue_template__ = require(\"!!vue-html-loader!../../../vue-loader/lib/template-rewriter.js?id=_v-641ec5ed!../../../vue-loader/lib/selector.js?type=template&index=0!./SystemSetUp.vue\")\nmodule.exports = __vue_script__ || {}\nif (module.exports.__esModule) module.exports = module.exports.default\nvar __vue_options__ = typeof module.exports === \"function\" ? (module.exports.options || (module.exports.options = {})) : module.exports\nif (__vue_template__) {\n__vue_options__.template = __vue_template__\n}\nif (!__vue_options__.computed) __vue_options__.computed = {}\nObject.keys(__vue_styles__).forEach(function (key) {\nvar module = __vue_styles__[key]\n__vue_options__.computed[key] = function () { return module }\n})\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./~/system-phone/src/components/SystemSetUp.vue\n// module id = 178\n// module chunks = 3","<template>\n <div class=\"row auto\" style=\"background-color: #FFFFFF\">\n <div class=\"col-xs-4 text-center plan\" @click = \"gotopage('modify-pass-word')\">\n <img src=\"../assets/修改密码.png\" class=\"imgs\" alt=\"\">\n <p class=\"text-center name\" style=\"margin: 10px 0;\">修改密码</p>\n </div>\n <div class=\"col-xs-4 text-center user\" @click = \"cleandata()\">\n <img src=\"../assets/清空数据.png\" class=\"imgs\" alt=\"\">\n <p class=\"text-center name\" style=\"margin: 10px 0;\">清空数据</p>\n </div>\n <div class=\"col-xs-4 text-center user\" @click = \"outdata()\">\n <img src=\"../assets/导出数据.png\" class=\"imgs\" alt=\"\">\n <p class=\"text-center name\" style=\"margin: 10px 0;\">导出数据</p>\n </div>\n </div>\n</template>\n\n<script>\n import Vue from 'vue'\n\n export default {\n title: '系统设置',\n data() {\n return {\n model: {}\n }\n },\n methods: {\n gotopage(param) {\n this.$goto(param)\n },\n //头部事件回掉\n back () {\n this.$back()\n },\n // 清空数据\n cleandata(){\n this.$showMessage('此操作为清理数据,无法恢复!', ['confirm', 'cancel']).then((res) => {\n if (res === 'confirm') {\n let result = this.$androidUtil.bzLogic('clearPhoneData', {flag: 0})\n if(result.result == '成功'){\n this.$showAlert('清除数据完成', 'warning', 1000)\n }else{\n this.$showAlert('清除数据失败', 'danger', 1000)\n }\n }\n })\n },\n // 导出数据\n outdata(){\n HostApp.backupDatabase()\n }\n }\n }\n\n</script>\n<style scoped>\n .flex-between {\n display: flex;\n justify-content: space-between;\n align-items: center;\n }\n .flex-between span {\n padding-right: 10px;\n }\n .flex-full {\n flex: 1;\n }\n .name{\n font: 15px PingFang-SC-Medium;\n color: #666666;\n }\n .imgs{\n width: 60px;\n margin-top: 15px;\n }\n .plan {\n border-bottom: 0.5px solid #EAEAEA;\n border-right: 0.5px solid #EAEAEA;\n height: 120px;\n }\n .user{\n border-bottom: 0.5px solid #EAEAEA;\n border-right: 0.5px solid #EAEAEA;\n border-left: 0.5px solid #EAEAEA;\n height: 120px;\n }\n .safecheck{\n border-bottom: 0.5px solid #EAEAEA;\n border-left: 0.5px solid #EAEAEA;\n height: 120px;\n }\n .appointment{\n border-top: 0.5px solid #EAEAEA;\n border-right: 0.5px solid #EAEAEA;\n height: 120px;\n }\n .search{\n border-top: 0.5px solid #EAEAEA;\n border-right: 0.5px solid #EAEAEA;\n border-left: 0.5px solid #EAEAEA;\n height: 120px;\n }\n .upload{\n border-top: 0.5px solid #EAEAEA;\n border-left: 0.5px solid #EAEAEA;\n height: 120px;\n }\n\n\n</style>\n\n\n\n// WEBPACK FOOTER //\n// SystemSetUp.vue?16a7f039","exports = module.exports = require(\"../../../css-loader/lib/css-base.js\")();\n// imports\n\n\n// module\nexports.push([module.id, \".flex-between[_v-641ec5ed]{display:-ms-flexbox;display:flex;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-align:center;align-items:center}.flex-between span[_v-641ec5ed]{padding-right:10px}.flex-full[_v-641ec5ed]{-ms-flex:1;flex:1}.name[_v-641ec5ed]{font:15px PingFang-SC-Medium;color:#666}.imgs[_v-641ec5ed]{width:60px;margin-top:15px}.plan[_v-641ec5ed],.user[_v-641ec5ed]{border-bottom:.5px solid #eaeaea;border-right:.5px solid #eaeaea;height:120px}.safecheck[_v-641ec5ed],.user[_v-641ec5ed]{border-left:.5px solid #eaeaea}.safecheck[_v-641ec5ed]{border-bottom:.5px solid #eaeaea;height:120px}.appointment[_v-641ec5ed],.search[_v-641ec5ed]{border-top:.5px solid #eaeaea;border-right:.5px solid #eaeaea;height:120px}.search[_v-641ec5ed],.upload[_v-641ec5ed]{border-left:.5px solid #eaeaea}.upload[_v-641ec5ed]{border-top:.5px solid #eaeaea;height:120px}\", \"\", {\"version\":3,\"sources\":[\"/./node_modules/system-phone/src/components/SystemSetUp.vue\"],\"names\":[],\"mappings\":\"AAyDA,2BACE,oBAAqB,AACrB,aAAc,AACd,sBAAuB,AACnB,8BAA+B,AACnC,sBAAuB,AACnB,kBAAoB,CACzB,AACD,gCACE,kBAAoB,CACrB,AACD,wBACE,WAAY,AACR,MAAQ,CACb,AACD,mBACE,6BAA8B,AAC9B,UAAe,CAChB,AACD,mBACE,WAAY,AACZ,eAAiB,CAClB,AAMD,sCAJE,iCAAmC,AACnC,gCAAkC,AAClC,YAAc,CAOf,AACD,2CAHE,8BAAiC,CAOlC,AAJD,wBACE,iCAAmC,AAEnC,YAAc,CACf,AAMD,+CAJE,8BAAgC,AAChC,gCAAkC,AAClC,YAAc,CAOf,AACD,0CAHE,8BAAiC,CAOlC,AAJD,qBACE,8BAAgC,AAEhC,YAAc,CACf\",\"file\":\"SystemSetUp.vue\",\"sourcesContent\":[\"\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n.flex-between[_v-641ec5ed] {\\n display: -ms-flexbox;\\n display: flex;\\n -ms-flex-pack: justify;\\n justify-content: space-between;\\n -ms-flex-align: center;\\n align-items: center;\\n}\\n.flex-between span[_v-641ec5ed] {\\n padding-right: 10px;\\n}\\n.flex-full[_v-641ec5ed] {\\n -ms-flex: 1;\\n flex: 1;\\n}\\n.name[_v-641ec5ed]{\\n font: 15px PingFang-SC-Medium;\\n color: #666666;\\n}\\n.imgs[_v-641ec5ed]{\\n width: 60px;\\n margin-top: 15px;\\n}\\n.plan[_v-641ec5ed] {\\n border-bottom: 0.5px solid #EAEAEA;\\n border-right: 0.5px solid #EAEAEA;\\n height: 120px;\\n}\\n.user[_v-641ec5ed]{\\n border-bottom: 0.5px solid #EAEAEA;\\n border-right: 0.5px solid #EAEAEA;\\n border-left: 0.5px solid #EAEAEA;\\n height: 120px;\\n}\\n.safecheck[_v-641ec5ed]{\\n border-bottom: 0.5px solid #EAEAEA;\\n border-left: 0.5px solid #EAEAEA;\\n height: 120px;\\n}\\n.appointment[_v-641ec5ed]{\\n border-top: 0.5px solid #EAEAEA;\\n border-right: 0.5px solid #EAEAEA;\\n height: 120px;\\n}\\n.search[_v-641ec5ed]{\\n border-top: 0.5px solid #EAEAEA;\\n border-right: 0.5px solid #EAEAEA;\\n border-left: 0.5px solid #EAEAEA;\\n height: 120px;\\n}\\n.upload[_v-641ec5ed]{\\n border-top: 0.5px solid #EAEAEA;\\n border-left: 0.5px solid #EAEAEA;\\n height: 120px;\\n}\\n\\n\\n\"],\"sourceRoot\":\"webpack://\"}]);\n\n// exports\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./~/css-loader?sourceMap!./~/vue-loader/lib/style-rewriter.js?id=_v-641ec5ed&scoped=true!./~/vue-loader/lib/selector.js?type=style&index=0!./~/system-phone/src/components/SystemSetUp.vue\n// module id = 512\n// module chunks = 3","// style-loader: Adds some css to the DOM by adding a <style> tag\n\n// load the styles\nvar content = require(\"!!../../../css-loader/index.js?sourceMap!../../../vue-loader/lib/style-rewriter.js?id=_v-641ec5ed&scoped=true!../../../vue-loader/lib/selector.js?type=style&index=0!./SystemSetUp.vue\");\nif(typeof content === 'string') content = [[module.id, content, '']];\n// add the styles to the DOM\nvar update = require(\"!../../../vue-style-loader/addStyles.js\")(content, {});\nif(content.locals) module.exports = content.locals;\n// Hot Module Replacement\nif(module.hot) {\n\t// When the styles change, update the <style> tags\n\tif(!content.locals) {\n\t\tmodule.hot.accept(\"!!../../../css-loader/index.js?sourceMap!../../../vue-loader/lib/style-rewriter.js?id=_v-641ec5ed&scoped=true!../../../vue-loader/lib/selector.js?type=style&index=0!./SystemSetUp.vue\", function() {\n\t\t\tvar newContent = require(\"!!../../../css-loader/index.js?sourceMap!../../../vue-loader/lib/style-rewriter.js?id=_v-641ec5ed&scoped=true!../../../vue-loader/lib/selector.js?type=style&index=0!./SystemSetUp.vue\");\n\t\t\tif(typeof newContent === 'string') newContent = [[module.id, newContent, '']];\n\t\t\tupdate(newContent);\n\t\t});\n\t}\n\t// When the module is disposed, remove the <style> tags\n\tmodule.hot.dispose(function() { update(); });\n}\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./~/extract-text-webpack-plugin/loader.js?{\"omit\":1,\"extract\":true,\"remove\":true}!./~/vue-style-loader!./~/css-loader?sourceMap!./~/vue-loader/lib/style-rewriter.js?id=_v-641ec5ed&scoped=true!./~/vue-loader/lib/selector.js?type=style&index=0!./~/system-phone/src/components/SystemSetUp.vue\n// module id = 596\n// module chunks = 3","module.exports = \" <div class=\\\"row auto\\\" style=\\\"background-color: #FFFFFF\\\" _v-641ec5ed=\\\"\\\"> <div class=\\\"col-xs-4 text-center plan\\\" @click=\\\"gotopage('modify-pass-word')\\\" _v-641ec5ed=\\\"\\\"> <img src=\" + require(\"../assets/修改密码.png\") + \" class=imgs alt=\\\"\\\" _v-641ec5ed=\\\"\\\"> <p class=\\\"text-center name\\\" style=\\\"margin: 10px 0\\\" _v-641ec5ed=\\\"\\\">修改密码</p> </div> <div class=\\\"col-xs-4 text-center user\\\" @click=cleandata() _v-641ec5ed=\\\"\\\"> <img src=\" + require(\"../assets/清空数据.png\") + \" class=imgs alt=\\\"\\\" _v-641ec5ed=\\\"\\\"> <p class=\\\"text-center name\\\" style=\\\"margin: 10px 0\\\" _v-641ec5ed=\\\"\\\">清空数据</p> </div> <div class=\\\"col-xs-4 text-center user\\\" @click=outdata() _v-641ec5ed=\\\"\\\"> <img src=\" + require(\"../assets/导出数据.png\") + \" class=imgs alt=\\\"\\\" _v-641ec5ed=\\\"\\\"> <p class=\\\"text-center name\\\" style=\\\"margin: 10px 0\\\" _v-641ec5ed=\\\"\\\">导出数据</p> </div> </div> \";\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./~/vue-html-loader!./~/vue-loader/lib/template-rewriter.js?id=_v-641ec5ed!./~/vue-loader/lib/selector.js?type=template&index=0!./~/system-phone/src/components/SystemSetUp.vue\n// module id = 792\n// module chunks = 3"],"sourceRoot":""}
@@ -1,2 +0,0 @@
1
- webpackJsonp([30],{365:function(e,n,t){"use strict";function a(e){return e&&e.__esModule?e:{default:e}}Object.defineProperty(n,"__esModule",{value:!0});var o=t(2),s=a(o),l=t(7),r=a(l),c=t(3);n.default={title:"追加合同",props:["addcontract"],data:function(){return{contract_datas:[],show:!1,addItem:null}},ready:function(){this.load()},methods:{smalltoBIG:function(e){var n=["角","分"],t=["零","壹","贰","叁","肆","伍","陆","柒","捌","玖"],a=[["元","万","亿"],["","拾","佰","仟"]],o=e<0?"欠":"";e=Math.abs(e);for(var s="",l=0;l<n.length;l++)s+=(t[Math.floor(10*e*Math.pow(10,l))%10]+n[l]).replace(/零./,"");s=s||"整",e=Math.floor(e);for(var l=0;l<a[0].length&&e>0;l++){for(var r="",c=0;c<a[1].length&&e>0;c++)r=t[e%10]+a[1][c]+r,e=Math.floor(e/10);s=r.replace(/(零.)*零$/,"").replace(/^$/,"零")+a[0][l]+s}return o+s.replace(/(零.)*零元/,"元").replace(/(零.)+/g,"零").replace(/^整$/,"零元整")},load:function(){function e(){return n.apply(this,arguments)}var n=(0,r.default)(s.default.mark(function e(){var n,t,a;return s.default.wrap(function(e){for(;;)switch(e.prev=e.next){case 0:return n=new c.HttpResetClass,t={tablename:"t_contract",condition:"processid = '"+this.addcontract.f_process_id+"'"},e.next=4,n.load("POST","rs/sql/singleTable",{data:t},{resolveMsg:null,rejectMsg:"获取合同表失败"});case 4:a=e.sent,this.contract_datas=[],a.data.forEach(function(e,n){e.f_contract_nature.includes('"')&&(e.f_contract_nature=e.f_contract_nature.split('"')[1]),e.f_pay_type.includes('"')&&(e.f_pay_type=e.f_pay_type.split('"')[1])}),this.contract_datas=a.data;case 8:case"end":return e.stop()}},e,this)}));return e}(),add:function(){this.contract_datas?this.$showMessage("请先在主流程中签订合同"):this.show=!0},confirm:function(){function e(){return n.apply(this,arguments)}var n=(0,r.default)(s.default.mark(function e(){var n,t=this;return s.default.wrap(function(e){for(;;)switch(e.prev=e.next){case 0:if(!this.addItem.f_contract_money){e.next=13;break}return n=new c.HttpResetClass,this.addItem.f_contract_nature=this.addcontract.f_contract_nature,this.addItem.f_contract_number=this.addcontract.f_contract_number,this.addItem.processid=this.addcontract.f_process_id,this.addItem.f_contract_type="补充协议",this.addItem.applyid=this.addcontract.f_apply_num,this.addItem.f_operator=this.$login.f.name,this.addItem.f_department=this.$login.f.f_parentname,this.addItem.f_filiale=this.$login.f.f_fengongsi,this.contract_datas.push(this.addItem),e.next=13,n.load("POST","rs/logic/saveentity",{data:{tablename:"t_contract",parameters:this.addItem}},{resolveMsg:null,rejectMsg:"添加失败"}).then(function(e){t.close()});case 13:this.$showMessage("请输入金额");case 14:case"end":return e.stop()}},e,this)}));return e}(),close:function(){this.show=!1,this.addItem=null}},computed:{getCapital:function(){return this.addItem.f_contract_money&&(this.addItem.f_capital=this.smalltoBIG(Number(this.addItem.f_contract_money))),this.addItem.f_capital},sum:function(){for(var e=0,n=0;n<this.contract_datas.length;n++)e+=Number(this.contract_datas[n].f_contract_money);return e},jiaofei:function(){return this.$appdata.getParam("缴费类型")}}}},514:function(e,n,t){n=e.exports=t(4)(),n.push([e.id,"textarea[_v-6e09eef4]{width:74.5%}","",{version:3,sources:["/./src/components/product/Function/functions/AddContract.vue"],names:[],mappings:"AA4PA,sBACE,WAAa,CACd",file:"AddContract.vue",sourcesContent:["\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\ntextarea[_v-6e09eef4] {\n width: 74.5%;\n}\n"],sourceRoot:"webpack://"}])},601:function(e,n,t){var a=t(514);"string"==typeof a&&(a=[[e.id,a,""]]);t(5)(a,{});a.locals&&(e.exports=a.locals)},797:function(e,n){e.exports=' <div class=col-sm-12 style="height: auto" _v-6e09eef4=""> <div class="auto select-overspread" _v-6e09eef4=""> <div class="panel panel-info" _v-6e09eef4=""> <div class="panel-heading auto" _v-6e09eef4=""> <h3 class=panel-title _v-6e09eef4="">补充协议</h3> </div> </div> </div> <div class=col-sm-12 style="height: auto" _v-6e09eef4=""> <span class=col-sm-1 _v-6e09eef4=""></span> <span class=col-sm-3 _v-6e09eef4="">总个数:{{contract_datas.length}}</span> <span class=col-sm-2 _v-6e09eef4=""></span> <span class=col-sm-3 v-if="!$login.f.f_fengongsi.includes(\'彩虹\')" _v-6e09eef4="">总金额:{{sum}}元</span> <button class="col-sm-offset-2 btn btn-warning" type=button @click=add() _v-6e09eef4="">补充协议</button> </div> <div class=col-sm-12 style="height: auto;border:1px solid #000;padding-top: 10px" v-for="row in contract_datas" _v-6e09eef4=""> <div class=col-sm-12 _v-6e09eef4=""> <div class="form-group col-sm-3 form-input-group" _v-6e09eef4=""> <label class=control-label _v-6e09eef4="">合同编号:</label> <div class=col-sm-6 _v-6e09eef4=""> <input class=form-control type=text v-model=row.f_contract_number readonly="" _v-6e09eef4=""> </div> </div> <div class="form-group col-sm-3 form-input-group" _v-6e09eef4=""> <label class=control-label _v-6e09eef4="">类型(合同/协议):</label> <div class=col-sm-6 _v-6e09eef4=""> <input class=form-control type=text v-model=row.f_contract_type readonly="" _v-6e09eef4=""> </div> </div> <div class="form-group col-sm-3 form-input-group" _v-6e09eef4=""> <label class=control-label _v-6e09eef4="">签订日期:</label> <div class=col-sm-6 _v-6e09eef4=""> <input class=form-control type=text v-model=row.f_contract_time readonly="" _v-6e09eef4=""> </div> </div> </div> <div class=col-sm-12 _v-6e09eef4=""> <div class="form-group col-sm-3 form-input-group" _v-6e09eef4=""> <label class=control-label _v-6e09eef4="">合同金额(元):</label> <div class=col-sm-6 _v-6e09eef4=""> <input class=form-control type=text v-model=row.f_contract_money readonly="" _v-6e09eef4=""> </div> </div> <div class="form-group col-sm-3 form-input-group" _v-6e09eef4=""> <label class=control-label _v-6e09eef4="">金额大写:</label> <div class=col-sm-6 _v-6e09eef4=""> <input class=form-control type=text v-model=row.f_capital readonly="" _v-6e09eef4=""> </div> </div> <div class="form-group col-sm-3 form-input-group" _v-6e09eef4=""> <label class=control-label _v-6e09eef4="">合同性质:</label> <div class=col-sm-6 _v-6e09eef4=""> <input class=form-control type=text v-model=row.f_contract_nature readonly="" _v-6e09eef4=""> </div> </div> </div> <div class="form-group col-sm-12 form-input-group" _v-6e09eef4=""> <label class=control-label _v-6e09eef4="">缴费类型:</label> <div class=col-sm-5 _v-6e09eef4=""> <textarea class=form-control v-model=row.f_pay_type rows=3 readonly="" _v-6e09eef4=""></textarea> </div> </div> <div class="form-group col-sm-12 form-input-group" _v-6e09eef4=""> <label class=control-label _v-6e09eef4="">备注:</label> <div class=col-sm-5 _v-6e09eef4=""> <textarea class=form-control v-model=row.t_remarks rows=2 readonly="" _v-6e09eef4=""></textarea> </div> </div> </div> <modal :show.sync=show v-ref:modal="" backdrop=false _v-6e09eef4=""> <header slot=modal-header class=modal-header _v-6e09eef4=""> <button type=button class=close @click=close _v-6e09eef4=""><span _v-6e09eef4="">×</span></button> <h4 class=modal-title _v-6e09eef4="">新增合同</h4> </header> <article slot=modal-body class=modal-body _v-6e09eef4=""> <div class=from-group _v-6e09eef4=""> <label _v-6e09eef4="">合同编号</label> <input type=text class=form-control v-model=addcontract.f_contract_number readonly="" _v-6e09eef4=""> </div> <div class=from-group _v-6e09eef4=""> <label _v-6e09eef4="">签订日期</label> <div _v-6e09eef4=""> <datepicker width=600.76px; :value.sync=addItem.f_contract_time :format="\'yyyy-MM-dd\'" v-model=addItem.f_contract_time readonly=readonly :show-reset-button=reset _v-6e09eef4=""> </datepicker> </div> </div> <div class=from-group _v-6e09eef4=""> <label _v-6e09eef4="">合同金额(元)</label> <input type=text class=form-control v-model=addItem.f_contract_money _v-6e09eef4=""> </div> <div class=form-group _v-6e09eef4=""> <label class=control-label _v-6e09eef4="">金额大写:</label> <input class=form-control type=text v-model=getCapital readonly="" _v-6e09eef4=""> </div> <div class=from-group _v-6e09eef4=""> <label _v-6e09eef4="">缴费类型</label> <v-select :options=jiaofei v-model=addItem.f_pay_type :value.sync=addItem.f_pay_type close-on-select="" _v-6e09eef4=""> </v-select> </div> <div class=from-group _v-6e09eef4=""> <label _v-6e09eef4="">备注</label> <textarea class=form-control v-model=addItem.t_remarks rows=3 _v-6e09eef4=""></textarea> </div> </article> <footer slot=modal-footer class=modal-footer _v-6e09eef4=""> <button v-show=show type=button class="btn btn-default" @click=close _v-6e09eef4="">取消</button> <button v-show=show type=button class="btn btn-success" @click=confirm _v-6e09eef4="">确认</button> </footer> </modal> </div> '},916:function(e,n,t){var a,o,s={};t(601),a=t(365),o=t(797),e.exports=a||{},e.exports.__esModule&&(e.exports=e.exports.default);var l="function"==typeof e.exports?e.exports.options||(e.exports.options={}):e.exports;o&&(l.template=o),l.computed||(l.computed={}),Object.keys(s).forEach(function(e){var n=s[e];l.computed[e]=function(){return n}})}});
2
- //# sourceMappingURL=30.js.map