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:///63.js","webpack:///InstallFee.vue","webpack:///./src/components/product/Function/functions/InstallFee.vue?2d45","webpack:///./src/components/product/Function/functions/InstallFee.vue"],"names":["webpackJsonp","368","module","exports","__webpack_require__","_interopRequireDefault","obj","__esModule","default","Object","defineProperty","value","_asyncToGenerator2","_asyncToGenerator3","_regenerator","_regenerator2","_vueClient","_InputAndSelect","_InputAndSelect2","mark","gen","self","val","wrap","_context","prev","next","f_actualfee_type","f_bill_type","$resetpost","data","tablename","parameters","id","then","reset","stop","this","components","InputAndSelect","title","showpay","addItem","model","subcost","f_total_cost","f_payfee_operator","f_payfee_department","f_filiale","f_payfee_date","f_total_fee","rows","props","ready","load","$login","f","name","f_parentname","f_fengongsi","toStandardDateString","methods","check","re","test","f_fee","$showMessage","change","f_payfee_remarks","infee","f_account_cost","f_construction_cost","f_material_cost","f_labor_cost","f_change_pipeline_cost","f_sbaz_cost","smalltoBIG","n","fraction","digit","unit","head","Math","abs","s","i","length","floor","pow","replace","p","j","add","close","confirm","_ref","apply","arguments","_callee","flag","http","_this","_context2","abrupt","HttpResetClass","f_payfee_way","processid","f_process_id","applyid","f_apply_num","f_operator","f_department","Number","f_charging_item","f_pay_number","push","resolveMsg","rejectMsg","res","_ref2","_callee2","_context3","columnname","condition","sent","f_contract_money","f_payfeedate","substring","computed","getCapital","f_capital","temp","temp2","round","f_jmhj_cost","aaa","f_actualfee","feeoptions","$appdata","getParam","dayin","jiaofei","744","919","__vue_script__","__vue_template__","__vue_styles__","__vue_options__","options","template","keys","forEach","key"],"mappings":"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","file":"63.js","sourcesContent":["webpackJsonp([63],{\n\n/***/ 368:\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 _asyncToGenerator2 = __webpack_require__(7);\n\t\n\tvar _asyncToGenerator3 = _interopRequireDefault(_asyncToGenerator2);\n\t\n\tvar _regenerator = __webpack_require__(2);\n\t\n\tvar _regenerator2 = _interopRequireDefault(_regenerator);\n\t\n\tvar _vueClient = __webpack_require__(3);\n\t\n\tvar _InputAndSelect = __webpack_require__(129);\n\t\n\tvar _InputAndSelect2 = _interopRequireDefault(_InputAndSelect);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\tvar gen = _regenerator2.default.mark(function gen(self, val) {\n\t return _regenerator2.default.wrap(function gen$(_context) {\n\t while (1) {\n\t switch (_context.prev = _context.next) {\n\t case 0:\n\t val.f_actualfee_type = val.f_actualfee_type[0];\n\t val.f_bill_type = val.f_bill_type[0];\n\t _context.next = 4;\n\t return self.$resetpost('rs/logic/saveentity', { data: { tablename: 't_apply', parameters: val } });\n\t\n\t case 4:\n\t delete val.id;\n\t self.$resetpost('rs/logic/saveentity', { data: { tablename: 't_record', parameters: val } }).then(function () {\n\t self.reset();\n\t });\n\t\n\t case 6:\n\t case 'end':\n\t return _context.stop();\n\t }\n\t }\n\t }, gen, this);\n\t});\n\texports.default = {\n\t components: { InputAndSelect: _InputAndSelect2.default },\n\t title: '报装收费',\n\t data: function data() {\n\t return {\n\t showpay: false,\n\t addItem: null,\n\t model: {\n\t subcost: 0,\n\t f_total_cost: 0,\n\t f_payfee_operator: '',\n\t f_payfee_department: '',\n\t f_filiale: '',\n\t f_payfee_date: '',\n\t f_total_fee: '',\n\t rows: [] }\n\t };\n\t },\n\t\n\t props: ['infee'],\n\t ready: function ready() {\n\t this.load();\n\t this.model.f_payfee_operator = this.$login.f.name;\n\t this.model.f_payfee_department = this.$login.f.f_parentname;\n\t this.model.f_filiale = this.$login.f.f_fengongsi;\n\t this.model.f_payfee_date = this.$login.toStandardDateString();\n\t },\n\t\n\t methods: {\n\t check: function check() {\n\t var re = /^[+-]?\\d+(\\.\\d+)?$/;\n\t if (!re.test(this.addItem.f_fee)) {\n\t this.$showMessage(\"请输入数字\");\n\t this.addItem.f_fee = '';\n\t return false;\n\t }\n\t return true;\n\t },\n\t change: function change() {\n\t if (this.addItem.f_payfee_remarks === '开户费') {\n\t this.addItem.f_fee = this.infee.f_account_cost ? this.infee.f_account_cost : 0;\n\t }\n\t if (this.addItem.f_payfee_remarks === '入户安装费') {\n\t this.addItem.f_fee = this.infee.f_construction_cost ? this.infee.f_construction_cost : 0;\n\t }\n\t if (this.addItem.f_payfee_remarks === '材料费') {\n\t this.addItem.f_fee = this.infee.f_material_cost ? this.infee.f_material_cost : 0;\n\t }\n\t if (this.addItem.f_payfee_remarks === '人工费') {\n\t this.addItem.f_fee = this.infee.f_labor_cost ? this.infee.f_labor_cost : 0;\n\t }\n\t if (this.addItem.f_payfee_remarks === '改管费') {\n\t this.addItem.f_fee = this.infee.f_change_pipeline_cost ? this.infee.f_change_pipeline_cost : 0;\n\t }\n\t if (this.addItem.f_payfee_remarks === '设备安装费') {\n\t this.addItem.f_fee = this.infee.f_sbaz_cost ? this.infee.f_sbaz_cost : 0;\n\t }\n\t },\n\t smalltoBIG: function smalltoBIG(n) {\n\t var fraction = ['角', '分'];\n\t var digit = ['零', '壹', '贰', '叁', '肆', '伍', '陆', '柒', '捌', '玖'];\n\t var unit = [['元', '万', '亿'], ['', '拾', '佰', '仟']];\n\t var head = n < 0 ? '欠' : '';\n\t n = Math.abs(n);\n\t\n\t var s = '';\n\t\n\t for (var i = 0; i < fraction.length; i++) {\n\t s += (digit[Math.floor(n * 10 * Math.pow(10, i)) % 10] + fraction[i]).replace(/零./, '');\n\t }\n\t s = s || '整';\n\t n = Math.floor(n);\n\t\n\t for (var i = 0; i < unit[0].length && n > 0; i++) {\n\t var p = '';\n\t for (var j = 0; j < unit[1].length && n > 0; j++) {\n\t p = digit[n % 10] + unit[1][j] + p;\n\t n = Math.floor(n / 10);\n\t }\n\t s = p.replace(/(零.)*零$/, '').replace(/^$/, '零') + unit[0][i] + s;\n\t }\n\t return head + s.replace(/(零.)*零元/, '元').replace(/(零.)+/g, '零').replace(/^整$/, '零元整');\n\t },\n\t add: function add() {\n\t this.addItem = null;\n\t this.showpay = true;\n\t },\n\t close: function close() {\n\t this.showpay = false;\n\t this.addItem = null;\n\t },\n\t confirm: function () {\n\t var _ref = (0, _asyncToGenerator3.default)(_regenerator2.default.mark(function _callee() {\n\t var _this = this;\n\t\n\t var flag, http, data;\n\t return _regenerator2.default.wrap(function _callee$(_context2) {\n\t while (1) {\n\t switch (_context2.prev = _context2.next) {\n\t case 0:\n\t flag = this.check();\n\t\n\t if (flag) {\n\t _context2.next = 3;\n\t break;\n\t }\n\t\n\t return _context2.abrupt('return');\n\t\n\t case 3:\n\t http = new _vueClient.HttpResetClass();\n\t\n\t if (!(this.addItem.f_payfee_way && this.addItem.f_fee)) {\n\t _context2.next = 18;\n\t break;\n\t }\n\t\n\t this.addItem.f_payfee_way = this.addItem.f_payfee_way == '[]' ? '' : this.addItem.f_payfee_way[0];\n\t this.addItem.processid = this.infee.f_process_id;\n\t this.addItem.applyid = this.infee.f_apply_num;\n\t this.addItem.f_operator = this.$login.f.name;\n\t this.addItem.f_department = this.$login.f.f_parentname;\n\t this.addItem.f_filiale = this.$login.f.f_fengongsi;\n\t this.addItem.f_fee = Number(this.addItem.f_fee);\n\t this.addItem.f_charging_item = '';\n\t this.addItem.f_pay_number = '';\n\t this.model.rows.push(this.addItem);\n\t data = {\n\t tablename: 't_paydetail',\n\t parameters: this.addItem\n\t };\n\t _context2.next = 18;\n\t return http.load('POST', 'rs/logic/saveentity', { data: data }, { resolveMsg: null, rejectMsg: \"添加失败\" }).then(function (res) {\n\t _this.close();\n\t });\n\t\n\t case 18:\n\t case 'end':\n\t return _context2.stop();\n\t }\n\t }\n\t }, _callee, this);\n\t }));\n\t\n\t function confirm() {\n\t return _ref.apply(this, arguments);\n\t }\n\t\n\t return confirm;\n\t }(),\n\t load: function () {\n\t var _ref2 = (0, _asyncToGenerator3.default)(_regenerator2.default.mark(function _callee2() {\n\t var http, data, res, i;\n\t return _regenerator2.default.wrap(function _callee2$(_context3) {\n\t while (1) {\n\t switch (_context3.prev = _context3.next) {\n\t case 0:\n\t http = new _vueClient.HttpResetClass();\n\t data = {\n\t columnname: 'f_contract_money',\n\t tablename: 't_contract',\n\t condition: 'processid = \\'' + this.infee.f_process_id + '\\''\n\t };\n\t _context3.next = 4;\n\t return http.load('POST', 'rs/sql/getSum', { data: data }, { resolveMsg: null, rejectMsg: '获取总金额失败' });\n\t\n\t case 4:\n\t res = _context3.sent;\n\t\n\t this.model.f_total_cost = res.data[0].f_contract_money;\n\t data = {\n\t tablename: 't_paydetail',\n\t condition: 'processid = \\'' + this.infee.f_process_id + '\\''\n\t };\n\t\n\t _context3.next = 9;\n\t return http.load('POST', 'rs/sql/singleTable', { data: data }, { resolveMsg: null, rejectMsg: '获取付款数据失败' });\n\t\n\t case 9:\n\t res = _context3.sent;\n\t\n\t for (i = 0; i < res.data.length; i++) {\n\t res.data[i].f_payfeedate = res.data[i].f_payfeedate.substring(0, 11);\n\t }\n\t this.model.rows = res.data;\n\t\n\t case 12:\n\t case 'end':\n\t return _context3.stop();\n\t }\n\t }\n\t }, _callee2, this);\n\t }));\n\t\n\t function load() {\n\t return _ref2.apply(this, arguments);\n\t }\n\t\n\t return load;\n\t }()\n\t },\n\t computed: {\n\t getCapital: function getCapital() {\n\t if (this.addItem.f_fee) {\n\t this.addItem.f_capital = this.smalltoBIG(Number(this.addItem.f_fee));\n\t }\n\t return this.addItem.f_capital;\n\t },\n\t subcost: function subcost() {\n\t var temp = Number(this.model.f_total_cost);\n\t var temp2 = 0;\n\t for (var i = 0; i < this.model.rows.length; i++) {\n\t temp2 += Number(this.model.rows[i].f_fee);\n\t }\n\t this.model.f_total_fee = Math.round(temp2 * 100) / 100;\n\t this.model.subcost = Math.round((temp - temp2) * 100) / 100;\n\t if (this.model.f_total_fee && this.model.f_jmhj_cost) {\n\t temp = Math.round((temp - Number(this.model.f_jmhj_cost)) * 100) / 100;\n\t }\n\t this.model.subcost = Math.round((temp - temp2) * 100) / 100;\n\t return this.model.subcost;\n\t },\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 feeoptions: function feeoptions() {\n\t return this.$appdata.getParam('费用类型');\n\t },\n\t dayin: function dayin() {\n\t return this.$appdata.getParam('打印格式');\n\t },\n\t jiaofei: function jiaofei() {\n\t return this.$appdata.getParam('缴费类型');\n\t }\n\t }\n\t};\n\n/***/ }),\n\n/***/ 744:\n/***/ (function(module, exports) {\n\n\tmodule.exports = \" <div class=\\\"col-sm-12 auto select-overspread\\\"> <div class=\\\"auto select-overspread\\\"> <div class=\\\"panel panel-info\\\"> <div class=\\\"panel-heading auto\\\"> <h3 class=panel-title>报装收费</h3> </div> </div> </div> <div class=col-sm-12> <span class=col-sm-3 v-show=\\\"!($login.f.f_fengongsi.includes('彩虹')||$login.f.f_fengongsi.includes('中燃'))\\\">合同编号:{{infee.f_contract_number}}</span> <span class=col-sm-2 v-show=\\\"!($login.f.f_fengongsi.includes('彩虹')||$login.f.f_fengongsi.includes('中燃'))\\\">合同总金额:{{model.f_total_cost}}元</span> <span class=col-sm-2 v-show=model.f_jmhj_cost>优惠金额:{{model.f_jmhj_cost}}元</span> <span class=col-sm-2 v-show=\\\"!($login.f.f_fengongsi.includes('彩虹'))\\\">累计缴费金额:{{model.f_total_fee}}元</span> <span class=col-sm-2 v-show=\\\"!($login.f.f_fengongsi.includes('彩虹')||$login.f.f_fengongsi.includes('中燃'))\\\">未结:{{subcost}}元</span> <button type=button class=\\\"btn btn-warning col-sm-2\\\" @click=add()>新增收费</button> </div> <div class=col-sm-12 style=\\\"height: auto\\\"> <div class=\\\"form-inline auto\\\" style=\\\"margin-bottom: 5px\\\"> </div> <div class=\\\"col-sm-12 span recordTable\\\" style=\\\"margin-top: 10px;min-height: 500px\\\"> <partial-view v-ref:single-load> <data-grid :model=model v-ref:grid> <template partial=head> <tr> <th>序号</th> <th>金额(元)</th> <th>金额大写</th> <th>缴费类型</th> <th>收费人员</th> <th>日期</th> <th>备注</th> </tr> </template> <template partial=body> <td style=\\\"text-align: center\\\">{{$index+1}}</td> <td style=\\\"text-align: center\\\">{{row.f_fee}}</td> <td style=\\\"text-align: center\\\">{{row.f_capital}}</td> <td style=\\\"text-align: center\\\">{{row.f_payfee_way}}</td> <td style=\\\"text-align: center\\\">{{row.f_operator}}</td> <td style=\\\"text-align: center\\\">{{row.f_payfeedate}}</td> <td style=\\\"text-align: center\\\">{{row.f_payfee_remarks}}</td> </template> </data-grid> </partial-view> </div> </div> <div class=\\\"form-group col-sm-12\\\"> <div class=col-sm-6> <label class=\\\"control-label col-sm-4\\\">分公司:</label> <div class=col-sm-8> <input class=form-control type=text v-model=model.f_filiale disabled=disabled> </div> </div> <div class=col-sm-6> <label class=\\\"control-label col-sm-4\\\">操作日期:</label> <div class=col-sm-8> <input class=form-control type=text v-model=model.f_payfee_date disabled=disabled> </div> </div> </div> <div class=\\\"form-group col-sm-12\\\"> <div class=col-sm-6> <label class=\\\"control-label col-sm-4\\\">部门:</label> <div class=col-sm-8> <input class=form-control type=text v-model=model.f_payfee_department disabled=disabled> </div> </div> <div class=col-sm-6> <label class=\\\"control-label col-sm-4\\\">操作人:</label> <div class=col-sm-8> <input class=form-control type=text v-model=model.f_payfee_operator disabled=disabled> </div> </div> </div> <modal :show.sync=showpay 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 v-if=showpay> <div class=from-group> <label>金额(元)</label> <input type=text class=form-control v-model=addItem.f_fee @blur=check()> </div> <div class=from-group> <label>金额大写</label> <input type=text class=form-control v-model=getCapital readonly=readonly> </div> <div class=from-group> <label>缴费类型</label> <v-select :options=jiaofei v-model=addItem.f_payfee_way :value.sync=addItem.f_payfee_way close-on-select> </v-select> </div> <div class=from-group> <label>交费日期</label> <div> <datepicker width=600.76px; :value.sync=addItem.f_payfeedate :format=\\\"'yyyy-MM-dd'\\\" v-model=addItem.f_payfeedate readonly=readonly :show-reset-button=reset> </datepicker> </div> </div> <div class=from-group> <label>备注</label> <input-select :value.sync=addItem.f_payfee_remarks v-model=addItem.f_payfee_remarks :options=feeoptions @change=change close-on-select></input-select> </div> </div> </article> <footer slot=modal-footer class=modal-footer> <button v-show=showpay type=button class=\\\"btn btn-default\\\" @click=close>取消</button> <button v-show=showpay type=button class=\\\"btn btn-success\\\" @click=confirm>确认</button> </footer> </modal> </div> \";\n\n/***/ }),\n\n/***/ 919:\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar __vue_script__, __vue_template__\n\tvar __vue_styles__ = {}\n\t__vue_script__ = __webpack_require__(368)\n\t__vue_template__ = __webpack_require__(744)\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// 63.js","<template>\r\n <div class=\"col-sm-12 auto select-overspread\">\r\n <div class=\"auto select-overspread\">\r\n <div class=\"panel panel-info\">\r\n <div class=\"panel-heading auto\">\r\n <h3 class=\"panel-title\">报装收费</h3>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"col-sm-12\" >\r\n <span class=\"col-sm-3\" v-show=\"!($login.f.f_fengongsi.includes('彩虹')||$login.f.f_fengongsi.includes('中燃'))\">合同编号:{{infee.f_contract_number}}</span>\r\n <span class=\"col-sm-2\" v-show=\"!($login.f.f_fengongsi.includes('彩虹')||$login.f.f_fengongsi.includes('中燃'))\">合同总金额:{{model.f_total_cost}}元</span>\r\n <span class=\"col-sm-2\" v-show=\"model.f_jmhj_cost\">优惠金额:{{model.f_jmhj_cost}}元</span>\r\n <span class=\"col-sm-2\" v-show=\"!($login.f.f_fengongsi.includes('彩虹'))\">累计缴费金额:{{model.f_total_fee}}元</span>\r\n <span class=\"col-sm-2\" v-show=\"!($login.f.f_fengongsi.includes('彩虹')||$login.f.f_fengongsi.includes('中燃'))\">未结:{{subcost}}元</span>\r\n <button type=\"button\" class=\"btn btn-warning col-sm-2\" @click=\"add()\">新增收费</button>\r\n </div>\r\n <div class=\"col-sm-12\" style=\"height: auto\">\r\n <div class=\"form-inline auto\" style=\"margin-bottom: 5px;\">\r\n </div>\r\n <div class=\"col-sm-12 span recordTable\" style=\"margin-top: 10px;min-height: 500px\">\r\n <partial-view v-ref:single-load>\r\n <data-grid :model=\"model\" v-ref:grid>\r\n <template partial='head'>\r\n <tr>\r\n <th>序号</th>\r\n <th>金额(元)</th>\r\n <th>金额大写</th>\r\n <th>缴费类型</th>\r\n <th>收费人员</th>\r\n <th>日期</th>\r\n <th>备注</th>\r\n <!--<th>操作</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 style=\"text-align: center\">{{row.f_fee}}</td>\r\n <td style=\"text-align: center\">{{row.f_capital}}</td>\r\n <td style=\"text-align: center\">{{row.f_payfee_way}}</td>\r\n <td style=\"text-align: center\">{{row.f_operator}}</td>\r\n <td style=\"text-align: center\">{{row.f_payfeedate}}</td>\r\n <td style=\"text-align: center\">{{row.f_payfee_remarks}}</td>\r\n <!--<td class=\"flex-around\">-->\r\n <!--&lt;!&ndash;<button type=\"button\" name=\"button\" class=\"btn btn-link\"&ndash;&gt;-->\r\n <!--&lt;!&ndash;@click.stop=\"$parent.$parent.$parent.modifyParam(row,'修改')\">修改&ndash;&gt;-->\r\n <!--&lt;!&ndash;</button>&ndash;&gt;-->\r\n <!--<button type=\"button\" name=\"button\" class=\"btn btn-link\"-->\r\n <!--@click.stop=\"$parent.$parent.$parent.deleteItem(row)\">删除-->\r\n <!--</button>-->\r\n <!--</td>-->\r\n </template>\r\n </data-grid>\r\n </partial-view>\r\n </div>\r\n </div>\r\n\r\n <!--<div class=\"form-group col-sm-12\">-->\r\n <!--<div class=\"col-sm-2\">-->\r\n <!--<label class=\"control-label col-sm-12\">收费备注:</label>-->\r\n <!--</div>-->\r\n <!--<div class=\"col-sm-10\">-->\r\n <!--<textarea class=\"form-control\" rows=\"3\" v-model=\"model.f_payfee_remarks\"></textarea>-->\r\n <!--</div>-->\r\n <!--</div>-->\r\n <div class=\"form-group col-sm-12\">\r\n <div class=\"col-sm-6\">\r\n <label class=\"control-label col-sm-4\">分公司:</label>\r\n <div class=\"col-sm-8\">\r\n <input class=\"form-control\" type=\"text\" v-model=\"model.f_filiale\" disabled>\r\n </div>\r\n </div>\r\n <div class=\"col-sm-6\">\r\n <label class=\"control-label col-sm-4\">操作日期:</label>\r\n <div class=\"col-sm-8\">\r\n <input class=\"form-control\" type=\"text\" v-model=\"model.f_payfee_date\" disabled>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"form-group col-sm-12\">\r\n <div class=\"col-sm-6\">\r\n <label class=\"control-label col-sm-4\">部门:</label>\r\n <div class=\"col-sm-8\">\r\n <input class=\"form-control\" type=\"text\" v-model=\"model.f_payfee_department\" disabled>\r\n </div>\r\n </div>\r\n <div class=\"col-sm-6\">\r\n <label class=\"control-label col-sm-4\">操作人:</label>\r\n <div class=\"col-sm-8\">\r\n <input class=\"form-control\" type=\"text\" v-model=\"model.f_payfee_operator\" disabled>\r\n </div>\r\n </div>\r\n </div>\r\n <!--<div class=\"from-group col-sm-12\">-->\r\n <!--<center>-->\r\n <!--<button type=\"button\" @click=\"confirm()\" class=\"btn btn-primary\" style=\"width:80px; margin-left:50px;\"-->\r\n <!--:disabled=\"$v.invalid\">-->\r\n <!--保存-->\r\n <!--</button>-->\r\n <!--<button type=\"button\" @click=\"reset()\" class=\"btn btn-warning\" style=\"width:80px; margin-left:50px;\">-->\r\n <!--撤销-->\r\n <!--</button>-->\r\n <!--</center>-->\r\n <!--</div>-->\r\n <modal :show.sync=\"showpay\" 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 v-if=\"showpay\">\r\n <div class=\"from-group\">\r\n <label>金额(元)</label>\r\n <input type=\"text\" class=\"form-control\" v-model=\"addItem.f_fee\" @blur=\"check()\">\r\n </div>\r\n <div class=\"from-group\">\r\n <label>金额大写</label>\r\n <input type=\"text\" class=\"form-control\" v-model=\"getCapital\" readonly>\r\n </div>\r\n <div class=\"from-group\">\r\n <label>缴费类型</label>\r\n <v-select :options=\"jiaofei\"\r\n v-model=\"addItem.f_payfee_way\"\r\n :value.sync=\"addItem.f_payfee_way\" close-on-select>\r\n </v-select>\r\n </div>\r\n <div class=\"from-group\">\r\n <label>交费日期</label>\r\n <div>\r\n <datepicker width=\"600.76px;\"\r\n :value.sync=\"addItem.f_payfeedate\"\r\n :format=\"'yyyy-MM-dd'\"\r\n v-model=\"addItem.f_payfeedate\" readonly=\"readonly\"\r\n :show-reset-button=\"reset\">\r\n </datepicker>\r\n </div>\r\n </div>\r\n <div class=\"from-group\">\r\n <label>备注</label>\r\n <input-select :value.sync=\"addItem.f_payfee_remarks\" v-model=\"addItem.f_payfee_remarks\"\r\n :options='feeoptions' @change=\"change\" close-on-select></input-select>\r\n </div>\r\n </div>\r\n </article>\r\n <footer slot=\"modal-footer\" class=\"modal-footer\">\r\n <button v-show=\"showpay\" type=\"button\" class=\"btn btn-default\" @click='close'>取消</button>\r\n <button v-show=\"showpay\" type=\"button\" class=\"btn btn-success\" @click='confirm'>确认</button>\r\n </footer>\r\n </modal>\r\n </div>\r\n</template>\r\n<script>\r\n import {HttpResetClass} from 'vue-client'\r\n import InputAndSelect from \"vue-client/src/vue-strap/src/InputAndSelect\";\r\n\r\n let gen = function* (self, val) {\r\n val.f_actualfee_type = val.f_actualfee_type[0]\r\n val.f_bill_type = val.f_bill_type[0]\r\n yield self.$resetpost('rs/logic/saveentity', {data:{tablename:'t_apply',parameters:val}})\r\n delete val.id\r\n self.$resetpost('rs/logic/saveentity', {data:{tablename:'t_record',parameters:val}})\r\n .then(() => {\r\n self.reset()\r\n })\r\n }\r\n export default {\r\n components: {InputAndSelect},\r\n title: '报装收费',\r\n data() {\r\n return {\r\n showpay: false, // 新增收费模态框开关\r\n addItem: null, // 模态框数据\r\n model: {\r\n subcost: 0, // 剩余付款\r\n f_total_cost: 0, // 总费用\r\n f_payfee_operator: '',\r\n f_payfee_department: '',\r\n f_filiale: '',\r\n f_payfee_date: '',\r\n f_total_fee: '',\r\n rows: [] // 付费数据数组\r\n }\r\n }\r\n },\r\n props: ['infee'],\r\n ready() {\r\n this.load() // 初始化数据\r\n this.model.f_payfee_operator = this.$login.f.name\r\n this.model.f_payfee_department = this.$login.f.f_parentname\r\n this.model.f_filiale = this.$login.f.f_fengongsi\r\n this.model.f_payfee_date = this.$login.toStandardDateString()\r\n // this.infee.f_actualfee_type = [this.infee.f_actualfee_type ? this.infee.f_actualfee_type : '']\r\n // this.infee.f_bill_type = [this.infee.f_bill_type ? this.infee.f_bill_type : '']\r\n // this.model = Object.assign({}, this.model, this.infee)\r\n // this.model.f_actualfee = '0'\r\n // this.model.f_actualfee_type = '现金缴费'\r\n // delete this.model.id\r\n },\r\n methods: {\r\n // 输入金额校验\r\n check(){\r\n let re = /^[+-]?\\d+(\\.\\d+)?$/ //判断字符串是否为数字\r\n if (!re.test(this.addItem.f_fee)){\r\n this.$showMessage(\"请输入数字\")\r\n this.addItem.f_fee=''\r\n return false\r\n }\r\n return true\r\n },\r\n change() {\r\n // 解决模态框数据不刷新的问题\r\n if (this.addItem.f_payfee_remarks === '开户费') {\r\n this.addItem.f_fee = this.infee.f_account_cost ? this.infee.f_account_cost : 0\r\n }\r\n if (this.addItem.f_payfee_remarks === '入户安装费') {\r\n this.addItem.f_fee = this.infee.f_construction_cost ? this.infee.f_construction_cost : 0\r\n }\r\n if (this.addItem.f_payfee_remarks === '材料费') {\r\n this.addItem.f_fee = this.infee.f_material_cost ? this.infee.f_material_cost : 0\r\n }\r\n if (this.addItem.f_payfee_remarks === '人工费') {\r\n this.addItem.f_fee = this.infee.f_labor_cost ? this.infee.f_labor_cost : 0\r\n }\r\n if (this.addItem.f_payfee_remarks === '改管费') {\r\n this.addItem.f_fee = this.infee.f_change_pipeline_cost ? this.infee.f_change_pipeline_cost : 0\r\n }\r\n if (this.addItem.f_payfee_remarks === '设备安装费') {\r\n this.addItem.f_fee = this.infee.f_sbaz_cost ? this.infee.f_sbaz_cost : 0\r\n }\r\n },\r\n // 小写转换大写\r\n smalltoBIG(n) {\r\n let fraction = ['角', '分'];\r\n let digit = ['零', '壹', '贰', '叁', '肆', '伍', '陆', '柒', '捌', '玖'];\r\n let unit = [['元', '万', '亿'], ['', '拾', '佰', '仟']];\r\n let head = n < 0 ? '欠' : '';\r\n n = Math.abs(n);\r\n\r\n let s = '';\r\n\r\n for (var i = 0; i < fraction.length; i++) {\r\n s += (digit[Math.floor(n * 10 * Math.pow(10, i)) % 10] + fraction[i]).replace(/零./, '');\r\n }\r\n s = s || '整';\r\n n = Math.floor(n);\r\n\r\n for (var i = 0; i < unit[0].length && n > 0; i++) {\r\n let p = '';\r\n for (var j = 0; j < unit[1].length && n > 0; j++) {\r\n p = digit[n % 10] + unit[1][j] + p;\r\n n = Math.floor(n / 10);\r\n }\r\n s = p.replace(/(零.)*零$/, '').replace(/^$/, '零') + unit[0][i] + s;\r\n }\r\n return head + s.replace(/(零.)*零元/, '元').replace(/(零.)+/g, '零').replace(/^整$/, '零元整')\r\n },\r\n //新增收费 开启模态框\r\n add() {\r\n this.addItem = null\r\n this.showpay = true\r\n },\r\n // 关闭模态框\r\n close() {\r\n this.showpay = false\r\n this.addItem = null\r\n },\r\n // 模态框确定按钮保存数据\r\n async confirm() {\r\n let flag = this.check()\r\n if(!flag){\r\n return\r\n }\r\n let http = new HttpResetClass()\r\n if(this.addItem.f_payfee_way&&this.addItem.f_fee){\r\n this.addItem.f_payfee_way = this.addItem.f_payfee_way == '[]'?'': this.addItem.f_payfee_way[0]\r\n this.addItem.processid = this.infee.f_process_id\r\n this.addItem.applyid = this.infee.f_apply_num\r\n this.addItem.f_operator = this.$login.f.name\r\n this.addItem.f_department = this.$login.f.f_parentname\r\n this.addItem.f_filiale = this.$login.f.f_fengongsi\r\n this.addItem.f_fee = Number(this.addItem.f_fee)\r\n this.addItem.f_charging_item = ''\r\n this.addItem.f_pay_number = ''\r\n this.model.rows.push(this.addItem)\r\n let data = {\r\n tablename: 't_paydetail',\r\n parameters: this.addItem\r\n }\r\n await http.load('POST', 'rs/logic/saveentity', {data:data}, {resolveMsg: null, rejectMsg: \"添加失败\"})\r\n .then((res) => {\r\n this.close()\r\n })\r\n }\r\n },\r\n // 获取数据\r\n async load() {\r\n let http = new HttpResetClass()\r\n let data = {\r\n columnname: 'f_contract_money',\r\n tablename: 't_contract',\r\n condition: `processid = '${this.infee.f_process_id}'`\r\n }\r\n let res = await http.load('POST', 'rs/sql/getSum', {data: data}, {resolveMsg: null, rejectMsg: '获取总金额失败'})\r\n this.model.f_total_cost = res.data[0].f_contract_money\r\n data = {\r\n tablename: 't_paydetail',\r\n condition: `processid = '${this.infee.f_process_id}'`\r\n }\r\n\r\n res = await http.load('POST', 'rs/sql/singleTable', {data: data}, {resolveMsg: null, rejectMsg: '获取付款数据失败'})\r\n // 去除付款时间的时分秒\r\n for (var i = 0; i < res.data.length; i++) {\r\n res.data[i].f_payfeedate = res.data[i].f_payfeedate.substring(0, 11)\r\n }\r\n this.model.rows = res.data\r\n },\r\n // confirm() {\r\n // // this.model.f_change_pipeline_cost = this.model.f_change_pipeline_cost\r\n // // this.model.f_material_cost = this.model.f_material_cost\r\n // // this.model.f_labor_cost = this.model.f_labor_cost\r\n // // this.model.f_sbaz_cost = this.model.f_sbaz_cost\r\n // // this.model.f_construction_cost = this.model.f_construction_cost\r\n // // this.model.f_total_cost = this.model.f_total_cost\r\n //\r\n // this.model.f_fee = this.model.f_actualfee\r\n // this.model.f_actualfee = Number(this.infee.f_actualfee) + Number(this.model.f_actualfee)\r\n // this.model.f_paytype = this.model.f_actualfee_type\r\n // this.model.f_payfeedate = this.model.f_payfee_date\r\n // this.model.f_payer = this.model.f_actualfee_user\r\n // this.model.applyid = this.model.id\r\n // this.model.f_state = '已交款'\r\n // this.model.f_operator = this.model.f_payfee_operator\r\n // this.model.f_date = this.model.f_payfee_date\r\n // this.model.f_department = this.model.f_payfee_department\r\n // // this.model.f_filiale = this.model.f_filiale\r\n // this.model.f_operat_type = '报建收费'\r\n // this.model.f_state = '有效'\r\n // this.model.f_describe = this.model.f_user_name + '缴费' + this.model.f_fee\r\n // console.log('输出model', this.model)\r\n // let getGen = gen(this, this.model)\r\n // co(getGen)\r\n // this.$dispatch('searchcard')\r\n // this.$dispatch('hiddenbtn')\r\n // },\r\n // reset() {\r\n // this.$dispatch('hiddenbtn')\r\n // // this.$dispatch('hiddenbtn')\r\n // }\r\n },\r\n computed: {\r\n // 计算大写\r\n getCapital() {\r\n if (this.addItem.f_fee) {\r\n this.addItem.f_capital = this.smalltoBIG(Number(this.addItem.f_fee))\r\n }\r\n return this.addItem.f_capital\r\n },\r\n subcost() {\r\n let temp = Number(this.model.f_total_cost)\r\n let temp2 = 0\r\n for (var i = 0; i < this.model.rows.length; i++) {\r\n temp2 += Number(this.model.rows[i].f_fee)\r\n }\r\n this.model.f_total_fee = Math.round(temp2*100)/100\r\n this.model.subcost = Math.round((temp - temp2)*100)/100\r\n if(this.model.f_total_fee&&this.model.f_jmhj_cost){\r\n temp = Math.round((temp - Number(this.model.f_jmhj_cost))*100)/100\r\n }\r\n this.model.subcost = Math.round((temp - temp2)*100)/100\r\n return this.model.subcost\r\n },\r\n // totalcost () {\r\n // this.model.f_total_cost = Number(this.model.f_construction_cost) + Number(this.model.f_material_cost)\r\n // + Number(this.model.f_labor_cost) + Number(this.model.f_change_pipeline_cost)\r\n // + Number(this.model.f_sbaz_cost) - Number(this.model.f_jmhj_cost)\r\n // return this.model.f_total_cost\r\n // },\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 feeoptions() {\r\n return this.$appdata.getParam('费用类型')\r\n },\r\n dayin() {\r\n return this.$appdata.getParam('打印格式')\r\n },\r\n jiaofei() {\r\n return this.$appdata.getParam('缴费类型')\r\n // return [{label: '全部', value: ''}, ...AppData.getParam('缴费类型')]\r\n }\r\n }\r\n }\r\n</script>\r\n\n\n\n// WEBPACK FOOTER //\n// InstallFee.vue?78c4c67f","module.exports = \" <div class=\\\"col-sm-12 auto select-overspread\\\"> <div class=\\\"auto select-overspread\\\"> <div class=\\\"panel panel-info\\\"> <div class=\\\"panel-heading auto\\\"> <h3 class=panel-title>报装收费</h3> </div> </div> </div> <div class=col-sm-12> <span class=col-sm-3 v-show=\\\"!($login.f.f_fengongsi.includes('彩虹')||$login.f.f_fengongsi.includes('中燃'))\\\">合同编号:{{infee.f_contract_number}}</span> <span class=col-sm-2 v-show=\\\"!($login.f.f_fengongsi.includes('彩虹')||$login.f.f_fengongsi.includes('中燃'))\\\">合同总金额:{{model.f_total_cost}}元</span> <span class=col-sm-2 v-show=model.f_jmhj_cost>优惠金额:{{model.f_jmhj_cost}}元</span> <span class=col-sm-2 v-show=\\\"!($login.f.f_fengongsi.includes('彩虹'))\\\">累计缴费金额:{{model.f_total_fee}}元</span> <span class=col-sm-2 v-show=\\\"!($login.f.f_fengongsi.includes('彩虹')||$login.f.f_fengongsi.includes('中燃'))\\\">未结:{{subcost}}元</span> <button type=button class=\\\"btn btn-warning col-sm-2\\\" @click=add()>新增收费</button> </div> <div class=col-sm-12 style=\\\"height: auto\\\"> <div class=\\\"form-inline auto\\\" style=\\\"margin-bottom: 5px\\\"> </div> <div class=\\\"col-sm-12 span recordTable\\\" style=\\\"margin-top: 10px;min-height: 500px\\\"> <partial-view v-ref:single-load> <data-grid :model=model v-ref:grid> <template partial=head> <tr> <th>序号</th> <th>金额(元)</th> <th>金额大写</th> <th>缴费类型</th> <th>收费人员</th> <th>日期</th> <th>备注</th> </tr> </template> <template partial=body> <td style=\\\"text-align: center\\\">{{$index+1}}</td> <td style=\\\"text-align: center\\\">{{row.f_fee}}</td> <td style=\\\"text-align: center\\\">{{row.f_capital}}</td> <td style=\\\"text-align: center\\\">{{row.f_payfee_way}}</td> <td style=\\\"text-align: center\\\">{{row.f_operator}}</td> <td style=\\\"text-align: center\\\">{{row.f_payfeedate}}</td> <td style=\\\"text-align: center\\\">{{row.f_payfee_remarks}}</td> </template> </data-grid> </partial-view> </div> </div> <div class=\\\"form-group col-sm-12\\\"> <div class=col-sm-6> <label class=\\\"control-label col-sm-4\\\">分公司:</label> <div class=col-sm-8> <input class=form-control type=text v-model=model.f_filiale disabled=disabled> </div> </div> <div class=col-sm-6> <label class=\\\"control-label col-sm-4\\\">操作日期:</label> <div class=col-sm-8> <input class=form-control type=text v-model=model.f_payfee_date disabled=disabled> </div> </div> </div> <div class=\\\"form-group col-sm-12\\\"> <div class=col-sm-6> <label class=\\\"control-label col-sm-4\\\">部门:</label> <div class=col-sm-8> <input class=form-control type=text v-model=model.f_payfee_department disabled=disabled> </div> </div> <div class=col-sm-6> <label class=\\\"control-label col-sm-4\\\">操作人:</label> <div class=col-sm-8> <input class=form-control type=text v-model=model.f_payfee_operator disabled=disabled> </div> </div> </div> <modal :show.sync=showpay 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 v-if=showpay> <div class=from-group> <label>金额(元)</label> <input type=text class=form-control v-model=addItem.f_fee @blur=check()> </div> <div class=from-group> <label>金额大写</label> <input type=text class=form-control v-model=getCapital readonly=readonly> </div> <div class=from-group> <label>缴费类型</label> <v-select :options=jiaofei v-model=addItem.f_payfee_way :value.sync=addItem.f_payfee_way close-on-select> </v-select> </div> <div class=from-group> <label>交费日期</label> <div> <datepicker width=600.76px; :value.sync=addItem.f_payfeedate :format=\\\"'yyyy-MM-dd'\\\" v-model=addItem.f_payfeedate readonly=readonly :show-reset-button=reset> </datepicker> </div> </div> <div class=from-group> <label>备注</label> <input-select :value.sync=addItem.f_payfee_remarks v-model=addItem.f_payfee_remarks :options=feeoptions @change=change close-on-select></input-select> </div> </div> </article> <footer slot=modal-footer class=modal-footer> <button v-show=showpay type=button class=\\\"btn btn-default\\\" @click=close>取消</button> <button v-show=showpay type=button class=\\\"btn btn-success\\\" @click=confirm>确认</button> </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/Function/functions/InstallFee.vue\n// module id = 744\n// module chunks = 63","var __vue_script__, __vue_template__\nvar __vue_styles__ = {}\n__vue_script__ = require(\"!!babel-loader?presets[]=es2015&plugins[]=transform-runtime&comments=false!../../../../../node_modules/vue-loader/lib/selector.js?type=script&index=0!./InstallFee.vue\")\n__vue_template__ = require(\"!!vue-html-loader!../../../../../node_modules/vue-loader/lib/selector.js?type=template&index=0!./InstallFee.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/InstallFee.vue\n// module id = 919\n// module chunks = 63"],"sourceRoot":""}
@@ -1,2 +0,0 @@
1
- webpackJsonp([64],{367:function(e,t,n){"use strict";function a(e){return e&&e.__esModule?e:{default:e}}Object.defineProperty(t,"__esModule",{value:!0});var s=n(2),i=a(s),o=n(7),r=a(o),c=function(){var e=(0,r.default)(i.default.mark(function e(t,n){var a,s,o;return i.default.wrap(function(e){for(;;)switch(e.prev=e.next){case 0:return a="rs/logic/"+n,e.next=3,t.$CancelService.cancel(a,t.model,t.data);case 3:if(s=e.sent,console.log("冲正后的记录。。",s),!t.isNeedEticket(s.data,t.data.type)){e.next=14;break}return console.log("冲正打票,",s.data.id,t.data.type),e.next=9,t.$resetpost("rs/sql/singleTable",{data:{tablename:"t_eticket",condition:"f_sell_id = '"+s.data.id+"' and f_charge_type = '"+t.data.type+"'"}},{resolveMsg:null,rejectMsg:"获取电子票明细失败!!"});case 9:if(o=e.sent,console.log("获取电子票信息",o),!(o.data.length>0)){e.next=14;break}return e.next=14,t.$CommonService.correctEticket(s.data.id,t.data.type);case 14:t.$dispatch("success");case 15:case"end":return e.stop()}},e,this)}));return function(t,n){return e.apply(this,arguments)}}();t.default={props:["data"],title:"操作撤销",data:function(){return{model:{f_cancel_reason:"",f_cancel_name:this.$login.f.name,f_filiale:this.$login.f.f_fengongsi,f_outlets:this.$login.f.f_parentname,f_orgstr:this.$login.f.orgpathstr,f_filialeids:this.$login.f.f_orgids,record_id:""}}},methods:{confirm:function(){var e=this.sortdata();console.log("撤销请求业务逻辑名",e),console.log(e),this.post(e),this.$dispatch("searchcard"),this.$dispatch("hiddenbtn")},clean:function(){this.$dispatch("clean",this.model),this.$dispatch("searchcard"),this.$dispatch("hiddenbtn")},sortdata:function(){this.model.record_id=this.data.id;var e=this.data.type,t=void 0;if("过户"===e)t="transferCancel";else if("换表"===e)t="changemeterCancel";else if("机表收费"===e)t="machineChargeCancelPay";else if("物联网收费"===e)t="iotMeterChargeCancel";else if("卡表超用"===e)t="cardOverCancel";else if("超用收费"===e)t="overuseCancel";else if("其他收费"===e)t="otherFeeRollback";else if("补卡"===e)t="replaceCardCancel";else{if("终止报建"!==e)return;t="CancelStopApply"}return t},post:function(e){c(this,e)},isNeedEticket:function(e,t){if("补卡"===t){if(e.f_cardfees>0)return!0}else if("其他收费"===t){if(e.f_collection>0)return!0}else if("超用收费"===t){if(e.f_collection>0)return!0}else if("物联网表收费"===t&&e.f_collection>0)return!0;return!1}}}},743:function(e,t){e.exports=' <div class=auto> <validator name=v> <p class="bg-info text-center" style="padding: 8px">{{data.type}}撤销</p> <div class=row style=margin-top:10px> <div class=form-group> <label for=f_cancel_reason class="col-sm-2 control-label">撤销原因:</label> <div class=col-sm-8> <textarea class=form-control v-model=model.f_cancel_reason rows=3 placeholder=请填写原因></textarea> </div> </div> </div> <div style=text-align:right;height:auto;margin-top:30px;margin-right:50px> <button class="btn btn-success" @click=confirm()>确&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;认</button> <button class="btn btn-default" @click=clean() style=width:80px;margin-left:20px>取&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;消</button> </div> </validator> </div> '},918:function(e,t,n){var a,s,i={};a=n(367),s=n(743),e.exports=a||{},e.exports.__esModule&&(e.exports=e.exports.default);var o="function"==typeof e.exports?e.exports.options||(e.exports.options={}):e.exports;s&&(o.template=s),o.computed||(o.computed={}),Object.keys(i).forEach(function(e){var t=i[e];o.computed[e]=function(){return t}})}});
2
- //# sourceMappingURL=64.js.map
@@ -1 +0,0 @@
1
- {"version":3,"sources":["webpack:///64.js","webpack:///ApplyRecordCancel.vue","webpack:///./src/components/product/Function/functions/ApplyRecordCancel.vue?cd8b","webpack:///./src/components/product/Function/functions/ApplyRecordCancel.vue"],"names":["webpackJsonp","367","module","exports","__webpack_require__","_interopRequireDefault","obj","__esModule","default","Object","defineProperty","value","_regenerator","_regenerator2","_asyncToGenerator2","_asyncToGenerator3","postGen","_ref","mark","_callee","self","name","url","getRecord","getEticket","wrap","_context","prev","next","$CancelService","cancel","model","data","sent","console","log","isNeedEticket","type","id","$resetpost","tablename","condition","resolveMsg","rejectMsg","length","$CommonService","correctEticket","$dispatch","stop","this","_x","_x2","apply","arguments","props","title","f_cancel_reason","f_cancel_name","$login","f","f_filiale","f_fengongsi","f_outlets","f_parentname","f_orgstr","orgpathstr","f_filialeids","f_orgids","record_id","methods","confirm","sortdata","post","clean","record","f_cardfees","f_collection","743","918","__vue_script__","__vue_template__","__vue_styles__","__vue_options__","options","template","computed","keys","forEach","key"],"mappings":"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","file":"64.js","sourcesContent":["webpackJsonp([64],{\n\n/***/ 367:\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\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\tvar postGen = function () {\n\t var _ref = (0, _asyncToGenerator3.default)(_regenerator2.default.mark(function _callee(self, name) {\n\t var url, getRecord, getEticket;\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 url = 'rs/logic/' + name;\n\t _context.next = 3;\n\t return self.$CancelService.cancel(url, self.model, self.data);\n\t\n\t case 3:\n\t getRecord = _context.sent;\n\t\n\t console.log('冲正后的记录。。', getRecord);\n\t\n\t if (!self.isNeedEticket(getRecord.data, self.data.type)) {\n\t _context.next = 14;\n\t break;\n\t }\n\t\n\t console.log('冲正打票,', getRecord.data.id, self.data.type);\n\t _context.next = 9;\n\t return self.$resetpost('rs/sql/singleTable', {\n\t data: {\n\t tablename: 't_eticket',\n\t condition: 'f_sell_id = \\'' + getRecord.data.id + '\\' and f_charge_type = \\'' + self.data.type + '\\''\n\t }\n\t }, { resolveMsg: null, rejectMsg: '获取电子票明细失败!!' });\n\t\n\t case 9:\n\t getEticket = _context.sent;\n\t\n\t console.log('获取电子票信息', getEticket);\n\t\n\t if (!(getEticket.data.length > 0)) {\n\t _context.next = 14;\n\t break;\n\t }\n\t\n\t _context.next = 14;\n\t return self.$CommonService.correctEticket(getRecord.data.id, self.data.type);\n\t\n\t case 14:\n\t self.$dispatch('success');\n\t\n\t case 15:\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 postGen(_x, _x2) {\n\t return _ref.apply(this, arguments);\n\t };\n\t}();\n\t\n\texports.default = {\n\t props: ['data'],\n\t title: '操作撤销',\n\t data: function data() {\n\t return {\n\t model: {\n\t f_cancel_reason: '',\n\t f_cancel_name: this.$login.f.name,\n\t f_filiale: this.$login.f.f_fengongsi,\n\t f_outlets: this.$login.f.f_parentname,\n\t f_orgstr: this.$login.f.orgpathstr,\n\t f_filialeids: this.$login.f.f_orgids,\n\t record_id: ''\n\t }\n\t };\n\t },\n\t\n\t methods: {\n\t confirm: function confirm() {\n\t var name = this.sortdata();\n\t console.log('撤销请求业务逻辑名', name);\n\t\n\t console.log(name);\n\t this.post(name);\n\t this.$dispatch('searchcard');\n\t this.$dispatch('hiddenbtn');\n\t },\n\t clean: function clean() {\n\t this.$dispatch('clean', this.model);\n\t this.$dispatch('searchcard');\n\t this.$dispatch('hiddenbtn');\n\t },\n\t sortdata: function sortdata() {\n\t this.model.record_id = this.data.id;\n\t var type = this.data.type;\n\t var name = void 0;\n\t\n\t if (type === '过户') {\n\t name = 'transferCancel';\n\t } else if (type === '换表') {\n\t name = 'changemeterCancel';\n\t } else if (type === '机表收费') {\n\t name = 'machineChargeCancelPay';\n\t } else if (type === '物联网收费') {\n\t name = 'iotMeterChargeCancel';\n\t } else if (type === '卡表超用') {\n\t name = 'cardOverCancel';\n\t } else if (type === '超用收费') {\n\t name = 'overuseCancel';\n\t } else if (type === '其他收费') {\n\t name = 'otherFeeRollback';\n\t } else if (type === '补卡') {\n\t name = 'replaceCardCancel';\n\t } else if (type === '终止报建') {\n\t name = 'CancelStopApply';\n\t } else {\n\t return;\n\t }\n\t return name;\n\t },\n\t post: function post(name) {\n\t postGen(this, name);\n\t },\n\t isNeedEticket: function isNeedEticket(record, type) {\n\t if (type === '补卡') {\n\t if (record.f_cardfees > 0) {\n\t return true;\n\t }\n\t } else if (type === '其他收费') {\n\t if (record.f_collection > 0) {\n\t return true;\n\t }\n\t } else if (type === '超用收费') {\n\t if (record.f_collection > 0) {\n\t return true;\n\t }\n\t } else if (type === '物联网表收费') {\n\t if (record.f_collection > 0) {\n\t return true;\n\t }\n\t }\n\t return false;\n\t }\n\t }\n\t};\n\n/***/ }),\n\n/***/ 743:\n/***/ (function(module, exports) {\n\n\tmodule.exports = \" <div class=auto> <validator name=v> <p class=\\\"bg-info text-center\\\" style=\\\"padding: 8px\\\">{{data.type}}撤销</p> <div class=row style=margin-top:10px> <div class=form-group> <label for=f_cancel_reason class=\\\"col-sm-2 control-label\\\">撤销原因:</label> <div class=col-sm-8> <textarea class=form-control v-model=model.f_cancel_reason rows=3 placeholder=请填写原因></textarea> </div> </div> </div> <div style=text-align:right;height:auto;margin-top:30px;margin-right:50px> <button class=\\\"btn btn-success\\\" @click=confirm()>确&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;认</button> <button class=\\\"btn btn-default\\\" @click=clean() style=width:80px;margin-left:20px>取&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;消</button> </div> </validator> </div> \";\n\n/***/ }),\n\n/***/ 918:\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar __vue_script__, __vue_template__\n\tvar __vue_styles__ = {}\n\t__vue_script__ = __webpack_require__(367)\n\t__vue_template__ = __webpack_require__(743)\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// 64.js","<template>\r\n <div class=\"auto\">\r\n <validator name='v'>\r\n <p class=\"bg-info text-center\" style=\"padding: 8px;\">{{data.type}}撤销</p>\r\n <div class=\"row\" style=\"margin-top:10px;\">\r\n <div class=\"form-group\">\r\n <label for=\"f_cancel_reason\" class=\" col-sm-2 control-label\">撤销原因:</label>\r\n <div class=\"col-sm-8\">\r\n <textarea class=\"form-control\" v-model=\"model.f_cancel_reason\" rows=\"3\" placeholder=\"请填写原因\"></textarea>\r\n </div>\r\n </div>\r\n </div>\r\n <div style=\"text-align:right;height:auto;margin-top:30px;margin-right:50px;\">\r\n <button class=\"btn btn-success\" @click=\"confirm()\" >确&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;认</button>\r\n <button class=\"btn btn-default\" @click=\"clean()\" style=\"width:80px;margin-left:20px;\">取&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;消</button>\r\n </div>\r\n </validator>\r\n </div>\r\n</template>\r\n\r\n<script>\r\n\r\n let postGen = async function (self, name) {\r\n let url = 'rs/logic/' + name\r\n // 获取冲正后的记录\r\n let getRecord = await self.$CancelService.cancel(url, self.model, self.data)\r\n console.log('冲正后的记录。。', getRecord)\r\n // 判断需不需要打印电子票\r\n if (self.isNeedEticket(getRecord.data, self.data.type)) {\r\n console.log('冲正打票,', getRecord.data.id, self.data.type)\r\n let getEticket = await\r\n self.$resetpost('rs/sql/singleTable', {\r\n data: {\r\n tablename: 't_eticket',\r\n condition: `f_sell_id = '${getRecord.data.id}' and f_charge_type = '${self.data.type}'`\r\n }\r\n }, {resolveMsg: null, rejectMsg: '获取电子票明细失败!!'})\r\n console.log('获取电子票信息', getEticket)\r\n if (getEticket.data.length > 0) {\r\n await self.$CommonService.correctEticket(getRecord.data.id, self.data.type)\r\n }\r\n }\r\n self.$dispatch('success')\r\n }\r\n\r\n export default {\r\n props: ['data'],\r\n title: '操作撤销',\r\n data () {\r\n return {\r\n model: {\r\n f_cancel_reason: '',\r\n f_cancel_name: this.$login.f.name,\r\n f_filiale:this.$login.f.f_fengongsi,\r\n f_outlets:this.$login.f.f_parentname,\r\n f_orgstr:this.$login.f.orgpathstr,\r\n f_filialeids:this.$login.f.f_orgids,\r\n record_id: ''\r\n }\r\n }\r\n },\r\n methods: {\r\n confirm () {\r\n // 整理数据\r\n let name = this.sortdata()\r\n console.log('撤销请求业务逻辑名', name)\r\n // 撤销操作请求\r\n console.log(name)\r\n this.post(name)\r\n this.$dispatch('searchcard')\r\n this.$dispatch('hiddenbtn')\r\n },\r\n clean () {\r\n this.$dispatch('clean', this.model)\r\n this.$dispatch('searchcard')\r\n this.$dispatch('hiddenbtn')\r\n },\r\n // 判断type类型 整理数据\r\n sortdata () {\r\n this.model.record_id = this.data.id\r\n let type = this.data.type\r\n let name\r\n // 根据type数据 选择调用的Logic\r\n if (type === '过户') {\r\n name = 'transferCancel'\r\n } else if (type === '换表') {\r\n name = 'changemeterCancel'\r\n } else if (type === '机表收费') {\r\n name = 'machineChargeCancelPay'\r\n } else if (type === '物联网收费') {\r\n name = 'iotMeterChargeCancel'\r\n } else if (type === '卡表超用') {\r\n name = 'cardOverCancel'\r\n } else if (type === '超用收费') {\r\n name = 'overuseCancel'\r\n } else if (type === '其他收费') {\r\n name = 'otherFeeRollback'\r\n } else if (type === '补卡') {\r\n name = 'replaceCardCancel'\r\n } else if (type === '终止报建'){\r\n name = 'CancelStopApply'\r\n }else{\r\n return\r\n }\r\n return name\r\n },\r\n // 发送请求 及 请求后处理页面\r\n post (name) {\r\n postGen(this, name)\r\n },\r\n isNeedEticket (record, type) {\r\n // TODO 需要其他类型再继续加\r\n if (type === '补卡') {\r\n // 判断卡费是否大于零\r\n if (record.f_cardfees > 0) {\r\n return true\r\n }\r\n } else if (type === '其他收费') {\r\n if (record.f_collection > 0) {\r\n return true\r\n }\r\n } else if (type === '超用收费') {\r\n if (record.f_collection > 0) {\r\n return true\r\n }\r\n } else if (type === '物联网表收费') {\r\n if (record.f_collection > 0) {\r\n return true\r\n }\r\n }\r\n return false\r\n }\r\n }\r\n }\r\n</script>\r\n\n\n\n// WEBPACK FOOTER //\n// ApplyRecordCancel.vue?006dc770","module.exports = \" <div class=auto> <validator name=v> <p class=\\\"bg-info text-center\\\" style=\\\"padding: 8px\\\">{{data.type}}撤销</p> <div class=row style=margin-top:10px> <div class=form-group> <label for=f_cancel_reason class=\\\"col-sm-2 control-label\\\">撤销原因:</label> <div class=col-sm-8> <textarea class=form-control v-model=model.f_cancel_reason rows=3 placeholder=请填写原因></textarea> </div> </div> </div> <div style=text-align:right;height:auto;margin-top:30px;margin-right:50px> <button class=\\\"btn btn-success\\\" @click=confirm()>确&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;认</button> <button class=\\\"btn btn-default\\\" @click=clean() style=width:80px;margin-left:20px>取&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;消</button> </div> </validator> </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/ApplyRecordCancel.vue\n// module id = 743\n// module chunks = 64","var __vue_script__, __vue_template__\nvar __vue_styles__ = {}\n__vue_script__ = require(\"!!babel-loader?presets[]=es2015&plugins[]=transform-runtime&comments=false!../../../../../node_modules/vue-loader/lib/selector.js?type=script&index=0!./ApplyRecordCancel.vue\")\n__vue_template__ = require(\"!!vue-html-loader!../../../../../node_modules/vue-loader/lib/selector.js?type=template&index=0!./ApplyRecordCancel.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/ApplyRecordCancel.vue\n// module id = 918\n// module chunks = 64"],"sourceRoot":""}
@@ -1,2 +0,0 @@
1
- webpackJsonp([65],{366:function(t,e,r){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var o=r(3);e.default={title:"报建详情信息",data:function(){return{model:new o.PagedList("rs/sql/installonerecord",50,{data:{id:""+this.applyinfo.id}})}},props:["applyinfo"],ready:function(){this.$refs.cp.$refs.cri.search(),this.$refs.cp.pager=!1},methods:{clifun:function(t){this.$dispatch("showline",t)}}}},742:function(t,e){t.exports=' <div class=d1> <div class="left col-sm-12"> <criteria-paged :model=model v-ref:cp> <criteria partial=criteria @condition-changed=search v-ref:cri> <form novalidate class="" partial> </form> </criteria> <data-grid :model=model partial=list v-ref:grid class=data-grid is-fixed=false style=overflow-x:auto> <template partial=head> <tr class=title> <th><nobr>报建业务类型</nobr></th> <th><nobr>描述</nobr></th> <th><nobr>状态</nobr></th> </tr> </template> <template partial=body> <tr> <td><nobr>{{row.f_operat_type}}</nobr></td> <td><nobr>{{row.f_describe}}</nobr> </td> <td><nobr>{{row.f_state}}</nobr></td> </tr> </template> </data-grid> </criteria-paged> </div> </div> '},917:function(t,e,r){var o,a,i={};o=r(366),a=r(742),t.exports=o||{},t.exports.__esModule&&(t.exports=t.exports.default);var s="function"==typeof t.exports?t.exports.options||(t.exports.options={}):t.exports;a&&(s.template=a),s.computed||(s.computed={}),Object.keys(i).forEach(function(t){var e=i[t];s.computed[t]=function(){return e}})}});
2
- //# sourceMappingURL=65.js.map
@@ -1 +0,0 @@
1
- {"version":3,"sources":["webpack:///65.js","webpack:///AllSelect.vue","webpack:///./src/components/product/Function/functions/AllSelect.vue?2b65","webpack:///./src/components/product/Function/functions/AllSelect.vue"],"names":["webpackJsonp","366","module","exports","__webpack_require__","Object","defineProperty","value","_vueClient","default","title","data","model","PagedList","id","this","applyinfo","props","ready","$refs","cp","cri","search","pager","methods","clifun","row","$dispatch","742","917","__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,SC4BTC,MAAA,SACAC,KAFA,WAGA,OACAC,MAAA,GAAAJ,GAAAK,UAAA,8BAAAF,MAAAG,GAAA,GAAAC,KAAAC,UAAAF,QAGAG,OAAA,aACAC,MARA,WASAH,KAAAI,MAAAC,GAAAD,MAAAE,IAAAC,SACAP,KAAAI,MAAAC,GAAAG,OAAA,GAEAC,SACAC,OADA,SACAC,GACAX,KAAAY,UAAA,WAAAD,ODlBME,IACA,SAAU1B,EAAQC,GErCxBD,EAAAC,QAAA,upBF2CM0B,IACA,SAAU3B,EAAQC,EAASC,GG5CjC,GAAA0B,GAAAC,EACAC,IACAF,GAAA1B,EAAA,KACA2B,EAAA3B,EAAA,KACAF,EAAAC,QAAA2B,MACA5B,EAAAC,QAAA8B,aAAA/B,EAAAC,QAAAD,EAAAC,QAAAM,QACA,IAAAyB,GAAA,kBAAAhC,GAAAC,QAAAD,EAAAC,QAAAgC,UAAAjC,EAAAC,QAAAgC,YAAoHjC,EAAAC,OACpH4B,KACAG,EAAAE,SAAAL,GAEAG,EAAAG,WAAAH,EAAAG,aACAhC,OAAAiC,KAAAN,GAAAO,QAAA,SAAAC,GACA,GAAAtC,GAAA8B,EAAAQ,EACAN,GAAAG,SAAAG,GAAA,WAA6C,MAAAtC","file":"65.js","sourcesContent":["webpackJsonp([65],{\n\n/***/ 366:\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 model: new _vueClient.PagedList('rs/sql/installonerecord', 50, { data: { id: '' + this.applyinfo.id } })\n\t };\n\t },\n\t\n\t props: ['applyinfo'],\n\t ready: function ready() {\n\t this.$refs.cp.$refs.cri.search();\n\t this.$refs.cp.pager = false;\n\t },\n\t\n\t methods: {\n\t clifun: function clifun(row) {\n\t this.$dispatch('showline', row);\n\t }\n\t }\n\t};\n\n/***/ }),\n\n/***/ 742:\n/***/ (function(module, exports) {\n\n\tmodule.exports = \" <div class=d1> <div class=\\\"left col-sm-12\\\"> <criteria-paged :model=model v-ref:cp> <criteria partial=criteria @condition-changed=search v-ref:cri> <form novalidate class=\\\"\\\" partial> </form> </criteria> <data-grid :model=model partial=list v-ref:grid class=data-grid is-fixed=false style=overflow-x:auto> <template partial=head> <tr class=title> <th><nobr>报建业务类型</nobr></th> <th><nobr>描述</nobr></th> <th><nobr>状态</nobr></th> </tr> </template> <template partial=body> <tr> <td><nobr>{{row.f_operat_type}}</nobr></td> <td><nobr>{{row.f_describe}}</nobr> </td> <td><nobr>{{row.f_state}}</nobr></td> </tr> </template> </data-grid> </criteria-paged> </div> </div> \";\n\n/***/ }),\n\n/***/ 917:\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar __vue_script__, __vue_template__\n\tvar __vue_styles__ = {}\n\t__vue_script__ = __webpack_require__(366)\n\t__vue_template__ = __webpack_require__(742)\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// 65.js","<template>\r\n<div class=\"d1\">\r\n <div class=\"left col-sm-12\">\r\n <criteria-paged :model=\"model\" v-ref:cp>\r\n <criteria partial='criteria' @condition-changed='search' v-ref:cri>\r\n <form novalidate class=\"\" partial >\r\n </form>\r\n </criteria>\r\n <data-grid :model=\"model\" partial='list' v-ref:grid class=\"data-grid\" is-fixed='false' style=\"overflow-x:auto\">\r\n <template partial='head'>\r\n <tr class=\"title\">\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 </tr>\r\n </template>\r\n <template partial='body'>\r\n <tr>\r\n <td><nobr>{{row.f_operat_type}}</nobr></td>\r\n <td><nobr>{{row.f_describe}}</nobr> </td>\r\n <td><nobr>{{row.f_state}}</nobr></td>\r\n <!-- <td style=\"text-align: center;\">\r\n <nobr>\r\n <a class=\"\" @click=\"$parent.$parent.$parent.clifun(row)\">\r\n 查看\r\n </a>\r\n </nobr>\r\n </td> -->\r\n </tr>\r\n </template>\r\n </data-grid>\r\n </criteria-paged>\r\n </div>\r\n</div>\r\n</template>\r\n<script>\r\n // import AppData from '../../../../stores/AppData.js'\r\n import {PagedList} from 'vue-client'\r\n\r\n export default {\r\n title: '报建详情信息',\r\n data () {\r\n return {\r\n model: new PagedList('rs/sql/installonerecord', 50, {data: {id: `${this.applyinfo.id}`}})\r\n }\r\n },\r\n props: ['applyinfo'],\r\n ready () {\r\n this.$refs.cp.$refs.cri.search()\r\n this.$refs.cp.pager = false\r\n },\r\n methods: {\r\n clifun (row) {\r\n this.$dispatch('showline', row)\r\n }\r\n }\r\n}\r\n</script>\r\n\n\n\n// WEBPACK FOOTER //\n// AllSelect.vue?473abdb0","module.exports = \" <div class=d1> <div class=\\\"left col-sm-12\\\"> <criteria-paged :model=model v-ref:cp> <criteria partial=criteria @condition-changed=search v-ref:cri> <form novalidate class=\\\"\\\" partial> </form> </criteria> <data-grid :model=model partial=list v-ref:grid class=data-grid is-fixed=false style=overflow-x:auto> <template partial=head> <tr class=title> <th><nobr>报建业务类型</nobr></th> <th><nobr>描述</nobr></th> <th><nobr>状态</nobr></th> </tr> </template> <template partial=body> <tr> <td><nobr>{{row.f_operat_type}}</nobr></td> <td><nobr>{{row.f_describe}}</nobr> </td> <td><nobr>{{row.f_state}}</nobr></td> </tr> </template> </data-grid> </criteria-paged> </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/AllSelect.vue\n// module id = 742\n// module chunks = 65","var __vue_script__, __vue_template__\nvar __vue_styles__ = {}\n__vue_script__ = require(\"!!babel-loader?presets[]=es2015&plugins[]=transform-runtime&comments=false!../../../../../node_modules/vue-loader/lib/selector.js?type=script&index=0!./AllSelect.vue\")\n__vue_template__ = require(\"!!vue-html-loader!../../../../../node_modules/vue-loader/lib/selector.js?type=template&index=0!./AllSelect.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/AllSelect.vue\n// module id = 917\n// module chunks = 65"],"sourceRoot":""}
@@ -1,2 +0,0 @@
1
- webpackJsonp([66],{364:function(t,e,s){"use strict";function i(t){return t&&t.__esModule?t:{default:t}}Object.defineProperty(e,"__esModule",{value:!0});var a=s(2),h=i(a),o=s(6),n=i(o),r=s(7),l=i(r),c=s(11),f=i(c),p=s(3);e.default={title:"报建功能业务控制层",props:["selectdata","funcdata"],data:function(){return{data:null,model:null,json_datas:null,showview:!1,showcontract:!1,showinfee:!1,showprestorefee:!1,showstop:!1,showbill:!1,showpreparation:!1}},methods:{preparation:function(){this.$parent.$refs.installselect.clifun(this.selectdata),this.$parent.$refs.installselect.clifun(this.selectdata),this.$parent.clishow=!0,this.$parent.show=!1,this.showview=!1,this.showinfee=!1,this.showprestorefee=!1,this.showupfee=!1,this.showreducefee=!1,this.showstop=!1,this.showcontract=!1,this.showbill=!1,this.showpreparation=!0},bill:function(){this.$parent.$refs.installselect.clifun(this.selectdata),this.$parent.clishow=!0,this.$parent.show=!1,this.showview=!1,this.showinfee=!1,this.showprestorefee=!1,this.showupfee=!1,this.showreducefee=!1,this.showstop=!1,this.showcontract=!1,this.showpreparation=!1,this.showbill=!0},contract:function(){this.$parent.$refs.installselect.clifun(this.selectdata),this.$parent.clishow=!0,this.$parent.show=!1,this.showview=!1,this.showinfee=!1,this.showprestorefee=!1,this.showupfee=!1,this.showreducefee=!1,this.showstop=!1,this.showbill=!1,this.showpreparation=!1,this.showcontract=!0},instalfee:function(t){this.$parent.$refs.installselect.clifun(this.selectdata),this.$parent.clishow=!0,this.$parent.show=!1,this.showview=!1,this.showupfee=!1,this.showreducefee=!1,this.showstop=!1,this.showcontract=!1,this.showbill=!1,this.showpreparation=!1,this.showprestorefee=!1,this.showinfee=!1,"预付扣款"===t?this.showprestorefee=!0:this.showinfee=!0},stopInstall:function(){this.$parent.$refs.installselect.clifun(this.selectdata),this.$parent.clishow=!0,this.$parent.show=!1,this.showview=!1,this.showbill=!1,this.showinfee=!1,this.showprestorefee=!1,this.showupfee=!1,this.showreducefee=!1,this.showcontract=!1,this.showpreparation=!1,this.showstop=!0},initializtion:function(){this.data=(0,f.default)({},this.data,this.selectdata);for(var t=0;t<this.data.fields.length;t++)this.selectdata[this.data.fields[t].field]&&(this.data.fields[t].value=this.selectdata[this.data.fields[t].field]),"select"===this.data.fields[t].type&&(this.data.fields[t].options=this.$appdata.getParam(this.data.fields[t].label))},hasChange:function(){this.funcdata.fields?(this.data=this.funcdata,this.initializtion(),this.$parent.clishow=!0,this.$parent.show=!1,this.showview=!0,this.showbill=!1,this.showinfee=!1,this.showprestorefee=!1,this.showcontract=!1,this.showpreparation=!1,this.showstop=!1):("终止报建"===this.funcdata.title&&this.stopInstall(),"预付扣款"===this.funcdata.title&&this.instalfee("预付扣款"),"报建收费"===this.funcdata.title&&this.instalfee(),"打印票据"===this.funcdata.title&&this.bill(),"补充协议"===this.funcdata.title&&this.contract(),"预付款"===this.funcdata.title&&this.preparation())}},events:{select_cascade:function(t){},button:function(){function t(t){return e.apply(this,arguments)}var e=(0,l.default)(h.default.mark(function t(e){var s,i;return h.default.wrap(function(t){for(;;)switch(t.prev=t.next){case 0:return console.log("button事件接收参数:",e),e=(0,f.default)({},this.selectdata,e),s=new p.HttpResetClass,t.next=5,s.load("POST","rs/logic/ApplyProductFunctionService",{data:{tables:this.funcdata.tables,model:e,loginUser:this.$login.f}},{resolveMsg:null,rejectMsg:"数据保存失败"});case 5:if(i=t.sent,console.log("service处理完成返回数据:",(0,n.default)(i.data)),!(i.code=200)){t.next=12;break}this.$dispatch("hiddenbtn"),this.showview=!1,t.next=13;break;case 12:throw i.data.msg;case 13:case"end":return t.stop()}},t,this)}));return t}()},watch:{funcdata:function(){this.hasChange()},selectdata:function(){this.hasChange()},deep:!0}}},741:function(t,e){t.exports=" <div> <service-view :data=data v-if=showview></service-view> <installfee :infee=selectdata v-if=showinfee></installfee> <preparationfee :selectdata=selectdata v-if=showpreparation></preparationfee> <prestorefee :infee=selectdata v-if=showprestorefee v-ref:prestorefee></prestorefee> <addcontract :addcontract=selectdata v-if=showcontract></addcontract> <stop-install :stopapply=selectdata v-if=showstop></stop-install> </div> "},915:function(t,e,s){var i,a,h={};i=s(364),a=s(741),t.exports=i||{},t.exports.__esModule&&(t.exports=t.exports.default);var o="function"==typeof t.exports?t.exports.options||(t.exports.options={}):t.exports;a&&(o.template=a),o.computed||(o.computed={}),Object.keys(h).forEach(function(t){var e=h[t];o.computed[t]=function(){return e}})}});
2
- //# sourceMappingURL=66.js.map
@@ -1 +0,0 @@
1
- {"version":3,"sources":["webpack:///66.js","webpack:///FunctionServiceControl.vue","webpack:///./src/components/product/Function/Service/FunctionServiceControl.vue?0b25","webpack:///./src/components/product/Function/Service/FunctionServiceControl.vue"],"names":["webpackJsonp","364","module","exports","__webpack_require__","_interopRequireDefault","obj","__esModule","default","Object","defineProperty","value","_regenerator","_regenerator2","_stringify","_stringify2","_asyncToGenerator2","_asyncToGenerator3","_assign","_assign2","_vueClient","title","props","data","model","json_datas","showview","showcontract","showinfee","showprestorefee","showstop","showbill","showpreparation","methods","preparation","this","$parent","$refs","installselect","clifun","selectdata","clishow","show","showupfee","showreducefee","bill","contract","instalfee","str","stopInstall","initializtion","i","fields","length","field","type","options","$appdata","getParam","label","hasChange","funcdata","events","select_cascade","index","button","_x","_ref","apply","arguments","mark","_callee","http","res","wrap","_context","prev","next","console","log","HttpResetClass","load","tables","loginUser","$login","f","resolveMsg","rejectMsg","sent","code","$dispatch","msg","stop","watch","deep","741","915","__vue_script__","__vue_template__","__vue_styles__","__vue_options__","template","computed","keys","forEach","key"],"mappings":"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","file":"66.js","sourcesContent":["webpackJsonp([66],{\n\n/***/ 364:\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 _stringify = __webpack_require__(6);\n\t\n\tvar _stringify2 = _interopRequireDefault(_stringify);\n\t\n\tvar _asyncToGenerator2 = __webpack_require__(7);\n\t\n\tvar _asyncToGenerator3 = _interopRequireDefault(_asyncToGenerator2);\n\t\n\tvar _assign = __webpack_require__(11);\n\t\n\tvar _assign2 = _interopRequireDefault(_assign);\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 props: ['selectdata', 'funcdata'],\n\t data: function data() {\n\t return {\n\t data: null,\n\t model: null,\n\t json_datas: null,\n\t showview: false,\n\t\n\t showcontract: false,\n\t showinfee: false,\n\t showprestorefee: false,\n\t showstop: false,\n\t showbill: false,\n\t showpreparation: false };\n\t },\n\t\n\t methods: {\n\t preparation: function preparation() {\n\t this.$parent.$refs.installselect.clifun(this.selectdata);\n\t this.$parent.$refs.installselect.clifun(this.selectdata);\n\t\n\t this.$parent.clishow = true;\n\t this.$parent.show = false;\n\t\n\t this.showview = false;\n\t this.showinfee = false;\n\t this.showprestorefee = false;\n\t this.showupfee = false;\n\t this.showreducefee = false;\n\t this.showstop = false;\n\t this.showcontract = false;\n\t this.showbill = false;\n\t this.showpreparation = true;\n\t },\n\t bill: function bill() {\n\t this.$parent.$refs.installselect.clifun(this.selectdata);\n\t\n\t this.$parent.clishow = true;\n\t this.$parent.show = false;\n\t\n\t this.showview = false;\n\t this.showinfee = false;\n\t this.showprestorefee = false;\n\t this.showupfee = false;\n\t this.showreducefee = false;\n\t this.showstop = false;\n\t this.showcontract = false;\n\t this.showpreparation = false;\n\t this.showbill = true;\n\t },\n\t contract: function contract() {\n\t this.$parent.$refs.installselect.clifun(this.selectdata);\n\t\n\t this.$parent.clishow = true;\n\t this.$parent.show = false;\n\t\n\t this.showview = false;\n\t this.showinfee = false;\n\t this.showprestorefee = false;\n\t this.showupfee = false;\n\t this.showreducefee = false;\n\t this.showstop = false;\n\t this.showbill = false;\n\t this.showpreparation = false;\n\t this.showcontract = true;\n\t },\n\t instalfee: function instalfee(str) {\n\t this.$parent.$refs.installselect.clifun(this.selectdata);\n\t\n\t this.$parent.clishow = true;\n\t this.$parent.show = false;\n\t\n\t this.showview = false;\n\t this.showupfee = false;\n\t this.showreducefee = false;\n\t this.showstop = false;\n\t this.showcontract = false;\n\t this.showbill = false;\n\t this.showpreparation = false;\n\t this.showprestorefee = false;\n\t this.showinfee = false;\n\t\n\t if (str === '预付扣款') {\n\t this.showprestorefee = true;\n\t } else {\n\t this.showinfee = true;\n\t }\n\t },\n\t stopInstall: function stopInstall() {\n\t this.$parent.$refs.installselect.clifun(this.selectdata);\n\t\n\t this.$parent.clishow = true;\n\t this.$parent.show = false;\n\t\n\t this.showview = false;\n\t this.showbill = false;\n\t this.showinfee = false;\n\t this.showprestorefee = false;\n\t this.showupfee = false;\n\t this.showreducefee = false;\n\t this.showcontract = false;\n\t this.showpreparation = false;\n\t this.showstop = true;\n\t },\n\t initializtion: function initializtion() {\n\t this.data = (0, _assign2.default)({}, this.data, this.selectdata);\n\t for (var i = 0; i < this.data.fields.length; i++) {\n\t if (this.selectdata[this.data.fields[i].field]) {\n\t this.data.fields[i].value = this.selectdata[this.data.fields[i].field];\n\t }\n\t\n\t if (this.data.fields[i].type === 'select') {\n\t this.data.fields[i].options = this.$appdata.getParam(this.data.fields[i].label);\n\t }\n\t }\n\t },\n\t hasChange: function hasChange() {\n\t if (this.funcdata.fields) {\n\t this.data = this.funcdata;\n\t\n\t this.initializtion();\n\t this.$parent.clishow = true;\n\t this.$parent.show = false;\n\t\n\t this.showview = true;\n\t this.showbill = false;\n\t this.showinfee = false;\n\t this.showprestorefee = false;\n\t this.showcontract = false;\n\t this.showpreparation = false;\n\t this.showstop = false;\n\t } else {\n\t if (this.funcdata.title === '终止报建') {\n\t this.stopInstall();\n\t }\n\t if (this.funcdata.title === '预付扣款') {\n\t this.instalfee('预付扣款');\n\t }\n\t if (this.funcdata.title === '报建收费') {\n\t this.instalfee();\n\t }\n\t if (this.funcdata.title === '打印票据') {\n\t this.bill();\n\t }\n\t if (this.funcdata.title === '补充协议') {\n\t this.contract();\n\t }\n\t if (this.funcdata.title === '预付款') {\n\t this.preparation();\n\t }\n\t }\n\t }\n\t },\n\t events: {\n\t 'select_cascade': function select_cascade(index) {},\n\t 'button': function () {\n\t var _ref = (0, _asyncToGenerator3.default)(_regenerator2.default.mark(function _callee(model) {\n\t var http, res;\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(\"button事件接收参数:\", model);\n\t model = (0, _assign2.default)({}, this.selectdata, model);\n\t http = new _vueClient.HttpResetClass();\n\t _context.next = 5;\n\t return http.load('POST', 'rs/logic/ApplyProductFunctionService', { data: { tables: this.funcdata.tables, model: model, loginUser: this.$login.f } }, { resolveMsg: null, rejectMsg: '数据保存失败' });\n\t\n\t case 5:\n\t res = _context.sent;\n\t\n\t console.log(\"service处理完成返回数据:\", (0, _stringify2.default)(res.data));\n\t\n\t if (!(res.code = 200)) {\n\t _context.next = 12;\n\t break;\n\t }\n\t\n\t this.$dispatch('hiddenbtn');\n\t this.showview = false;\n\t _context.next = 13;\n\t break;\n\t\n\t case 12:\n\t throw res.data.msg;\n\t\n\t case 13:\n\t case 'end':\n\t return _context.stop();\n\t }\n\t }\n\t }, _callee, this);\n\t }));\n\t\n\t function button(_x) {\n\t return _ref.apply(this, arguments);\n\t }\n\t\n\t return button;\n\t }()\n\t },\n\t watch: {\n\t 'funcdata': function funcdata() {\n\t this.hasChange();\n\t },\n\t 'selectdata': function selectdata() {\n\t this.hasChange();\n\t },\n\t\n\t deep: true\n\t }\n\t};\n\n/***/ }),\n\n/***/ 741:\n/***/ (function(module, exports) {\n\n\tmodule.exports = \" <div> <service-view :data=data v-if=showview></service-view> <installfee :infee=selectdata v-if=showinfee></installfee> <preparationfee :selectdata=selectdata v-if=showpreparation></preparationfee> <prestorefee :infee=selectdata v-if=showprestorefee v-ref:prestorefee></prestorefee> <addcontract :addcontract=selectdata v-if=showcontract></addcontract> <stop-install :stopapply=selectdata v-if=showstop></stop-install> </div> \";\n\n/***/ }),\n\n/***/ 915:\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar __vue_script__, __vue_template__\n\tvar __vue_styles__ = {}\n\t__vue_script__ = __webpack_require__(364)\n\t__vue_template__ = __webpack_require__(741)\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// 66.js","<template>\r\n <div>\r\n <service-view :data=\"data\" v-if=\"showview\"></service-view>\r\n <installfee :infee=\"selectdata\" v-if=\"showinfee\"></installfee>\r\n <!--预存款-->\r\n <preparationfee :selectdata=\"selectdata\" v-if=\"showpreparation\"></preparationfee>\r\n <!--预存报建收费-->\r\n <prestorefee :infee=\"selectdata\" v-if=\"showprestorefee\" v-ref:prestorefee></prestorefee>\r\n <!-- 费用变更 -->\r\n <!--<updatefee :upfee=\"selectdata\" v-if=\"showupfee\"></updatefee>-->\r\n <!-- 费用减免 -->\r\n <!--<reducefee :redufee=\"selectdata\" v-if=\"showreducefee\"></reducefee>-->\r\n <!-- 添加合同 -->\r\n <addcontract :addcontract=\"selectdata\" v-if=\"showcontract\"></addcontract>\r\n <!-- 终止报建 -->\r\n <stop-install :stopapply=\"selectdata\" v-if=\"showstop\"></stop-install>\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 props: ['selectdata','funcdata'],\r\n data () {\r\n return {\r\n data:null,\r\n model:null,\r\n json_datas:null,\r\n showview:false,\r\n\r\n showcontract: false, // 补充协议\r\n showinfee: false, // 报建收费\r\n showprestorefee: false, // 开发商预存报建收费\r\n showstop: false, // 终止报建\r\n showbill: false, // 打印票据\r\n showpreparation: false, // 预付款\r\n }\r\n },\r\n methods: {\r\n // 预付款\r\n preparation(){\r\n this.$parent.$refs.installselect.clifun(this.selectdata)\r\n this.$parent.$refs.installselect.clifun(this.selectdata)\r\n // this.selectdata = row\r\n this.$parent.clishow= true\r\n this.$parent.show = false\r\n\r\n this.showview = false\r\n this.showinfee = false\r\n this.showprestorefee = false\r\n this.showupfee = false\r\n this.showreducefee = false\r\n this.showstop = false\r\n this.showcontract = false\r\n this.showbill = false\r\n this.showpreparation = true\r\n },\r\n // 票据打印\r\n bill(){\r\n this.$parent.$refs.installselect.clifun(this.selectdata)\r\n // this.selectdata = row\r\n this.$parent.clishow= true\r\n this.$parent.show = false\r\n\r\n this.showview = false\r\n this.showinfee = false\r\n this.showprestorefee = false\r\n this.showupfee = false\r\n this.showreducefee = false\r\n this.showstop = false\r\n this.showcontract = false\r\n this.showpreparation = false\r\n this.showbill = true\r\n },\r\n // 补充合同\r\n contract() {\r\n this.$parent.$refs.installselect.clifun(this.selectdata)\r\n // this.selectdata = row\r\n this.$parent.clishow= true\r\n this.$parent.show = false\r\n\r\n this.showview = false\r\n this.showinfee = false\r\n this.showprestorefee = false\r\n this.showupfee = false\r\n this.showreducefee = false\r\n this.showstop = false\r\n this.showbill = false\r\n this.showpreparation = false\r\n this.showcontract = true\r\n },\r\n // 收费\r\n instalfee(str) {\r\n this.$parent.$refs.installselect.clifun(this.selectdata)\r\n // this.selectdata = row\r\n this.$parent.clishow= true\r\n this.$parent.show = false\r\n\r\n this.showview = false\r\n this.showupfee = false\r\n this.showreducefee = false\r\n this.showstop = false\r\n this.showcontract = false\r\n this.showbill = false\r\n this.showpreparation = false\r\n this.showprestorefee = false\r\n this.showinfee = false\r\n // 采用开发商预付款方式收费\r\n if(str==='预付扣款'){\r\n this.showprestorefee = true\r\n }else {\r\n this.showinfee = true\r\n }\r\n },\r\n // 终止报建\r\n stopInstall() {\r\n this.$parent.$refs.installselect.clifun(this.selectdata)\r\n // this.selectdata = row\r\n this.$parent.clishow= true\r\n this.$parent.show = false\r\n\r\n this.showview = false\r\n this.showbill = false\r\n this.showinfee = false\r\n this.showprestorefee = false\r\n this.showupfee = false\r\n this.showreducefee = false\r\n this.showcontract = false\r\n this.showpreparation = false\r\n this.showstop = true\r\n },\r\n\r\n\r\n\r\n // json配置数据处理 比如下拉框的options\r\n initializtion() {\r\n // selectdata 填充 data\r\n this.data=Object.assign({},this.data,this.selectdata)\r\n for(let i=0;i<this.data.fields.length;i++){\r\n if(this.selectdata[this.data.fields[i].field]){\r\n this.data.fields[i].value = this.selectdata[this.data.fields[i].field]\r\n }\r\n // 如果配置类型为select,获取options\r\n if(this.data.fields[i].type==='select'){\r\n this.data.fields[i].options=this.$appdata.getParam(this.data.fields[i].label)\r\n }\r\n }\r\n },\r\n hasChange(){\r\n if(this.funcdata.fields){\r\n this.data = this.funcdata\r\n // 初始化要展示的数据结构\r\n this.initializtion()\r\n this.$parent.clishow= true\r\n this.$parent.show = false\r\n\r\n this.showview = true\r\n this.showbill = false\r\n this.showinfee = false\r\n this.showprestorefee = false\r\n this.showcontract = false\r\n this.showpreparation = false\r\n this.showstop = false\r\n }else{\r\n if(this.funcdata.title==='终止报建'){\r\n this.stopInstall()\r\n }\r\n if(this.funcdata.title==='预付扣款'){\r\n this.instalfee('预付扣款')\r\n }\r\n if(this.funcdata.title==='报建收费'){\r\n this.instalfee()\r\n }\r\n if(this.funcdata.title==='打印票据'){\r\n this.bill()\r\n }\r\n if(this.funcdata.title==='补充协议'){\r\n this.contract()\r\n }\r\n if(this.funcdata.title==='预付款'){\r\n this.preparation()\r\n }\r\n }\r\n }\r\n },\r\n events: {\r\n // 任意select选中时触发事件\r\n 'select_cascade'(index){\r\n // 级联操作示例:\r\n /*\r\n if(this.data.activitys.ields[index].label==='报建类型'){\r\n for(let i=0;i<this.data.activitys.fields.length;i++){\r\n // 控制设置级联\r\n // 源select所选的值 this.data.activitys.fields[index].value\r\n if(this.data.activitys.fields[i].label==='级联测试2'){\r\n this.data.activitys.fields[i].options=[\r\n {label:'级联选项1',value:'级联选项1'},{label:'级联选项2',value:'级联选项2'},{label:'级联选项3',value:'级联选项3'}\r\n ]\r\n }\r\n }\r\n }\r\n */\r\n },\r\n // 获取view层button事件\r\n async 'button'(model){\r\n console.log(\"button事件接收参数:\",model)\r\n model=Object.assign({},this.selectdata,model)\r\n // 下发,提交,保存,退回都在后台处理\r\n let http = new HttpResetClass();\r\n let res = await http.load('POST','rs/logic/ApplyProductFunctionService',{data:{tables:this.funcdata.tables,model:model,loginUser:this.$login.f}}, {resolveMsg: null, rejectMsg: '数据保存失败'})\r\n console.log(\"service处理完成返回数据:\",JSON.stringify(res.data))\r\n if(res.code=200){\r\n this.$dispatch('hiddenbtn')\r\n this.showview= false\r\n }else{\r\n throw res.data.msg\r\n }\r\n }\r\n },\r\n watch:{\r\n 'funcdata'() {\r\n this.hasChange()\r\n },\r\n 'selectdata'() {\r\n this.hasChange()\r\n },\r\n deep:true\r\n }\r\n }\r\n</script>\r\n\n\n\n// WEBPACK FOOTER //\n// FunctionServiceControl.vue?56309536","module.exports = \" <div> <service-view :data=data v-if=showview></service-view> <installfee :infee=selectdata v-if=showinfee></installfee> <preparationfee :selectdata=selectdata v-if=showpreparation></preparationfee> <prestorefee :infee=selectdata v-if=showprestorefee v-ref:prestorefee></prestorefee> <addcontract :addcontract=selectdata v-if=showcontract></addcontract> <stop-install :stopapply=selectdata v-if=showstop></stop-install> </div> \";\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./~/vue-html-loader!./~/vue-loader/lib/selector.js?type=template&index=0!./src/components/product/Function/Service/FunctionServiceControl.vue\n// module id = 741\n// module chunks = 66","var __vue_script__, __vue_template__\nvar __vue_styles__ = {}\n__vue_script__ = require(\"!!babel-loader?presets[]=es2015&plugins[]=transform-runtime&comments=false!../../../../../node_modules/vue-loader/lib/selector.js?type=script&index=0!./FunctionServiceControl.vue\")\n__vue_template__ = require(\"!!vue-html-loader!../../../../../node_modules/vue-loader/lib/selector.js?type=template&index=0!./FunctionServiceControl.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/Service/FunctionServiceControl.vue\n// module id = 915\n// module chunks = 66"],"sourceRoot":""}
@@ -1,2 +0,0 @@
1
- webpackJsonp([67],{363:function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n=o(3);t.default={title:"报建业务信息",data:function(){return{usertype:this.$appdata.getParam("用户类型"),defnameType:this.$appdata.getParam("流程状态"),applytype:this.$appdata.getParam("报建类型"),fapplytype:this.$appdata.getParam("用户类型"),showbtn:!1,model:new n.PagedList("rs/sql/checkuser",20,{data:{id:this.$login.f.id,fengongsi:this.$login.f.f_fengongsi}}),condition:""}},ready:function(){this.$refs.cp.$refs.cri.search()},methods:{clifun:function(e){this.$refs.cp.$refs.grid.model.rows=[e],this.$refs.cp.pager=!1,this.$dispatch("showbtn",e)},showpager:function(){this.$refs.cp.pager=!0,this.$dispatch("hiddenbtn")}}}},740:function(e,t){e.exports=' <div class="d1 flex"> <div class="left col-sm-12"> <criteria-paged :model=model v-ref:cp> <criteria partial=criteria @condition-changed=search v-ref:cri> <form novalidate class="" partial> <div class=col-sm-10> <div class=col-sm-2> <div class=col-sm-11> <input type=text class=form-control v-model=model.f_user_name v-on:keyup.enter=search condition="f_user_name like \'{}%\'" placeholder=用户姓名> </div> </div> <div class=col-sm-2> <div class=col-sm-11> <input type=text class=form-control v-model=model.f_apply_num v-on:keyup.enter=search condition="f_apply_num like \'{}%\'" placeholder=报建编号> </div> </div> <div class=col-sm-2> <div class=col-sm-11> <input type=text class=form-control v-model=model.f_residential_area v-on:keyup.enter=search condition="f_residential_area like \'{}%\'" placeholder=小区> </div> </div> <div class=col-sm-2> <div class=col-sm-11 v-if="this.$login.f.f_fengongsi.includes(\'中燃\')"> <v-select :options=$parent.$parent.fapplytype placeholder=用户类型 condition="f_user_type like \'{}%\'" v-model=model.f_apply_type :value.sync=model.f_apply_type close-on-select> </v-select> </div> <div class=col-sm-11 v-else> <v-select :options=$parent.$parent.usertype placeholder=用户类型 condition="f_user_type like \'{}%\'" v-model=model.f_user_type :value.sync=model.f_user_type close-on-select> </v-select> </div> </div> <div class=col-sm-2> <div class=col-sm-12> <v-select :options=$parent.$parent.defnameType placeholder=流程状态 condition="act.defname like \'%{}%\'" v-model=model.defname :value.sync=model.defname close-on-select> </v-select> </div> </div> <div class=col-sm-2> <div class=col-sm-12 v-if="!this.$login.f.f_fengongsi.includes(\'中燃\')"> <v-select :options=$parent.$parent.applytype placeholder=报建类型 condition="f_apply_type like \'{}%\'" v-model=model.f_apply_type :value.sync=model.f_apply_type close-on-select> </v-select> </div> </div> </div> <div class=col-sm-2> <center> <div class="col-sm-10 pull-right"> <button class="btn btn-primary btn-sm" type=button @click=search(),$parent.$parent.showpager()> <span class="glyphicon glyphicon-search"></span>查询</button> </div> </center> </div> </form> </criteria> <data-grid :model=model partial=list v-ref:grid class=data-grid is-fixed=false style=overflow-x:auto> <template partial=head> <tr class=title> <th> <nobr>序号</nobr> </th> <th> <nobr>当前状态</nobr> </th> <th> <nobr>用户姓名</nobr> </th> <th> <nobr>小区</nobr> </th> <th v-if="!this.$login.f.f_fengongsi.includes(\'中燃\')"> <nobr>用户类型</nobr> </th> <th> <nobr>流程状态</nobr> </th> <th> <nobr>报建日期</nobr> </th> <th> <nobr>申请户数</nobr> </th> <th> <nobr>操作</nobr> </th> </tr> </template> <template partial=body> <tr> <td style="text-align: center"> <nobr>{{$index+1}}</nobr> </td> <td style="text-align: center"> <nobr>{{row.defname}}</nobr> </td> <td style="text-align: center"> <nobr>{{row.f_user_name}}</nobr> </td> <td style="text-align: center"> <nobr>{{row.f_residential_area}}</nobr> </td> <td style="text-align: center" v-if="!this.$login.f.f_fengongsi.includes(\'中燃\')"> <nobr>{{row.f_user_type}}</nobr> </td> <td style="text-align: center"> <nobr>{{row.defname}}</nobr> </td> <td style="text-align: center"> <nobr>{{row.f_apply_date}}</nobr> </td> <td style="text-align: center"> <nobr>{{row.f_apply_count}}</nobr> </td> <td style="text-align: center"> <dropdown v-if="row.defname != \'完工\'"> <button type=button data-toggle=dropdown style="border: 0px;background: none"> <span class="glyphicon glyphicon-th-list" style="position: inherit"></span> </button> <ul slot=dropdown-menu class="dropdown-menu dropdown-menu-right"> <li v-for="(index,func) in $function_vue.functions"> <a href=# @click="$dispatch(\'func\',func,row)">{{func.title}}</a> </li> </ul> </dropdown> </td> </tr> </template> </data-grid> </criteria-paged> </div> </div> '},914:function(e,t,o){var n,s,l={};n=o(363),s=o(740),e.exports=n||{},e.exports.__esModule&&(e.exports=e.exports.default);var i="function"==typeof e.exports?e.exports.options||(e.exports.options={}):e.exports;s&&(i.template=s),i.computed||(i.computed={}),Object.keys(l).forEach(function(e){var t=l[e];i.computed[e]=function(){return t}})}});
2
- //# sourceMappingURL=67.js.map
@@ -1 +0,0 @@
1
- {"version":3,"sources":["webpack:///67.js","webpack:///InstallInfoSelect.vue","webpack:///./src/components/product/Function/InstallInfoSelect.vue?f6de","webpack:///./src/components/product/Function/InstallInfoSelect.vue"],"names":["webpackJsonp","363","module","exports","__webpack_require__","Object","defineProperty","value","_vueClient","default","title","data","usertype","this","$appdata","getParam","defnameType","applytype","fapplytype","showbtn","model","PagedList","id","$login","f","fengongsi","f_fengongsi","condition","ready","$refs","cp","cri","search","methods","clifun","row","grid","rows","pager","$dispatch","showpager","740","914","__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,SCiJTC,MAAA,SACAC,KAFA,WAGA,OACAC,SAAAC,KAAAC,SAAAC,SAAA,QACAC,YAAAH,KAAAC,SAAAC,SAAA,QACAE,UAAAJ,KAAAC,SAAAC,SAAA,QAEAG,WAAAL,KAAAC,SAAAC,SAAA,QACAI,SAAA,EACAC,MAAA,GAAAZ,GAAAa,UAAA,uBACAV,MACAW,GAAAT,KAAAU,OAAAC,EAAAF,GACAG,UAAAZ,KAAAU,OAAAC,EAAAE,eAGAC,UAAA,KAGAC,MAnBA,WAoBAf,KAAAgB,MAAAC,GAAAD,MAAAE,IAAAC,UAEAC,SACAC,OADA,SACAC,GACAtB,KAAAgB,MAAAC,GAAAD,MAAAO,KAAAhB,MAAAiB,MAAAF,GACAtB,KAAAgB,MAAAC,GAAAQ,OAAA,EACAzB,KAAA0B,UAAA,UAAAJ,IAEAK,UANA,WAOA3B,KAAAgB,MAAAC,GAAAQ,OAAA,EACAzB,KAAA0B,UAAA,iBDxIME,IACA,SAAUvC,EAAQC,GEpDxBD,EAAAC,QAAA,wrHF0DMuC,IACA,SAAUxC,EAAQC,EAASC,GG3DjC,GAAAuC,GAAAC,EACAC,IACAF,GAAAvC,EAAA,KACAwC,EAAAxC,EAAA,KACAF,EAAAC,QAAAwC,MACAzC,EAAAC,QAAA2C,aAAA5C,EAAAC,QAAAD,EAAAC,QAAAM,QACA,IAAAsC,GAAA,kBAAA7C,GAAAC,QAAAD,EAAAC,QAAA6C,UAAA9C,EAAAC,QAAA6C,YAAoH9C,EAAAC,OACpHyC,KACAG,EAAAE,SAAAL,GAEAG,EAAAG,WAAAH,EAAAG,aACA7C,OAAA8C,KAAAN,GAAAO,QAAA,SAAAC,GACA,GAAAnD,GAAA2C,EAAAQ,EACAN,GAAAG,SAAAG,GAAA,WAA6C,MAAAnD","file":"67.js","sourcesContent":["webpackJsonp([67],{\n\n/***/ 363:\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 usertype: this.$appdata.getParam('用户类型'),\n\t defnameType: this.$appdata.getParam('流程状态'),\n\t applytype: this.$appdata.getParam('报建类型'),\n\t\n\t fapplytype: this.$appdata.getParam('用户类型'),\n\t showbtn: false,\n\t model: new _vueClient.PagedList('rs/sql/checkuser', 20, {\n\t data: {\n\t id: this.$login.f.id,\n\t fengongsi: this.$login.f.f_fengongsi\n\t }\n\t }),\n\t condition: ''\n\t };\n\t },\n\t ready: function ready() {\n\t this.$refs.cp.$refs.cri.search();\n\t },\n\t\n\t methods: {\n\t clifun: function clifun(row) {\n\t this.$refs.cp.$refs.grid.model.rows = [row];\n\t this.$refs.cp.pager = false;\n\t this.$dispatch('showbtn', row);\n\t },\n\t showpager: function showpager() {\n\t this.$refs.cp.pager = true;\n\t this.$dispatch('hiddenbtn');\n\t }\n\t }\n\t};\n\n/***/ }),\n\n/***/ 740:\n/***/ (function(module, exports) {\n\n\tmodule.exports = \" <div class=\\\"d1 flex\\\"> <div class=\\\"left col-sm-12\\\"> <criteria-paged :model=model v-ref:cp> <criteria partial=criteria @condition-changed=search v-ref:cri> <form novalidate class=\\\"\\\" partial> <div class=col-sm-10> <div class=col-sm-2> <div class=col-sm-11> <input type=text class=form-control v-model=model.f_user_name v-on:keyup.enter=search condition=\\\"f_user_name like '{}%'\\\" placeholder=用户姓名> </div> </div> <div class=col-sm-2> <div class=col-sm-11> <input type=text class=form-control v-model=model.f_apply_num v-on:keyup.enter=search condition=\\\"f_apply_num like '{}%'\\\" placeholder=报建编号> </div> </div> <div class=col-sm-2> <div class=col-sm-11> <input type=text class=form-control v-model=model.f_residential_area v-on:keyup.enter=search condition=\\\"f_residential_area like '{}%'\\\" placeholder=小区> </div> </div> <div class=col-sm-2> <div class=col-sm-11 v-if=\\\"this.$login.f.f_fengongsi.includes('中燃')\\\"> <v-select :options=$parent.$parent.fapplytype placeholder=用户类型 condition=\\\"f_user_type like '{}%'\\\" v-model=model.f_apply_type :value.sync=model.f_apply_type close-on-select> </v-select> </div> <div class=col-sm-11 v-else> <v-select :options=$parent.$parent.usertype placeholder=用户类型 condition=\\\"f_user_type like '{}%'\\\" v-model=model.f_user_type :value.sync=model.f_user_type close-on-select> </v-select> </div> </div> <div class=col-sm-2> <div class=col-sm-12> <v-select :options=$parent.$parent.defnameType placeholder=流程状态 condition=\\\"act.defname like '%{}%'\\\" v-model=model.defname :value.sync=model.defname close-on-select> </v-select> </div> </div> <div class=col-sm-2> <div class=col-sm-12 v-if=\\\"!this.$login.f.f_fengongsi.includes('中燃')\\\"> <v-select :options=$parent.$parent.applytype placeholder=报建类型 condition=\\\"f_apply_type like '{}%'\\\" v-model=model.f_apply_type :value.sync=model.f_apply_type close-on-select> </v-select> </div> </div> </div> <div class=col-sm-2> <center> <div class=\\\"col-sm-10 pull-right\\\"> <button class=\\\"btn btn-primary btn-sm\\\" type=button @click=search(),$parent.$parent.showpager()> <span class=\\\"glyphicon glyphicon-search\\\"></span>查询</button> </div> </center> </div> </form> </criteria> <data-grid :model=model partial=list v-ref:grid class=data-grid is-fixed=false style=overflow-x:auto> <template partial=head> <tr class=title> <th> <nobr>序号</nobr> </th> <th> <nobr>当前状态</nobr> </th> <th> <nobr>用户姓名</nobr> </th> <th> <nobr>小区</nobr> </th> <th v-if=\\\"!this.$login.f.f_fengongsi.includes('中燃')\\\"> <nobr>用户类型</nobr> </th> <th> <nobr>流程状态</nobr> </th> <th> <nobr>报建日期</nobr> </th> <th> <nobr>申请户数</nobr> </th> <th> <nobr>操作</nobr> </th> </tr> </template> <template partial=body> <tr> <td style=\\\"text-align: center\\\"> <nobr>{{$index+1}}</nobr> </td> <td style=\\\"text-align: center\\\"> <nobr>{{row.defname}}</nobr> </td> <td style=\\\"text-align: center\\\"> <nobr>{{row.f_user_name}}</nobr> </td> <td style=\\\"text-align: center\\\"> <nobr>{{row.f_residential_area}}</nobr> </td> <td style=\\\"text-align: center\\\" v-if=\\\"!this.$login.f.f_fengongsi.includes('中燃')\\\"> <nobr>{{row.f_user_type}}</nobr> </td> <td style=\\\"text-align: center\\\"> <nobr>{{row.defname}}</nobr> </td> <td style=\\\"text-align: center\\\"> <nobr>{{row.f_apply_date}}</nobr> </td> <td style=\\\"text-align: center\\\"> <nobr>{{row.f_apply_count}}</nobr> </td> <td style=\\\"text-align: center\\\"> <dropdown v-if=\\\"row.defname != '完工'\\\"> <button type=button data-toggle=dropdown style=\\\"border: 0px;background: none\\\"> <span class=\\\"glyphicon glyphicon-th-list\\\" style=\\\"position: inherit\\\"></span> </button> <ul slot=dropdown-menu class=\\\"dropdown-menu dropdown-menu-right\\\"> <li v-for=\\\"(index,func) in $function_vue.functions\\\"> <a href=# @click=\\\"$dispatch('func',func,row)\\\">{{func.title}}</a> </li> </ul> </dropdown> </td> </tr> </template> </data-grid> </criteria-paged> </div> </div> \";\n\n/***/ }),\n\n/***/ 914:\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar __vue_script__, __vue_template__\n\tvar __vue_styles__ = {}\n\t__vue_script__ = __webpack_require__(363)\n\t__vue_template__ = __webpack_require__(740)\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// 67.js","<template>\r\n <div class=\"d1 flex\">\r\n <div class=\"left col-sm-12\">\r\n <criteria-paged :model=\"model\" v-ref:cp>\r\n <criteria partial='criteria' @condition-changed='search' v-ref:cri>\r\n <form novalidate class=\"\" partial>\r\n <div class=\"col-sm-10\">\r\n <div class=\"col-sm-2\">\r\n <div class=\"col-sm-11\">\r\n <input type=\"text\" class=\"form-control\" v-model=\"model.f_user_name\" v-on:keyup.enter=\"search\"\r\n condition=\"f_user_name like '{}%'\" placeholder=\"用户姓名\">\r\n </div>\r\n </div>\r\n <div class=\"col-sm-2\">\r\n <div class=\"col-sm-11\">\r\n <input type=\"text\" class=\"form-control\" v-model=\"model.f_apply_num\" v-on:keyup.enter=\"search\"\r\n condition=\"f_apply_num like '{}%'\" placeholder=\"报建编号\">\r\n </div>\r\n </div>\r\n <!-- <div class=\"col-sm-2\">\r\n <label for=\"f_user_name\" class=\"col-sm-6\"><nobr> 地址:</nobr></label>\r\n <div class=\"col-sm-6\">\r\n <input type=\"text\" class=\"form-control\" v-model=\"model.f_address\" v-on:keyup.enter=\"search\"\r\n condition=\"f_address like '{}%'\" >\r\n </div>\r\n </div> -->\r\n <div class=\"col-sm-2\">\r\n <!--<label for=\"f_user_name\" class=\"col-sm-6\"><nobr> 小区:</nobr></label>-->\r\n <div class=\"col-sm-11\">\r\n <input type=\"text\" class=\"form-control\" v-model=\"model.f_residential_area\" v-on:keyup.enter=\"search\"\r\n condition=\"f_residential_area like '{}%'\" placeholder=\"小区\">\r\n </div>\r\n </div>\r\n <div class=\"col-sm-2\">\r\n <!--<label for=\"f_user_name\" class=\"col-sm-6\"><nobr> 用户类型:</nobr></label>-->\r\n <div class=\"col-sm-11\" v-if=\"this.$login.f.f_fengongsi.includes('中燃')\">\r\n <v-select :options=\"$parent.$parent.fapplytype\" placeholder='用户类型' condition=\"f_user_type like '{}%'\"\r\n v-model=\"model.f_apply_type\" :value.sync=\"model.f_apply_type\" close-on-select>\r\n </v-select>\r\n </div>\r\n <div class=\"col-sm-11\" v-else>\r\n <v-select :options=\"$parent.$parent.usertype\" placeholder='用户类型' condition=\"f_user_type like '{}%'\"\r\n v-model=\"model.f_user_type\" :value.sync=\"model.f_user_type\" close-on-select>\r\n </v-select>\r\n </div>\r\n </div>\r\n <div class=\"col-sm-2\">\r\n <!--<label for=\"f_user_type\" class=\"col-sm-6\"><nobr> 流程状态:</nobr></label>-->\r\n <div class=\"col-sm-12\">\r\n <v-select :options=\"$parent.$parent.defnameType\" placeholder='流程状态'\r\n condition=\"act.defname like '%{}%'\"\r\n v-model=\"model.defname\" :value.sync=\"model.defname\" close-on-select>\r\n </v-select>\r\n </div>\r\n </div>\r\n <div class=\"col-sm-2\">\r\n <!--<label for=\"f_user_name\" class=\"col-sm-6\"><nobr> 报建类型:</nobr></label>-->\r\n <div class=\"col-sm-12\" v-if=\"!this.$login.f.f_fengongsi.includes('中燃')\">\r\n <v-select :options=\"$parent.$parent.applytype\" placeholder='报建类型' condition=\"f_apply_type like '{}%'\"\r\n v-model=\"model.f_apply_type\" :value.sync=\"model.f_apply_type\" close-on-select>\r\n </v-select>\r\n </div>\r\n </div>\r\n </div>\r\n\r\n <div class=\"col-sm-2\">\r\n <center>\r\n <div class=\"col-sm-10 pull-right\">\r\n <button class=\"btn btn-primary btn-sm\" type=\"button\" @click=\"search(),$parent.$parent.showpager()\">\r\n <span class=\"glyphicon glyphicon-search\"></span>查询</button>\r\n </div>\r\n </center>\r\n </div>\r\n </form>\r\n </criteria>\r\n <data-grid :model=\"model\" partial='list' v-ref:grid class=\"data-grid\" is-fixed='false' style=\"overflow-x:auto\">\r\n <template partial='head'>\r\n <tr class=\"title\">\r\n <th>\r\n <nobr>序号</nobr>\r\n </th>\r\n <th>\r\n <nobr>当前状态</nobr>\r\n </th>\r\n <th>\r\n <nobr>用户姓名</nobr>\r\n </th>\r\n <th>\r\n <nobr>小区</nobr>\r\n </th>\r\n <th v-if=\"!this.$login.f.f_fengongsi.includes('中燃')\">\r\n <nobr>用户类型</nobr>\r\n </th>\r\n <th>\r\n <nobr>流程状态</nobr>\r\n </th>\r\n <th>\r\n <nobr>报建日期</nobr>\r\n </th>\r\n <th>\r\n <nobr>申请户数</nobr>\r\n </th>\r\n <th>\r\n <nobr>操作</nobr>\r\n </th>\r\n </tr>\r\n </template>\r\n <template partial='body'>\r\n <tr>\r\n <td style=\"text-align: center;\">\r\n <nobr>{{$index+1}}</nobr>\r\n </td>\r\n <td style=\"text-align: center;\">\r\n <nobr>{{row.defname}}</nobr>\r\n </td>\r\n <td style=\"text-align: center;\">\r\n <nobr>{{row.f_user_name}}</nobr>\r\n </td>\r\n <td style=\"text-align: center;\">\r\n <nobr>{{row.f_residential_area}}</nobr>\r\n </td>\r\n <td style=\"text-align: center;\" v-if=\"!this.$login.f.f_fengongsi.includes('中燃')\">\r\n <nobr>{{row.f_user_type}}</nobr>\r\n </td>\r\n <td style=\"text-align: center;\">\r\n <nobr>{{row.defname}}</nobr>\r\n </td>\r\n <td style=\"text-align: center;\">\r\n <nobr>{{row.f_apply_date}}</nobr>\r\n </td>\r\n <td style=\"text-align: center;\">\r\n <nobr>{{row.f_apply_count}}</nobr>\r\n </td>\r\n <td style=\"text-align: center;\">\r\n <dropdown v-if=\"row.defname != '完工'\">\r\n <button type=\"button\" data-toggle=\"dropdown\" style=\"border: 0px;background: none;\">\r\n <span class=\"glyphicon glyphicon-th-list\" style=\"position: inherit;\"></span>\r\n </button>\r\n <ul slot=\"dropdown-menu\" class=\"dropdown-menu dropdown-menu-right\">\r\n <li v-for=\"(index,func) in $function_vue.functions\">\r\n <a href=\"#\" @click=\"$dispatch('func',func,row)\">{{func.title}}</a>\r\n </li>\r\n </ul>\r\n </dropdown>\r\n </td>\r\n </tr>\r\n </template>\r\n </data-grid>\r\n </criteria-paged>\r\n </div>\r\n </div>\r\n</template>\r\n<script>\r\n import {\r\n PagedList\r\n } from 'vue-client'\r\n\r\n export default {\r\n title: '报建业务信息',\r\n data() {\r\n return {\r\n usertype: this.$appdata.getParam('用户类型'),\r\n defnameType: this.$appdata.getParam('流程状态'),\r\n applytype: this.$appdata.getParam('报建类型'),\r\n //中燃 专用\r\n fapplytype: this.$appdata.getParam('用户类型'),\r\n showbtn: false,\r\n model: new PagedList('rs/sql/checkuser', 20, {\r\n data: {\r\n id: this.$login.f.id,\r\n fengongsi: this.$login.f.f_fengongsi\r\n }\r\n }),\r\n condition: ''\r\n }\r\n },\r\n ready() {\r\n this.$refs.cp.$refs.cri.search()\r\n },\r\n methods: {\r\n clifun(row) {\r\n this.$refs.cp.$refs.grid.model.rows = [row]\r\n this.$refs.cp.pager = false\r\n this.$dispatch('showbtn', row)\r\n },\r\n showpager() {\r\n this.$refs.cp.pager = true\r\n this.$dispatch('hiddenbtn')\r\n }\r\n }\r\n }\r\n</script>\r\n\n\n\n// WEBPACK FOOTER //\n// InstallInfoSelect.vue?ae4a9332","module.exports = \" <div class=\\\"d1 flex\\\"> <div class=\\\"left col-sm-12\\\"> <criteria-paged :model=model v-ref:cp> <criteria partial=criteria @condition-changed=search v-ref:cri> <form novalidate class=\\\"\\\" partial> <div class=col-sm-10> <div class=col-sm-2> <div class=col-sm-11> <input type=text class=form-control v-model=model.f_user_name v-on:keyup.enter=search condition=\\\"f_user_name like '{}%'\\\" placeholder=用户姓名> </div> </div> <div class=col-sm-2> <div class=col-sm-11> <input type=text class=form-control v-model=model.f_apply_num v-on:keyup.enter=search condition=\\\"f_apply_num like '{}%'\\\" placeholder=报建编号> </div> </div> <div class=col-sm-2> <div class=col-sm-11> <input type=text class=form-control v-model=model.f_residential_area v-on:keyup.enter=search condition=\\\"f_residential_area like '{}%'\\\" placeholder=小区> </div> </div> <div class=col-sm-2> <div class=col-sm-11 v-if=\\\"this.$login.f.f_fengongsi.includes('中燃')\\\"> <v-select :options=$parent.$parent.fapplytype placeholder=用户类型 condition=\\\"f_user_type like '{}%'\\\" v-model=model.f_apply_type :value.sync=model.f_apply_type close-on-select> </v-select> </div> <div class=col-sm-11 v-else> <v-select :options=$parent.$parent.usertype placeholder=用户类型 condition=\\\"f_user_type like '{}%'\\\" v-model=model.f_user_type :value.sync=model.f_user_type close-on-select> </v-select> </div> </div> <div class=col-sm-2> <div class=col-sm-12> <v-select :options=$parent.$parent.defnameType placeholder=流程状态 condition=\\\"act.defname like '%{}%'\\\" v-model=model.defname :value.sync=model.defname close-on-select> </v-select> </div> </div> <div class=col-sm-2> <div class=col-sm-12 v-if=\\\"!this.$login.f.f_fengongsi.includes('中燃')\\\"> <v-select :options=$parent.$parent.applytype placeholder=报建类型 condition=\\\"f_apply_type like '{}%'\\\" v-model=model.f_apply_type :value.sync=model.f_apply_type close-on-select> </v-select> </div> </div> </div> <div class=col-sm-2> <center> <div class=\\\"col-sm-10 pull-right\\\"> <button class=\\\"btn btn-primary btn-sm\\\" type=button @click=search(),$parent.$parent.showpager()> <span class=\\\"glyphicon glyphicon-search\\\"></span>查询</button> </div> </center> </div> </form> </criteria> <data-grid :model=model partial=list v-ref:grid class=data-grid is-fixed=false style=overflow-x:auto> <template partial=head> <tr class=title> <th> <nobr>序号</nobr> </th> <th> <nobr>当前状态</nobr> </th> <th> <nobr>用户姓名</nobr> </th> <th> <nobr>小区</nobr> </th> <th v-if=\\\"!this.$login.f.f_fengongsi.includes('中燃')\\\"> <nobr>用户类型</nobr> </th> <th> <nobr>流程状态</nobr> </th> <th> <nobr>报建日期</nobr> </th> <th> <nobr>申请户数</nobr> </th> <th> <nobr>操作</nobr> </th> </tr> </template> <template partial=body> <tr> <td style=\\\"text-align: center\\\"> <nobr>{{$index+1}}</nobr> </td> <td style=\\\"text-align: center\\\"> <nobr>{{row.defname}}</nobr> </td> <td style=\\\"text-align: center\\\"> <nobr>{{row.f_user_name}}</nobr> </td> <td style=\\\"text-align: center\\\"> <nobr>{{row.f_residential_area}}</nobr> </td> <td style=\\\"text-align: center\\\" v-if=\\\"!this.$login.f.f_fengongsi.includes('中燃')\\\"> <nobr>{{row.f_user_type}}</nobr> </td> <td style=\\\"text-align: center\\\"> <nobr>{{row.defname}}</nobr> </td> <td style=\\\"text-align: center\\\"> <nobr>{{row.f_apply_date}}</nobr> </td> <td style=\\\"text-align: center\\\"> <nobr>{{row.f_apply_count}}</nobr> </td> <td style=\\\"text-align: center\\\"> <dropdown v-if=\\\"row.defname != '完工'\\\"> <button type=button data-toggle=dropdown style=\\\"border: 0px;background: none\\\"> <span class=\\\"glyphicon glyphicon-th-list\\\" style=\\\"position: inherit\\\"></span> </button> <ul slot=dropdown-menu class=\\\"dropdown-menu dropdown-menu-right\\\"> <li v-for=\\\"(index,func) in $function_vue.functions\\\"> <a href=# @click=\\\"$dispatch('func',func,row)\\\">{{func.title}}</a> </li> </ul> </dropdown> </td> </tr> </template> </data-grid> </criteria-paged> </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/InstallInfoSelect.vue\n// module id = 740\n// module chunks = 67","var __vue_script__, __vue_template__\nvar __vue_styles__ = {}\n__vue_script__ = require(\"!!babel-loader?presets[]=es2015&plugins[]=transform-runtime&comments=false!../../../../node_modules/vue-loader/lib/selector.js?type=script&index=0!./InstallInfoSelect.vue\")\n__vue_template__ = require(\"!!vue-html-loader!../../../../node_modules/vue-loader/lib/selector.js?type=template&index=0!./InstallInfoSelect.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/InstallInfoSelect.vue\n// module id = 914\n// module chunks = 67"],"sourceRoot":""}
@@ -1,2 +0,0 @@
1
- webpackJsonp([68],{362:function(t,e,r){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var o=r(3);e.default={title:"报建业务信息1",data:function(){return{showbtn:!1,model:new o.PagedList("rs/sql/checkuser",9,{data:{id:this.$login.f.id,fengongsi:this.$login.f.f_fengongsi,uid:"3"}})}},ready:function(){this.$refs.cp.$refs.cri.search(),this.$refs.cp.pager=!1},methods:{clifun:function(t){this.$dispatch("showline",t)}}}},739:function(t,e){t.exports=' <div class="d1 flex"> <div class="left col-sm-12"> <criteria-paged :model=model v-ref:cp> <criteria partial=criteria @condition-changed=search v-ref:cri> <form novalidate class="" partial> </form> </criteria> <data-grid :model=model partial=list v-ref:grid class=data-grid is-fixed=false style=overflow-x:auto> <template partial=body> <tr> <td> <nobr>{{$index+1}}</nobr> </td> <td><nobr>{{row.defname}}</nobr></td> <td><nobr>{{row.f_user_name}}</nobr></td> <td><nobr>{{row.f_residential_area}}</nobr></td> <td><nobr>{{row.f_address}}</nobr></td> <td><nobr>{{row.f_apply_date}}</nobr></td> <td><nobr>{{row.f_apply_count}}</nobr> </td> </tr> </template> </data-grid> </criteria-paged> </div> </div> '},913:function(t,e,r){var o,i,a={};o=r(362),i=r(739),t.exports=o||{},t.exports.__esModule&&(t.exports=t.exports.default);var d="function"==typeof t.exports?t.exports.options||(t.exports.options={}):t.exports;i&&(d.template=i),d.computed||(d.computed={}),Object.keys(a).forEach(function(t){var e=a[t];d.computed[t]=function(){return e}})}});
2
- //# sourceMappingURL=68.js.map
@@ -1 +0,0 @@
1
- {"version":3,"sources":["webpack:///68.js","webpack:///InstallInfoDown.vue","webpack:///./src/components/product/Function/InstallInfoDown.vue?3d6b","webpack:///./src/components/product/Function/InstallInfoDown.vue"],"names":["webpackJsonp","362","module","exports","__webpack_require__","Object","defineProperty","value","_vueClient","default","title","data","showbtn","model","PagedList","id","this","$login","f","fengongsi","f_fengongsi","uid","ready","$refs","cp","cri","search","pager","methods","clifun","row","$dispatch","739","913","__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,SC+CTC,MAAA,UACAC,KAFA,WAGA,OACAC,SAAA,EACAC,MAAA,GAAAL,GAAAM,UAAA,sBAAAH,MAAAI,GAAAC,KAAAC,OAAAC,EAAAH,GAAAI,UAAAH,KAAAC,OAAAC,EAAAE,YAAAC,IAAA,SAGAC,MARA,WASAN,KAAAO,MAAAC,GAAAD,MAAAE,IAAAC,SACAV,KAAAO,MAAAC,GAAAG,OAAA,GAEAC,SACAC,OADA,SACAC,GACAd,KAAAe,UAAA,WAAAD,ODtCME,IACA,SAAU9B,EAAQC,GEpCxBD,EAAAC,QAAA,8rBF0CM8B,IACA,SAAU/B,EAAQC,EAASC,GG3CjC,GAAA8B,GAAAC,EACAC,IACAF,GAAA9B,EAAA,KACA+B,EAAA/B,EAAA,KACAF,EAAAC,QAAA+B,MACAhC,EAAAC,QAAAkC,aAAAnC,EAAAC,QAAAD,EAAAC,QAAAM,QACA,IAAA6B,GAAA,kBAAApC,GAAAC,QAAAD,EAAAC,QAAAoC,UAAArC,EAAAC,QAAAoC,YAAoHrC,EAAAC,OACpHgC,KACAG,EAAAE,SAAAL,GAEAG,EAAAG,WAAAH,EAAAG,aACApC,OAAAqC,KAAAN,GAAAO,QAAA,SAAAC,GACA,GAAA1C,GAAAkC,EAAAQ,EACAN,GAAAG,SAAAG,GAAA,WAA6C,MAAA1C","file":"68.js","sourcesContent":["webpackJsonp([68],{\n\n/***/ 362:\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: '报建业务信息1',\n\t data: function data() {\n\t return {\n\t showbtn: false,\n\t model: new _vueClient.PagedList('rs/sql/checkuser', 9, { data: { id: this.$login.f.id, fengongsi: this.$login.f.f_fengongsi, uid: '3' } })\n\t };\n\t },\n\t ready: function ready() {\n\t this.$refs.cp.$refs.cri.search();\n\t this.$refs.cp.pager = false;\n\t },\n\t\n\t methods: {\n\t clifun: function clifun(row) {\n\t this.$dispatch('showline', row);\n\t }\n\t }\n\t};\n\n/***/ }),\n\n/***/ 739:\n/***/ (function(module, exports) {\n\n\tmodule.exports = \" <div class=\\\"d1 flex\\\"> <div class=\\\"left col-sm-12\\\"> <criteria-paged :model=model v-ref:cp> <criteria partial=criteria @condition-changed=search v-ref:cri> <form novalidate class=\\\"\\\" partial> </form> </criteria> <data-grid :model=model partial=list v-ref:grid class=data-grid is-fixed=false style=overflow-x:auto> <template partial=body> <tr> <td> <nobr>{{$index+1}}</nobr> </td> <td><nobr>{{row.defname}}</nobr></td> <td><nobr>{{row.f_user_name}}</nobr></td> <td><nobr>{{row.f_residential_area}}</nobr></td> <td><nobr>{{row.f_address}}</nobr></td> <td><nobr>{{row.f_apply_date}}</nobr></td> <td><nobr>{{row.f_apply_count}}</nobr> </td> </tr> </template> </data-grid> </criteria-paged> </div> </div> \";\n\n/***/ }),\n\n/***/ 913:\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar __vue_script__, __vue_template__\n\tvar __vue_styles__ = {}\n\t__vue_script__ = __webpack_require__(362)\n\t__vue_template__ = __webpack_require__(739)\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// 68.js","<template>\r\n<div class=\"d1 flex\">\r\n <div class=\"left col-sm-12\">\r\n <criteria-paged :model=\"model\" v-ref:cp>\r\n <criteria partial='criteria' @condition-changed='search' v-ref:cri>\r\n <form novalidate class=\"\" partial >\r\n </form>\r\n </criteria>\r\n <data-grid :model=\"model\" partial='list' v-ref:grid class=\"data-grid\" is-fixed='false' style=\"overflow-x:auto\">\r\n <template partial='body'>\r\n <tr>\r\n <td>\r\n <nobr>{{$index+1}}</nobr>\r\n </td>\r\n <td><nobr>{{row.defname}}</nobr></td>\r\n <td><nobr>{{row.f_user_name}}</nobr></td>\r\n <td><nobr>{{row.f_residential_area}}</nobr></td>\r\n <td><nobr>{{row.f_address}}</nobr></td>\r\n <td><nobr>{{row.f_apply_date}}</nobr></td>\r\n <td><nobr>{{row.f_apply_count}}</nobr> </td>\r\n <!--<td style=\"text-align: center;\">-->\r\n <!--<dropdown v-if=\"row.defname != '完工'\">-->\r\n <!--<button type=\"button\" data-toggle=\"dropdown\" style=\"border: 0px;background: none;\">-->\r\n <!--<span class=\"glyphicon glyphicon-th-list\" style=\"position: inherit;\"></span>-->\r\n <!--</button>-->\r\n <!--<ul slot=\"dropdown-menu\" class=\"dropdown-menu dropdown-menu-right\">-->\r\n <!--<li>-->\r\n <!--<a href=\"#\" @click=\"$parent.$parent.$parent.clifun(row)\">{{row.defname}}</a>-->\r\n <!--</li>-->\r\n <!--<li>-->\r\n <!--<a href=\"#\" @click=\"$parent.$parent.$parent.clifun(row)\">{{row.defname}}</a>-->\r\n <!--</li>-->\r\n <!--<li>-->\r\n <!--<a href=\"#\" @click=\"$parent.$parent.$parent.clifun(row)\">{{row.defname}}</a>-->\r\n <!--</li>-->\r\n <!--<li>-->\r\n <!--<a href=\"#\" @click=\"$parent.$parent.$parent.clifun(row)\">{{row.defname}}</a>-->\r\n <!--</li>-->\r\n <!--</ul>-->\r\n <!--</dropdown>-->\r\n <!--</td>-->\r\n <!--<td style=\"text-align: center;\">-->\r\n <!--<nobr>-->\r\n <!--<button type=\"button\" class=\"btn btn-info\" @click=\"$parent.$parent.$parent.clifun(row)\">-->\r\n <!--功能-->\r\n <!--</button>-->\r\n <!--</nobr>-->\r\n <!--</td>-->\r\n </tr>\r\n </template>\r\n </data-grid>\r\n </criteria-paged>\r\n </div>\r\n</div>\r\n</template>\r\n<script>\r\nimport {\r\n PagedList\r\n} from 'vue-client'\r\nexport default {\r\n title: '报建业务信息1',\r\n data () {\r\n return {\r\n showbtn: false,\r\n model: new PagedList('rs/sql/checkuser', 9, {data:{id: this.$login.f.id, fengongsi: this.$login.f.f_fengongsi, uid: '3'}})\r\n }\r\n },\r\n ready () {\r\n this.$refs.cp.$refs.cri.search()\r\n this.$refs.cp.pager = false\r\n },\r\n methods: {\r\n clifun(row) {\r\n this.$dispatch('showline',row)\r\n }\r\n }\r\n}\r\n</script>\r\n\n\n\n// WEBPACK FOOTER //\n// InstallInfoDown.vue?5b984722","module.exports = \" <div class=\\\"d1 flex\\\"> <div class=\\\"left col-sm-12\\\"> <criteria-paged :model=model v-ref:cp> <criteria partial=criteria @condition-changed=search v-ref:cri> <form novalidate class=\\\"\\\" partial> </form> </criteria> <data-grid :model=model partial=list v-ref:grid class=data-grid is-fixed=false style=overflow-x:auto> <template partial=body> <tr> <td> <nobr>{{$index+1}}</nobr> </td> <td><nobr>{{row.defname}}</nobr></td> <td><nobr>{{row.f_user_name}}</nobr></td> <td><nobr>{{row.f_residential_area}}</nobr></td> <td><nobr>{{row.f_address}}</nobr></td> <td><nobr>{{row.f_apply_date}}</nobr></td> <td><nobr>{{row.f_apply_count}}</nobr> </td> </tr> </template> </data-grid> </criteria-paged> </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/InstallInfoDown.vue\n// module id = 739\n// module chunks = 68","var __vue_script__, __vue_template__\nvar __vue_styles__ = {}\n__vue_script__ = require(\"!!babel-loader?presets[]=es2015&plugins[]=transform-runtime&comments=false!../../../../node_modules/vue-loader/lib/selector.js?type=script&index=0!./InstallInfoDown.vue\")\n__vue_template__ = require(\"!!vue-html-loader!../../../../node_modules/vue-loader/lib/selector.js?type=template&index=0!./InstallInfoDown.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/InstallInfoDown.vue\n// module id = 913\n// module chunks = 68"],"sourceRoot":""}
@@ -1,2 +0,0 @@
1
- webpackJsonp([69],{361:function(t,e,s){"use strict";function i(t){return t&&t.__esModule?t:{default:t}}Object.defineProperty(e,"__esModule",{value:!0});var l=s(6),o=i(l),n=s(1),c=i(n),a=s(3);e.default={title:"报建业务",data:function(){return{funcdata:null,comps:!1,row:null,selectdata:null,show:!1,clishow:!1,showallbtn:!1,leftheight:"100%",totalheight:"100%",footheight:"0%"}},created:function(){var t=new a.HttpResetClass;t.load("POST","rs/logic/ApplyGetConfigs",{data:this.$login.f},{resolveMsg:null,rejectMsg:"获取功能文件失败,请联系开发人员"}).then(function(t){c.default.function_vue=c.default.prototype.$function_vue=t.data.function_vue}),console.log("Vue.$function_vue:"+(0,o.default)(this.$function_vue))},methods:{recordCancel:function(t,e,s){this.leftheight="50%",this.showallbtn=!1,this.show=!1,this.clishow=!1,this.$els.route.style.height="260px",this.row=null,this.comps={name:e,props:{data:s}},this.$refs.route.init(e,{data:s})}},events:{func:function(t,e){this.funcdata=t,this.selectdata=e,this.leftheight="25%",this.totalheight="80%",this.clishow=!0},showbtn:function(t){this.selectdata=t,this.showallbtn=!0,this.leftheight="25%",this.totalheight="80%"},hiddenbtn:function(){this.showallbtn=!1,this.clishow=!1,this.show=!1,this.comps=null,this.leftheight="100%",this.totalheight="100%",this.$refs.installselect.$refs.cp.$refs.cri.search(),this.$refs.card.$refs.paged.$refs.cri.search()},showline:function(t){this.show=!1,this.$refs.installselect.clifun(t)},searchcard:function(){this.$refs.installselect.$refs.cp.$refs.cri.search(),this.$refs.card.$refs.paged.$refs.cri.search()},"list-select-oper":function(){this.leftheight="50%",this.footheight="50%"}}}},738:function(t,e){t.exports=' <div class=full> <div class=flex-row> <div class=flex style="flex: 1" :style="{height: totalheight}"> <div class="flex col-sm-12" :style="{height: leftheight}"> <installinfoselect v-ref:installselect></installinfoselect> </div> <div class="flex col-sm-12" v-if=show style="padding-top: 3px"> <installinfodown v-ref:installdown></installinfodown> </div> <div class=col-sm-12 v-show=clishow> <div class=col-sm-3> <installfeeinfo :infeeinfo=selectdata></installfeeinfo> </div> <div class=col-sm-9> <function-service-control v-ref:fsc :funcdata=funcdata :selectdata=selectdata></function-service-control> </div> </div> <div v-show=comps v-el:route class="flex span select-overspread" style="margin-top: 10px;border: 1px solid #EEF3F6;flex: 0.8"> <route v-ref:route></route> </div> </div> <div style="width: 350px;padding:0px 0px 10px 0px;margin-left: 20px"> <install-apply-cardlist :btns=operatebtn :userinfoid="row ? row.f_userinfo_id : \'\'" @list-select-oper=recordCancel v-ref:card></install-apply-cardlist> </div> </div> </div> '},912:function(t,e,s){var i,l,o={};i=s(361),l=s(738),t.exports=i||{},t.exports.__esModule&&(t.exports=t.exports.default);var n="function"==typeof t.exports?t.exports.options||(t.exports.options={}):t.exports;l&&(n.template=l),n.computed||(n.computed={}),Object.keys(o).forEach(function(t){var e=o[t];n.computed[t]=function(){return e}})}});
2
- //# sourceMappingURL=69.js.map
@@ -1 +0,0 @@
1
- {"version":3,"sources":["webpack:///69.js","webpack:///InstallFunction.vue","webpack:///./src/components/product/Function/InstallFunction.vue?2413","webpack:///./src/components/product/Function/InstallFunction.vue"],"names":["webpackJsonp","361","module","exports","__webpack_require__","_interopRequireDefault","obj","__esModule","default","Object","defineProperty","value","_stringify","_stringify2","_vue","_vue2","_vueClient","title","data","funcdata","comps","row","selectdata","show","clishow","showallbtn","leftheight","totalheight","footheight","created","http","HttpResetClass","load","this","$login","f","resolveMsg","rejectMsg","then","res","function_vue","prototype","$function_vue","console","log","methods","recordCancel","name","$els","route","style","height","props","$refs","init","events","func","showbtn","val","hiddenbtn","installselect","cp","cri","search","card","paged","showline","clifun","searchcard","list-select-oper","738","912","__vue_script__","__vue_template__","__vue_styles__","__vue_options__","options","template","computed","keys","forEach","key"],"mappings":"AAAAA,cAAc,KAERC,IACA,SAAUC,EAAQC,EAASC,GAEhC,YAgBA,SAASC,GAAuBC,GAAO,MAAOA,IAAOA,EAAIC,WAAaD,GAAQE,QAASF,GAdvFG,OAAOC,eAAeP,EAAS,cAC7BQ,OAAO,GAGT,IAAIC,GAAaR,EAAoB,GAEjCS,EAAcR,EAAuBO,GAErCE,EAAOV,EAAoB,GAE3BW,EAAQV,EAAuBS,GCepCE,EAAAZ,EAAA,EDTCD,GAAQK,SCWTS,MAAA,OACAC,KAFA,WAGA,OACAC,SAAA,KACAC,OAAA,EACAC,IAAA,KAEAC,WAAA,KACAC,MAAA,EACAC,SAAA,EACAC,YAAA,EACAC,WAAA,OACAC,YAAA,OACAC,WAAA,OAGAC,QAjBA,WAkBA,GAAAC,GAAA,GAAAd,GAAAe,cACAD,GAAAE,KAAA,mCAAAd,KAAAe,KAAAC,OAAAC,IAAAC,WAAA,KAAAC,UAAA,qBAAAC,KAAA,SAAAC,GACAxB,EAAAP,QAAAgC,aAAAzB,EAAAP,QAAAiC,UAAAC,cAAAH,EAAArB,KAAAsB,eAGAG,QAAAC,IAAA,wBAAA/B,EAAAL,SAAAyB,KAAAS,iBAEAG,SAEAC,aAFA,SAEA7B,EAAA8B,EAAA1B,GACAY,KAAAP,WAAA,MACAO,KAAAR,YAAA,EACAQ,KAAAV,MAAA,EACAU,KAAAT,SAAA,EAEAS,KAAAe,KAAAC,MAAAC,MAAAC,OAAA,QAEAlB,KAAAZ,IAAA,KAEAY,KAAAb,OAAA2B,OAAAK,OAAAlC,KAAAG,IACAY,KAAAoB,MAAAJ,MAAAK,KAAAP,GAAA7B,KAAAG,MAGAkC,QACAC,KADA,SACArC,EAAAE,GACAY,KAAAd,WACAc,KAAAX,WAAAD,EACAY,KAAAP,WAAA,MACAO,KAAAN,YAAA,MACAM,KAAAT,SAAA,GAGAiC,QATA,SASAC,GACAzB,KAAAX,WAAAoC,EAEAzB,KAAAR,YAAA,EACAQ,KAAAP,WAAA,MACAO,KAAAN,YAAA,OAEAgC,UAhBA,WAiBA1B,KAAAR,YAAA,EACAQ,KAAAT,SAAA,EACAS,KAAAV,MAAA,EACAU,KAAAb,MAAA,KACAa,KAAAP,WAAA,OACAO,KAAAN,YAAA,OACAM,KAAAoB,MAAAO,cAAAP,MAAAQ,GAAAR,MAAAS,IAAAC,SAEA9B,KAAAoB,MAAAW,KAAAX,MAAAY,MAAAZ,MAAAS,IAAAC,UAEAG,SA3BA,SA2BAvD,GACAsB,KAAAV,MAAA,EACAU,KAAAoB,MAAAO,cAAAO,OAAAxD,IAEAyD,WA/BA,WAgCAnC,KAAAoB,MAAAO,cAAAP,MAAAQ,GAAAR,MAAAS,IAAAC,SAEA9B,KAAAoB,MAAAW,KAAAX,MAAAY,MAAAZ,MAAAS,IAAAC,UAEAM,mBApCA,WAqCApC,KAAAP,WAAA,MACAO,KAAAL,WAAA,UDJM0C,IACA,SAAUpE,EAAQC,GE7GxBD,EAAAC,QAAA,0gCFmHMoE,IACA,SAAUrE,EAAQC,EAASC,GGpHjC,GAAAoE,GAAAC,EACAC,IACAF,GAAApE,EAAA,KACAqE,EAAArE,EAAA,KACAF,EAAAC,QAAAqE,MACAtE,EAAAC,QAAAI,aAAAL,EAAAC,QAAAD,EAAAC,QAAAK,QACA,IAAAmE,GAAA,kBAAAzE,GAAAC,QAAAD,EAAAC,QAAAyE,UAAA1E,EAAAC,QAAAyE,YAAoH1E,EAAAC,OACpHsE,KACAE,EAAAE,SAAAJ,GAEAE,EAAAG,WAAAH,EAAAG,aACArE,OAAAsE,KAAAL,GAAAM,QAAA,SAAAC,GACA,GAAA/E,GAAAwE,EAAAO,EACAN,GAAAG,SAAAG,GAAA,WAA6C,MAAA/E","file":"69.js","sourcesContent":["webpackJsonp([69],{\n\n/***/ 361:\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 _stringify = __webpack_require__(6);\n\t\n\tvar _stringify2 = _interopRequireDefault(_stringify);\n\t\n\tvar _vue = __webpack_require__(1);\n\t\n\tvar _vue2 = _interopRequireDefault(_vue);\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 funcdata: null,\n\t comps: false,\n\t row: null,\n\t\n\t selectdata: null,\n\t show: false,\n\t clishow: false,\n\t showallbtn: false,\n\t leftheight: '100%',\n\t totalheight: '100%',\n\t footheight: '0%'\n\t };\n\t },\n\t created: function created() {\n\t var http = new _vueClient.HttpResetClass();\n\t http.load('POST', 'rs/logic/ApplyGetConfigs', { data: this.$login.f }, { resolveMsg: null, rejectMsg: '获取功能文件失败,请联系开发人员' }).then(function (res) {\n\t _vue2.default.function_vue = _vue2.default.prototype.$function_vue = res.data.function_vue;\n\t });\n\t\n\t console.log(\"Vue.$function_vue:\" + (0, _stringify2.default)(this.$function_vue));\n\t },\n\t\n\t methods: {\n\t recordCancel: function recordCancel(title, name, row) {\n\t this.leftheight = '50%';\n\t this.showallbtn = false;\n\t this.show = false;\n\t this.clishow = false;\n\t\n\t this.$els.route.style.height = 260 + 'px';\n\t\n\t this.row = null;\n\t\n\t this.comps = { name: name, props: { data: row } };\n\t this.$refs.route.init(name, { data: row });\n\t }\n\t },\n\t events: {\n\t 'func': function func(funcdata, row) {\n\t this.funcdata = funcdata;\n\t this.selectdata = row;\n\t this.leftheight = '25%';\n\t this.totalheight = '80%';\n\t this.clishow = true;\n\t },\n\t 'showbtn': function showbtn(val) {\n\t this.selectdata = val;\n\t\n\t this.showallbtn = true;\n\t this.leftheight = '25%';\n\t this.totalheight = '80%';\n\t },\n\t 'hiddenbtn': function hiddenbtn() {\n\t this.showallbtn = false;\n\t this.clishow = false;\n\t this.show = false;\n\t this.comps = null;\n\t this.leftheight = '100%';\n\t this.totalheight = '100%';\n\t this.$refs.installselect.$refs.cp.$refs.cri.search();\n\t\n\t this.$refs.card.$refs.paged.$refs.cri.search();\n\t },\n\t 'showline': function showline(value) {\n\t this.show = false;\n\t this.$refs.installselect.clifun(value);\n\t },\n\t 'searchcard': function searchcard() {\n\t this.$refs.installselect.$refs.cp.$refs.cri.search();\n\t\n\t this.$refs.card.$refs.paged.$refs.cri.search();\n\t },\n\t 'list-select-oper': function listSelectOper() {\n\t this.leftheight = '50%';\n\t this.footheight = '50%';\n\t }\n\t }\n\t};\n\n/***/ }),\n\n/***/ 738:\n/***/ (function(module, exports) {\n\n\tmodule.exports = \" <div class=full> <div class=flex-row> <div class=flex style=\\\"flex: 1\\\" :style=\\\"{height: totalheight}\\\"> <div class=\\\"flex col-sm-12\\\" :style=\\\"{height: leftheight}\\\"> <installinfoselect v-ref:installselect></installinfoselect> </div> <div class=\\\"flex col-sm-12\\\" v-if=show style=\\\"padding-top: 3px\\\"> <installinfodown v-ref:installdown></installinfodown> </div> <div class=col-sm-12 v-show=clishow> <div class=col-sm-3> <installfeeinfo :infeeinfo=selectdata></installfeeinfo> </div> <div class=col-sm-9> <function-service-control v-ref:fsc :funcdata=funcdata :selectdata=selectdata></function-service-control> </div> </div> <div v-show=comps v-el:route class=\\\"flex span select-overspread\\\" style=\\\"margin-top: 10px;border: 1px solid #EEF3F6;flex: 0.8\\\"> <route v-ref:route></route> </div> </div> <div style=\\\"width: 350px;padding:0px 0px 10px 0px;margin-left: 20px\\\"> <install-apply-cardlist :btns=operatebtn :userinfoid=\\\"row ? row.f_userinfo_id : ''\\\" @list-select-oper=recordCancel v-ref:card></install-apply-cardlist> </div> </div> </div> \";\n\n/***/ }),\n\n/***/ 912:\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar __vue_script__, __vue_template__\n\tvar __vue_styles__ = {}\n\t__vue_script__ = __webpack_require__(361)\n\t__vue_template__ = __webpack_require__(738)\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// 69.js","<template>\r\n <div class=\"full\">\r\n <div class=\"flex-row\">\r\n <div class=\"flex\" style=\"flex: 1\" :style=\"{height: totalheight}\">\r\n <div class=\"flex col-sm-12\" :style=\"{height: leftheight}\">\r\n <installinfoselect v-ref:installselect></installinfoselect>\r\n </div>\r\n <div class=\"flex col-sm-12\" v-if=\"show\" style=\"padding-top: 3px;\">\r\n <installinfodown v-ref:installdown></installinfodown>\r\n </div>\r\n <div class=\"col-sm-12\" v-show=\"clishow\">\r\n <div class=\"col-sm-3\">\r\n <installfeeinfo :infeeinfo=\"selectdata\"></installfeeinfo>\r\n </div>\r\n <div class=\"col-sm-9\">\r\n <function-service-control v-ref:fsc :funcdata = \"funcdata\" :selectdata=\"selectdata\"></function-service-control>\r\n </div>\r\n </div>\r\n <div v-show=\"comps\" v-el:route class=\"flex span select-overspread\"\r\n style=\"margin-top: 10px;border: 1px solid #EEF3F6;flex: 0.8;\">\r\n <route v-ref:route></route>\r\n </div>\r\n </div>\r\n <div style=\"width: 350px;padding:0px 0px 10px 0px;margin-left: 20px\">\r\n <install-apply-cardlist :btns=\"operatebtn\" :userinfoid=\"row ? row.f_userinfo_id : ''\" @list-select-oper=\"recordCancel\"\r\n v-ref:card></install-apply-cardlist>\r\n </div>\r\n </div>\r\n </div>\r\n</template>\r\n<script>\r\n import Vue from 'vue'\r\n import {HttpResetClass} from 'vue-client'\r\n export default {\r\n title: '报建业务',\r\n data() {\r\n return {\r\n funcdata: null, // 选中功能\r\n comps: false,\r\n row: null,\r\n // arr: ['报建登记', '现场勘探', '设计出图'],\r\n selectdata: null,\r\n show: false,\r\n clishow: false,\r\n showallbtn: false,\r\n leftheight: '100%',\r\n totalheight: '100%',\r\n footheight: '0%'\r\n }\r\n },\r\n created(){\r\n let http = new HttpResetClass()\r\n http.load('POST','rs/logic/ApplyGetConfigs', {data:this.$login.f}, {resolveMsg: null, rejectMsg: '获取功能文件失败,请联系开发人员'}).then((res)=>{\r\n Vue.function_vue = Vue.prototype.$function_vue = res.data.function_vue\r\n })\r\n // console.log(\"ApplyGetConfigs返回数据:\",res.data)\r\n console.log(\"Vue.$function_vue:\"+JSON.stringify(this.$function_vue))\r\n },\r\n methods: {\r\n // 操作记录点击撤销时间调用方法\r\n recordCancel(title, name, row) {\r\n this.leftheight = '50%'\r\n this.showallbtn = false\r\n this.show = false\r\n this.clishow = false\r\n // this.$parent.$refs.installselect.bulkType = '操作记录撤销'\r\n this.$els.route.style.height = 260 + 'px'\r\n // 清除row的选择\r\n this.row = null\r\n // this.$refs.list.search()\r\n this.comps = {name: name, props: {data: row}}\r\n this.$refs.route.init(name, {data: row})\r\n }\r\n },\r\n events: {\r\n 'func'(funcdata,row) {\r\n this.funcdata = funcdata\r\n this.selectdata = row\r\n this.leftheight = '25%'\r\n this.totalheight = '80%'\r\n this.clishow = true\r\n // this.$refs.fsc.hasChange()\r\n },\r\n 'showbtn'(val) {\r\n this.selectdata = val\r\n // this.show = true\r\n this.showallbtn = true\r\n this.leftheight = '25%'\r\n this.totalheight = '80%'\r\n },\r\n 'hiddenbtn'() {\r\n this.showallbtn = false\r\n this.clishow = false\r\n this.show = false\r\n this.comps = null\r\n this.leftheight = '100%'\r\n this.totalheight = '100%'\r\n this.$refs.installselect.$refs.cp.$refs.cri.search()\r\n // this.$refs.installdown.$refs.cp.$refs.cri.search()\r\n this.$refs.card.$refs.paged.$refs.cri.search()\r\n },\r\n 'showline'(value) {\r\n this.show = false\r\n this.$refs.installselect.clifun(value)\r\n },\r\n 'searchcard'() {\r\n this.$refs.installselect.$refs.cp.$refs.cri.search()\r\n // this.$refs.installdown.$refs.cp.$refs.cri.search()\r\n this.$refs.card.$refs.paged.$refs.cri.search()\r\n },\r\n 'list-select-oper'() {\r\n this.leftheight = '50%'\r\n this.footheight = '50%'\r\n }\r\n }\r\n }\r\n</script>\r\n\n\n\n// WEBPACK FOOTER //\n// InstallFunction.vue?5c8ceca7","module.exports = \" <div class=full> <div class=flex-row> <div class=flex style=\\\"flex: 1\\\" :style=\\\"{height: totalheight}\\\"> <div class=\\\"flex col-sm-12\\\" :style=\\\"{height: leftheight}\\\"> <installinfoselect v-ref:installselect></installinfoselect> </div> <div class=\\\"flex col-sm-12\\\" v-if=show style=\\\"padding-top: 3px\\\"> <installinfodown v-ref:installdown></installinfodown> </div> <div class=col-sm-12 v-show=clishow> <div class=col-sm-3> <installfeeinfo :infeeinfo=selectdata></installfeeinfo> </div> <div class=col-sm-9> <function-service-control v-ref:fsc :funcdata=funcdata :selectdata=selectdata></function-service-control> </div> </div> <div v-show=comps v-el:route class=\\\"flex span select-overspread\\\" style=\\\"margin-top: 10px;border: 1px solid #EEF3F6;flex: 0.8\\\"> <route v-ref:route></route> </div> </div> <div style=\\\"width: 350px;padding:0px 0px 10px 0px;margin-left: 20px\\\"> <install-apply-cardlist :btns=operatebtn :userinfoid=\\\"row ? row.f_userinfo_id : ''\\\" @list-select-oper=recordCancel v-ref:card></install-apply-cardlist> </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/InstallFunction.vue\n// module id = 738\n// module chunks = 69","var __vue_script__, __vue_template__\nvar __vue_styles__ = {}\n__vue_script__ = require(\"!!babel-loader?presets[]=es2015&plugins[]=transform-runtime&comments=false!../../../../node_modules/vue-loader/lib/selector.js?type=script&index=0!./InstallFunction.vue\")\n__vue_template__ = require(\"!!vue-html-loader!../../../../node_modules/vue-loader/lib/selector.js?type=template&index=0!./InstallFunction.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/InstallFunction.vue\n// module id = 912\n// module chunks = 69"],"sourceRoot":""}