apply-clients 7.1.33 → 7.1.36

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (431) hide show
  1. package/android.html +4 -0
  2. package/build/css-loaders.js +34 -0
  3. package/build/dev-client.js +8 -0
  4. package/build/dev-server.js +151 -0
  5. package/build/example-server.js +80 -0
  6. package/build/release.sh +28 -0
  7. package/build/utils.js +80 -0
  8. package/build/webpack.base.conf.js +123 -0
  9. package/build/webpack.baseandroid.conf.js +123 -0
  10. package/build/webpack.dev.conf.js +43 -0
  11. package/build/webpack.devandroid.conf.js +34 -0
  12. package/build/webpack.example.conf.js +49 -0
  13. package/build/webpack.prod.conf.js +60 -0
  14. package/build/webpack.prodandroid.conf.js +60 -0
  15. package/dist-android.7z +0 -0
  16. package/dist.7z +0 -0
  17. package/index.html +33 -30
  18. package/package.json +11 -7
  19. package/src/AndroidApp.vue +21 -14
  20. package/src/App.vue +18 -20
  21. package/{dist-android/static → src/android-bootstrap/fonts}/glyphicons-halflings-regular.eot +0 -0
  22. package/{dist-android/static → src/android-bootstrap/fonts}/glyphicons-halflings-regular.svg +0 -0
  23. package/{dist-android/static → src/android-bootstrap/fonts}/glyphicons-halflings-regular.ttf +0 -0
  24. package/{dist-android/static → src/android-bootstrap/fonts}/glyphicons-halflings-regular.woff +0 -0
  25. package/{dist-android/static → src/android-bootstrap/fonts}/glyphicons-halflings-regular.woff2 +0 -0
  26. package/src/android-bootstrap/less/.csscomb.json +304 -0
  27. package/src/android-bootstrap/less/.csslintrc +19 -0
  28. package/src/android-bootstrap/less/alerts.less +73 -0
  29. package/src/android-bootstrap/less/badges.less +66 -0
  30. package/src/android-bootstrap/less/bootstrap.less +56 -0
  31. package/src/android-bootstrap/less/breadcrumbs.less +26 -0
  32. package/src/android-bootstrap/less/button-groups.less +247 -0
  33. package/src/android-bootstrap/less/buttons.less +173 -0
  34. package/src/android-bootstrap/less/carousel.less +269 -0
  35. package/src/android-bootstrap/less/close.less +34 -0
  36. package/src/android-bootstrap/less/code.less +69 -0
  37. package/src/android-bootstrap/less/component-animations.less +33 -0
  38. package/src/android-bootstrap/less/dropdowns.less +216 -0
  39. package/src/android-bootstrap/less/forms.less +626 -0
  40. package/src/android-bootstrap/less/glyphicons.less +305 -0
  41. package/src/android-bootstrap/less/grid.less +84 -0
  42. package/src/android-bootstrap/less/input-groups.less +167 -0
  43. package/src/android-bootstrap/less/jumbotron.less +52 -0
  44. package/src/android-bootstrap/less/labels.less +64 -0
  45. package/src/android-bootstrap/less/list-group.less +141 -0
  46. package/src/android-bootstrap/less/media.less +66 -0
  47. package/src/android-bootstrap/less/mixins/alerts.less +14 -0
  48. package/src/android-bootstrap/less/mixins/background-variant.less +9 -0
  49. package/src/android-bootstrap/less/mixins/border-radius.less +18 -0
  50. package/src/android-bootstrap/less/mixins/buttons.less +69 -0
  51. package/src/android-bootstrap/less/mixins/center-block.less +7 -0
  52. package/src/android-bootstrap/less/mixins/clearfix.less +22 -0
  53. package/src/android-bootstrap/less/mixins/forms.less +90 -0
  54. package/src/android-bootstrap/less/mixins/gradients.less +59 -0
  55. package/src/android-bootstrap/less/mixins/grid-framework.less +92 -0
  56. package/src/android-bootstrap/less/mixins/grid.less +122 -0
  57. package/src/android-bootstrap/less/mixins/hide-text.less +21 -0
  58. package/src/android-bootstrap/less/mixins/image.less +33 -0
  59. package/src/android-bootstrap/less/mixins/labels.less +12 -0
  60. package/src/android-bootstrap/less/mixins/list-group.less +30 -0
  61. package/src/android-bootstrap/less/mixins/nav-divider.less +10 -0
  62. package/src/android-bootstrap/less/mixins/nav-vertical-align.less +9 -0
  63. package/src/android-bootstrap/less/mixins/opacity.less +8 -0
  64. package/src/android-bootstrap/less/mixins/pagination.less +24 -0
  65. package/src/android-bootstrap/less/mixins/panels.less +24 -0
  66. package/src/android-bootstrap/less/mixins/progress-bar.less +10 -0
  67. package/src/android-bootstrap/less/mixins/reset-filter.less +8 -0
  68. package/src/android-bootstrap/less/mixins/reset-text.less +18 -0
  69. package/src/android-bootstrap/less/mixins/resize.less +6 -0
  70. package/src/android-bootstrap/less/mixins/responsive-visibility.less +15 -0
  71. package/src/android-bootstrap/less/mixins/size.less +10 -0
  72. package/src/android-bootstrap/less/mixins/tab-focus.less +9 -0
  73. package/src/android-bootstrap/less/mixins/table-row.less +44 -0
  74. package/src/android-bootstrap/less/mixins/text-emphasis.less +9 -0
  75. package/src/android-bootstrap/less/mixins/text-overflow.less +8 -0
  76. package/src/android-bootstrap/less/mixins/vendor-prefixes.less +227 -0
  77. package/src/android-bootstrap/less/mixins.less +40 -0
  78. package/src/android-bootstrap/less/modals.less +151 -0
  79. package/src/android-bootstrap/less/navbar.less +660 -0
  80. package/src/android-bootstrap/less/navs.less +302 -0
  81. package/src/android-bootstrap/less/normalize.less +424 -0
  82. package/src/android-bootstrap/less/pager.less +76 -0
  83. package/src/android-bootstrap/less/pagination.less +89 -0
  84. package/src/android-bootstrap/less/panels.less +274 -0
  85. package/src/android-bootstrap/less/popovers.less +131 -0
  86. package/src/android-bootstrap/less/print.less +101 -0
  87. package/src/android-bootstrap/less/progress-bars.less +87 -0
  88. package/src/android-bootstrap/less/responsive-embed.less +35 -0
  89. package/src/android-bootstrap/less/responsive-utilities.less +194 -0
  90. package/src/android-bootstrap/less/scaffolding.less +161 -0
  91. package/src/android-bootstrap/less/tables.less +262 -0
  92. package/src/android-bootstrap/less/theme.less +291 -0
  93. package/src/android-bootstrap/less/thumbnails.less +36 -0
  94. package/src/android-bootstrap/less/tooltip.less +102 -0
  95. package/src/android-bootstrap/less/type.less +303 -0
  96. package/src/android-bootstrap/less/utilities.less +55 -0
  97. package/src/android-bootstrap/less/variables.less +896 -0
  98. package/src/android-bootstrap/less/wells.less +29 -0
  99. package/src/android.js +7 -4
  100. package/src/apply.js +31 -15
  101. package/src/applyAndroid.js +52 -39
  102. package/src/assets//345/210/240/351/231/244.png +0 -0
  103. package/src/components/android/AppOnetomany.vue +301 -0
  104. package/src/components/android/AppServiceView.vue +568 -0
  105. package/src/components/android/AppSign.vue +169 -0
  106. package/src/components/android/AppTakePic.vue +142 -0
  107. package/src/components/android/AppUpload.vue +232 -0
  108. package/src/components/android/Ignition/VentilationIgnition.vue +328 -0
  109. package/src/components/android/Ignition/VentilationIgnitionHandle.vue +330 -0
  110. package/src/components/android/Process/AppExplorationUser.vue +352 -0
  111. package/src/components/android/Process/AppServiceControl.vue +1050 -0
  112. package/src/components/android/Process/Processes/AppDevicesManagement.vue +336 -0
  113. package/src/components/android/Process/Processes/AppInstallationDetails.vue +770 -0
  114. package/src/components/android/Process/Processes/SurveyUserSign.vue +56 -0
  115. package/src/components/android/Sign/AppSignTask.vue +182 -0
  116. package/src/components/android/Sign/SignProcess.vue +102 -0
  117. package/src/components/android/Supervisory/AppProcessSupervisory.vue +183 -0
  118. package/src/components/android/Supervisory/AppSupervisoryCart.vue +121 -0
  119. package/src/components/android/Task/Build/BuildTsak.vue +114 -0
  120. package/src/components/android/Task/Survey/SurveyTsak.vue +112 -0
  121. package/src/components/android/TaskGraph.vue +130 -0
  122. package/src/components/android/newPackage/customerServiceManager.vue +218 -0
  123. package/src/components/android/newPackage/designDrawings.vue +94 -0
  124. package/src/components/android/newPackage/detailedData.vue +24 -0
  125. package/src/components/android/newPackage/projectPrice.vue +218 -0
  126. package/src/components/image/dwg.png +0 -0
  127. package/src/components/image/dxf.png +0 -0
  128. package/src/components/product/ApplyCharge/ApplyChargeList.vue +141 -62
  129. package/src/components/product/ApplyCharge/ApplyChargeSearch.vue +2 -2
  130. package/src/components/product/Function/InstallFunction.vue +131 -147
  131. package/src/components/product/Function/InstallInfoSelect.vue +294 -281
  132. package/src/components/product/Function/Service/FunctionServiceControl.vue +323 -148
  133. package/src/components/product/Ignition/IgnitionDispatch.vue +277 -0
  134. package/src/components/product/Ignition/IgnitionRecord.vue +216 -0
  135. package/src/components/product/Onetomany.vue +377 -0
  136. package/src/components/product/Print/BuildOrder/buildOrderList.vue +229 -0
  137. package/src/components/product/Print/BuildOrder/printBuildOrder.vue +265 -0
  138. package/src/components/product/Process/ExplorationSelect.vue +281 -254
  139. package/src/components/product/Process/ExplorationUser.vue +151 -134
  140. package/src/components/product/Process/Processes/ApplyMapCom.vue +83 -0
  141. package/src/components/product/Process/Processes/ExhibitionPicture.vue +27 -0
  142. package/src/components/product/Process/Processes/InstallationDetails.vue +616 -277
  143. package/src/components/product/Process/Processes/Print/img/10101.png +0 -0
  144. package/src/components/product/Process/Processes/Print/img/1010109.png +0 -0
  145. package/src/components/product/Process/Processes/Print/img/1010110.png +0 -0
  146. package/src/components/product/Process/Processes/Print/img/1010111.png +0 -0
  147. package/src/components/product/Process/Processes/Print/img/1010112.png +0 -0
  148. package/src/components/product/Process/Processes/Print/printCharge.vue +142 -0
  149. package/src/components/product/Process/Processes/addressAndUserinfoManagement.vue +207 -249
  150. package/src/components/product/Process/Processes/chargeManagement.vue +331 -347
  151. package/src/components/product/Process/Processes/devicesManagement.vue +360 -0
  152. package/src/components/product/Process/Processes/selectApply.vue +250 -0
  153. package/src/components/product/Process/Processes/selectUserinfo.vue +182 -0
  154. package/src/components/product/Process/Processes/supplementalAgreement.vue +182 -181
  155. package/src/components/product/Process/Service/ServiceControl.vue +1314 -753
  156. package/src/components/product/Process/Service/ShowBackReason.vue +33 -0
  157. package/src/components/product/ServiceView.vue +632 -755
  158. package/src/components/product/Stop/StopApply.vue +105 -0
  159. package/src/components/product/Stop/StopApplyList.vue +224 -0
  160. package/src/components/product/Supervisory/NewSupervisoryhCart.vue +167 -0
  161. package/src/components/product/Supervisory/Service/SupervisoryServiceControl.vue +231 -199
  162. package/src/components/product/Supervisory/SupervisoryControl.vue +110 -121
  163. package/src/components/product/Supervisory/SupervisoryList.vue +98 -48
  164. package/src/components/product/Supervisory/SupervisoryhCart.vue +119 -103
  165. package/src/components/product/VueUtils/ApplyUpload.vue +279 -261
  166. package/src/components/product/VueUtils/HighMeter.vue +208 -0
  167. package/src/expandcssAndroid.less +1034 -0
  168. package/src/main.js +27 -23
  169. package/src/public/history/HistoryApplyList.vue +108 -0
  170. package/src/public/history/PublicHistoryApply.vue +39 -0
  171. package/src/public/history/PublicSupervisoryhCart.vue +72 -0
  172. package/src/public/order/PublicOrderApply.vue +387 -0
  173. package/dist-android/index.html +0 -3
  174. package/dist-android/static/.gitkeep +0 -0
  175. package/dist-android/static/0.js +0 -2
  176. package/dist-android/static/0.js.map +0 -1
  177. package/dist-android/static/1.js +0 -2
  178. package/dist-android/static/1.js.map +0 -1
  179. package/dist-android/static/10.js +0 -2
  180. package/dist-android/static/10.js.map +0 -1
  181. package/dist-android/static/100.js +0 -2
  182. package/dist-android/static/100.js.map +0 -1
  183. package/dist-android/static/11.js +0 -2
  184. package/dist-android/static/11.js.map +0 -1
  185. package/dist-android/static/12.js +0 -2
  186. package/dist-android/static/12.js.map +0 -1
  187. package/dist-android/static/13.js +0 -2
  188. package/dist-android/static/13.js.map +0 -1
  189. package/dist-android/static/14.js +0 -2
  190. package/dist-android/static/14.js.map +0 -1
  191. package/dist-android/static/15.js +0 -2
  192. package/dist-android/static/15.js.map +0 -1
  193. package/dist-android/static/16.js +0 -2
  194. package/dist-android/static/16.js.map +0 -1
  195. package/dist-android/static/17.js +0 -2
  196. package/dist-android/static/17.js.map +0 -1
  197. package/dist-android/static/18.js +0 -2
  198. package/dist-android/static/18.js.map +0 -1
  199. package/dist-android/static/19.js +0 -2
  200. package/dist-android/static/19.js.map +0 -1
  201. package/dist-android/static/2.js +0 -2
  202. package/dist-android/static/2.js.map +0 -1
  203. package/dist-android/static/20.js +0 -2
  204. package/dist-android/static/20.js.map +0 -1
  205. package/dist-android/static/21.js +0 -2
  206. package/dist-android/static/21.js.map +0 -1
  207. package/dist-android/static/22.js +0 -2
  208. package/dist-android/static/22.js.map +0 -1
  209. package/dist-android/static/23.js +0 -2
  210. package/dist-android/static/23.js.map +0 -1
  211. package/dist-android/static/24.js +0 -2
  212. package/dist-android/static/24.js.map +0 -1
  213. package/dist-android/static/25.js +0 -2
  214. package/dist-android/static/25.js.map +0 -1
  215. package/dist-android/static/26.js +0 -2
  216. package/dist-android/static/26.js.map +0 -1
  217. package/dist-android/static/27.js +0 -2
  218. package/dist-android/static/27.js.map +0 -1
  219. package/dist-android/static/28.js +0 -2
  220. package/dist-android/static/28.js.map +0 -1
  221. package/dist-android/static/29.js +0 -2
  222. package/dist-android/static/29.js.map +0 -1
  223. package/dist-android/static/3.js +0 -2
  224. package/dist-android/static/3.js.map +0 -1
  225. package/dist-android/static/30.js +0 -2
  226. package/dist-android/static/30.js.map +0 -1
  227. package/dist-android/static/31.js +0 -2
  228. package/dist-android/static/31.js.map +0 -1
  229. package/dist-android/static/32.js +0 -2
  230. package/dist-android/static/32.js.map +0 -1
  231. package/dist-android/static/33.js +0 -2
  232. package/dist-android/static/33.js.map +0 -1
  233. package/dist-android/static/34.js +0 -2
  234. package/dist-android/static/34.js.map +0 -1
  235. package/dist-android/static/35.js +0 -2
  236. package/dist-android/static/35.js.map +0 -1
  237. package/dist-android/static/36.js +0 -2
  238. package/dist-android/static/36.js.map +0 -1
  239. package/dist-android/static/37.js +0 -2
  240. package/dist-android/static/37.js.map +0 -1
  241. package/dist-android/static/38.js +0 -2
  242. package/dist-android/static/38.js.map +0 -1
  243. package/dist-android/static/39.js +0 -2
  244. package/dist-android/static/39.js.map +0 -1
  245. package/dist-android/static/4.js +0 -2
  246. package/dist-android/static/4.js.map +0 -1
  247. package/dist-android/static/40.js +0 -2
  248. package/dist-android/static/40.js.map +0 -1
  249. package/dist-android/static/41.js +0 -2
  250. package/dist-android/static/41.js.map +0 -1
  251. package/dist-android/static/42.js +0 -2
  252. package/dist-android/static/42.js.map +0 -1
  253. package/dist-android/static/43.js +0 -2
  254. package/dist-android/static/43.js.map +0 -1
  255. package/dist-android/static/44.js +0 -2
  256. package/dist-android/static/44.js.map +0 -1
  257. package/dist-android/static/45.js +0 -2
  258. package/dist-android/static/45.js.map +0 -1
  259. package/dist-android/static/46.js +0 -2
  260. package/dist-android/static/46.js.map +0 -1
  261. package/dist-android/static/47.js +0 -2
  262. package/dist-android/static/47.js.map +0 -1
  263. package/dist-android/static/48.js +0 -2
  264. package/dist-android/static/48.js.map +0 -1
  265. package/dist-android/static/49.js +0 -2
  266. package/dist-android/static/49.js.map +0 -1
  267. package/dist-android/static/5.js +0 -2
  268. package/dist-android/static/5.js.map +0 -1
  269. package/dist-android/static/50.js +0 -2
  270. package/dist-android/static/50.js.map +0 -1
  271. package/dist-android/static/51.js +0 -2
  272. package/dist-android/static/51.js.map +0 -1
  273. package/dist-android/static/52.js +0 -2
  274. package/dist-android/static/52.js.map +0 -1
  275. package/dist-android/static/53.js +0 -2
  276. package/dist-android/static/53.js.map +0 -1
  277. package/dist-android/static/54.js +0 -2
  278. package/dist-android/static/54.js.map +0 -1
  279. package/dist-android/static/55.js +0 -2
  280. package/dist-android/static/55.js.map +0 -1
  281. package/dist-android/static/56.js +0 -2
  282. package/dist-android/static/56.js.map +0 -1
  283. package/dist-android/static/57.js +0 -2
  284. package/dist-android/static/57.js.map +0 -1
  285. package/dist-android/static/58.js +0 -2
  286. package/dist-android/static/58.js.map +0 -1
  287. package/dist-android/static/59.js +0 -2
  288. package/dist-android/static/59.js.map +0 -1
  289. package/dist-android/static/6.js +0 -2
  290. package/dist-android/static/6.js.map +0 -1
  291. package/dist-android/static/60.js +0 -2
  292. package/dist-android/static/60.js.map +0 -1
  293. package/dist-android/static/61.js +0 -2
  294. package/dist-android/static/61.js.map +0 -1
  295. package/dist-android/static/62.js +0 -2
  296. package/dist-android/static/62.js.map +0 -1
  297. package/dist-android/static/63.js +0 -2
  298. package/dist-android/static/63.js.map +0 -1
  299. package/dist-android/static/64.js +0 -2
  300. package/dist-android/static/64.js.map +0 -1
  301. package/dist-android/static/65.js +0 -2
  302. package/dist-android/static/65.js.map +0 -1
  303. package/dist-android/static/66.js +0 -2
  304. package/dist-android/static/66.js.map +0 -1
  305. package/dist-android/static/67.js +0 -2
  306. package/dist-android/static/67.js.map +0 -1
  307. package/dist-android/static/68.js +0 -2
  308. package/dist-android/static/68.js.map +0 -1
  309. package/dist-android/static/69.js +0 -2
  310. package/dist-android/static/69.js.map +0 -1
  311. package/dist-android/static/7.js +0 -6
  312. package/dist-android/static/7.js.map +0 -1
  313. package/dist-android/static/70.js +0 -2
  314. package/dist-android/static/70.js.map +0 -1
  315. package/dist-android/static/71.js +0 -2
  316. package/dist-android/static/71.js.map +0 -1
  317. package/dist-android/static/72.js +0 -2
  318. package/dist-android/static/72.js.map +0 -1
  319. package/dist-android/static/73.js +0 -2
  320. package/dist-android/static/73.js.map +0 -1
  321. package/dist-android/static/74.js +0 -2
  322. package/dist-android/static/74.js.map +0 -1
  323. package/dist-android/static/75.js +0 -2
  324. package/dist-android/static/75.js.map +0 -1
  325. package/dist-android/static/76.js +0 -2
  326. package/dist-android/static/76.js.map +0 -1
  327. package/dist-android/static/77.js +0 -2
  328. package/dist-android/static/77.js.map +0 -1
  329. package/dist-android/static/78.js +0 -2
  330. package/dist-android/static/78.js.map +0 -1
  331. package/dist-android/static/79.js +0 -2
  332. package/dist-android/static/79.js.map +0 -1
  333. package/dist-android/static/8.js +0 -2
  334. package/dist-android/static/8.js.map +0 -1
  335. package/dist-android/static/80.js +0 -2
  336. package/dist-android/static/80.js.map +0 -1
  337. package/dist-android/static/81.js +0 -2
  338. package/dist-android/static/81.js.map +0 -1
  339. package/dist-android/static/82.js +0 -2
  340. package/dist-android/static/82.js.map +0 -1
  341. package/dist-android/static/83.js +0 -2
  342. package/dist-android/static/83.js.map +0 -1
  343. package/dist-android/static/84.js +0 -2
  344. package/dist-android/static/84.js.map +0 -1
  345. package/dist-android/static/85.js +0 -2
  346. package/dist-android/static/85.js.map +0 -1
  347. package/dist-android/static/86.js +0 -2
  348. package/dist-android/static/86.js.map +0 -1
  349. package/dist-android/static/87.js +0 -2
  350. package/dist-android/static/87.js.map +0 -1
  351. package/dist-android/static/88.js +0 -2
  352. package/dist-android/static/88.js.map +0 -1
  353. package/dist-android/static/89.js +0 -2
  354. package/dist-android/static/89.js.map +0 -1
  355. package/dist-android/static/9.js +0 -3
  356. package/dist-android/static/9.js.map +0 -1
  357. package/dist-android/static/90.js +0 -2
  358. package/dist-android/static/90.js.map +0 -1
  359. package/dist-android/static/91.js +0 -2
  360. package/dist-android/static/91.js.map +0 -1
  361. package/dist-android/static/92.js +0 -2
  362. package/dist-android/static/92.js.map +0 -1
  363. package/dist-android/static/93.js +0 -2
  364. package/dist-android/static/93.js.map +0 -1
  365. package/dist-android/static/94.js +0 -2
  366. package/dist-android/static/94.js.map +0 -1
  367. package/dist-android/static/95.js +0 -2
  368. package/dist-android/static/95.js.map +0 -1
  369. package/dist-android/static/96.js +0 -2
  370. package/dist-android/static/96.js.map +0 -1
  371. package/dist-android/static/97.js +0 -2
  372. package/dist-android/static/97.js.map +0 -1
  373. package/dist-android/static/98.js +0 -2
  374. package/dist-android/static/98.js.map +0 -1
  375. package/dist-android/static/99.js +0 -2
  376. package/dist-android/static/99.js.map +0 -1
  377. package/dist-android/static/app.css +0 -2
  378. package/dist-android/static/app.css.map +0 -1
  379. package/dist-android/static/app.js +0 -80
  380. package/dist-android/static/app.js.map +0 -1
  381. package/dist-android/static/batchleft.png +0 -0
  382. package/dist-android/static/batchright.png +0 -0
  383. package/dist-android/static/bluemainbg.jpg +0 -0
  384. package/dist-android/static/config.json +0 -7
  385. package/dist-android/static/denglu.png +0 -0
  386. package/dist-android/static/huangtengbiaozhi.png +0 -0
  387. package/dist-android/static/jingyin.jpg +0 -0
  388. package/dist-android/static/login_bg.jpg +0 -0
  389. package/dist-android/static/login_title.png +0 -0
  390. package/dist-android/static/login_title1.png +0 -0
  391. package/dist-android/static/loginbg.jpg +0 -0
  392. package/dist-android/static/loginlogo.png +0 -0
  393. package/dist-android/static/main_logo.png +0 -0
  394. package/dist-android/static/mainbg.jpg +0 -0
  395. package/dist-android/static/menulogo.png +0 -0
  396. package/dist-android/static/newmainbg.jpg +0 -0
  397. package/dist-android/static/psicon.png +0 -0
  398. package/dist-android/static/singleleft.png +0 -0
  399. package/dist-android/static/singleright.png +0 -0
  400. package/dist-android/static/treeopen.png +0 -0
  401. package/dist-android/static/treeout.png +0 -0
  402. package/dist-android/static/treeset.png +0 -0
  403. package/dist-android/static/usericon.png +0 -0
  404. package/dist-android/static/workflow_apply.json +0 -766
  405. package/dist-android/static/xinxi.png +0 -0
  406. package/dist-android/static//344/277/256/346/224/271/345/257/206/347/240/201.png +0 -0
  407. package/dist-android/static//345/256/211/346/243/200/345/257/274/350/210/252/347/253/226/345/261/2173.png +0 -0
  408. package/dist-android/static//345/257/274/345/207/272/346/225/260/346/215/256.png +0 -0
  409. package/dist-android/static//346/270/205/347/251/272/346/225/260/346/215/256.png +0 -0
  410. package/src/components/app_apply/Acceptance.vue +0 -298
  411. package/src/components/app_apply/ApplyApp.vue +0 -91
  412. package/src/components/app_apply/ApplyDownList.vue +0 -166
  413. package/src/components/app_apply/ApplyInfo.vue +0 -56
  414. package/src/components/app_apply/ApplyListUpload.vue +0 -258
  415. package/src/components/app_apply/ApplyToDoList.vue +0 -165
  416. package/src/components/app_apply/ApplyUserInfo.vue +0 -56
  417. package/src/components/app_apply/FieldExploration.vue +0 -267
  418. package/src/components/app_apply/PlaceControler.vue +0 -258
  419. package/src/components/app_apply/ServiceControl.vue +0 -267
  420. package/src/components/app_apply/ServiceView.vue +0 -355
  421. package/src/components/app_apply/ToolsPage.vue +0 -51
  422. package/src/components/app_apply/Ventilation.vue +0 -199
  423. package/src/components/product/ApplyCharge/ApplyChargeReport.vue +0 -107
  424. package/src/components/product/Function/StopApplyCrrdList.vue +0 -176
  425. package/src/components/product/Function/functions/ApplyRecordCancel.vue +0 -102
  426. package/src/components/product/Function/functions/StopInstall.vue +0 -106
  427. package/src/components/product/Process/Processes/printCharge.vue +0 -126
  428. package/src/components/product/Process/ShowBackReason.vue +0 -32
  429. package/src/components/product/ReportForm/GasIgnitionSummary.vue +0 -352
  430. package/src/components/product/VueUtils/ToolsPage.vue +0 -51
  431. package/src/components/product/VueUtils/Tree.vue +0 -330
@@ -1,2 +0,0 @@
1
- webpackJsonp([43],{346:function(e,t,l){"use strict";function n(e){return e&&e.__esModule?e:{default:e}}Object.defineProperty(t,"__esModule",{value:!0});var r=l(11),s=n(r),u=l(2),i=n(u),o=l(7),a=n(o),c=l(3);t.default={title:"确认卡信息",props:["billselect","selectone"],data:function(){return{billinfo:{f_billnumber:null},number:null}},ready:function(){function e(){return t.apply(this,arguments)}var t=(0,a.default)(i.default.mark(function e(){var t,l,n;return i.default.wrap(function(e){for(;;)switch(e.prev=e.next){case 0:return t=new c.HttpResetClass,l={tablename:"t_singlevalue",condition:"name = '改装卡编号'"},e.next=4,t.load("POST","rs/sql/singleTable",{data:l},{resolveMsg:null,rejectMsg:"获取单据编号失败"},{silent:!0});case 4:n=e.sent,this.number=n.data[0],this.handle(),this.billinfo.f_billnumber=this.number.value;case 8:case"end":return e.stop()}},e,this)}));return e}(),methods:{handle:function(){for(;this.number.value.length<8;)this.number.value="0"+this.number.value},updateNumber:function(){function e(){return t.apply(this,arguments)}var t=(0,a.default)(i.default.mark(function e(){var t,l,n;return i.default.wrap(function(e){for(;;)switch(e.prev=e.next){case 0:return t=new c.HttpResetClass,this.number.value=Number(this.number.value)+1,t.load("POST","rs/logic/updatesinglevalue",{data:this.number},{resolveMsg:null,rejectMsg:"改装卡编号保存失败"}),t=new c.HttpResetClass,l=(0,s.default)({},this.billselect,this.billinfo),delete l.id,l.f_bill_type="改装卡",n={billinfo:l},e.next=10,t.load("POST","rs/logic/makebillrecord",{data:n},{resolveMsg:null,rejectMsg:"改装卡编号存储失败"});case 10:case"end":return e.stop()}},e,this)}));return e}()}}},504:function(e,t,l){t=e.exports=l(4)(),t.push([e.id,"","",{version:3,sources:[],names:[],mappings:"",file:"BillGZKMakeInfo.vue",sourceRoot:"webpack://"}])},586:function(e,t,l){var n=l(504);"string"==typeof n&&(n=[[e.id,n,""]]);l(5)(n,{});n.locals&&(e.exports=n.locals)},782:function(e,t){e.exports=' <billgzk v-ref:billqrk="" :billselect=billselect :billinfo=billinfo _v-3e30fbd0=""></billgzk> '},897:function(e,t,l){var n,r,s={};l(586),n=l(346),r=l(782),e.exports=n||{},e.exports.__esModule&&(e.exports=e.exports.default);var u="function"==typeof e.exports?e.exports.options||(e.exports.options={}):e.exports;r&&(u.template=r),u.computed||(u.computed={}),Object.keys(s).forEach(function(e){var t=s[e];u.computed[e]=function(){return t}})}});
2
- //# sourceMappingURL=43.js.map
@@ -1 +0,0 @@
1
- {"version":3,"sources":["webpack:///43.js","webpack:///BillGZKMakeInfo.vue","webpack:///./src/components/product/Bill/BillGZKMakeInfo.vue?f462","webpack:///./src/components/product/Bill/BillGZKMakeInfo.vue?e0d1","webpack:///./src/components/product/Bill/BillGZKMakeInfo.vue?4426","webpack:///./src/components/product/Bill/BillGZKMakeInfo.vue"],"names":["webpackJsonp","346","module","exports","__webpack_require__","_interopRequireDefault","obj","__esModule","default","Object","defineProperty","value","_assign","_assign2","_regenerator","_regenerator2","_asyncToGenerator2","_asyncToGenerator3","_vueClient","title","props","data","billinfo","f_billnumber","number","ready","_ref","apply","this","arguments","mark","_callee","http","res","wrap","_context","prev","next","HttpResetClass","tablename","condition","load","resolveMsg","rejectMsg","silent","sent","handle","stop","methods","length","updateNumber","_ref2","_callee2","_context2","Number","billselect","id","f_bill_type","504","push","version","sources","names","mappings","file","sourceRoot","586","content","locals","782","897","__vue_script__","__vue_template__","__vue_styles__","__vue_options__","options","template","computed","keys","forEach","key"],"mappings":"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","file":"43.js","sourcesContent":["webpackJsonp([43],{\n\n/***/ 346:\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t\n\tObject.defineProperty(exports, \"__esModule\", {\n\t value: true\n\t});\n\t\n\tvar _assign = __webpack_require__(11);\n\t\n\tvar _assign2 = _interopRequireDefault(_assign);\n\t\n\tvar _regenerator = __webpack_require__(2);\n\t\n\tvar _regenerator2 = _interopRequireDefault(_regenerator);\n\t\n\tvar _asyncToGenerator2 = __webpack_require__(7);\n\t\n\tvar _asyncToGenerator3 = _interopRequireDefault(_asyncToGenerator2);\n\t\n\tvar _vueClient = __webpack_require__(3);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\texports.default = {\n\t title: \"确认卡信息\",\n\t props: ['billselect', 'selectone'],\n\t data: function data() {\n\t return {\n\t billinfo: { f_billnumber: null },\n\t number: null\n\t };\n\t },\n\t ready: function () {\n\t var _ref = (0, _asyncToGenerator3.default)(_regenerator2.default.mark(function _callee() {\n\t var http, data, 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 http = new _vueClient.HttpResetClass();\n\t data = {\n\t tablename: 't_singlevalue',\n\t condition: 'name = \\'\\u6539\\u88C5\\u5361\\u7F16\\u53F7\\''\n\t };\n\t _context.next = 4;\n\t return http.load('POST', 'rs/sql/singleTable', { data: data }, {\n\t resolveMsg: null,\n\t rejectMsg: \"获取单据编号失败\"\n\t }, { silent: true });\n\t\n\t case 4:\n\t res = _context.sent;\n\t\n\t this.number = res.data[0];\n\t this.handle();\n\t this.billinfo.f_billnumber = this.number.value;\n\t\n\t case 8:\n\t case 'end':\n\t return _context.stop();\n\t }\n\t }\n\t }, _callee, this);\n\t }));\n\t\n\t function ready() {\n\t return _ref.apply(this, arguments);\n\t }\n\t\n\t return ready;\n\t }(),\n\t\n\t methods: {\n\t handle: function handle() {\n\t while (this.number.value.length < 8) {\n\t this.number.value = '0' + this.number.value;\n\t }\n\t },\n\t updateNumber: function () {\n\t var _ref2 = (0, _asyncToGenerator3.default)(_regenerator2.default.mark(function _callee2() {\n\t var http, billinfo, data;\n\t return _regenerator2.default.wrap(function _callee2$(_context2) {\n\t while (1) {\n\t switch (_context2.prev = _context2.next) {\n\t case 0:\n\t http = new _vueClient.HttpResetClass();\n\t\n\t this.number.value = Number(this.number.value) + 1;\n\t http.load('POST', 'rs/logic/updatesinglevalue', { data: this.number }, { resolveMsg: null, rejectMsg: \"改装卡编号保存失败\" });\n\t http = new _vueClient.HttpResetClass();\n\t billinfo = (0, _assign2.default)({}, this.billselect, this.billinfo);\n\t\n\t delete billinfo.id;\n\t\n\t billinfo.f_bill_type = '改装卡';\n\t data = {\n\t billinfo: billinfo\n\t };\n\t _context2.next = 10;\n\t return http.load('POST', 'rs/logic/makebillrecord', { data: data }, { resolveMsg: null, rejectMsg: \"改装卡编号存储失败\" });\n\t\n\t case 10:\n\t case 'end':\n\t return _context2.stop();\n\t }\n\t }\n\t }, _callee2, this);\n\t }));\n\t\n\t function updateNumber() {\n\t return _ref2.apply(this, arguments);\n\t }\n\t\n\t return updateNumber;\n\t }()\n\t }\n\t};\n\n/***/ }),\n\n/***/ 504:\n/***/ (function(module, exports, __webpack_require__) {\n\n\texports = module.exports = __webpack_require__(4)();\n\t// imports\n\t\n\t\n\t// module\n\texports.push([module.id, \"\", \"\", {\"version\":3,\"sources\":[],\"names\":[],\"mappings\":\"\",\"file\":\"BillGZKMakeInfo.vue\",\"sourceRoot\":\"webpack://\"}]);\n\t\n\t// exports\n\n\n/***/ }),\n\n/***/ 586:\n/***/ (function(module, exports, __webpack_require__) {\n\n\t// style-loader: Adds some css to the DOM by adding a <style> tag\n\t\n\t// load the styles\n\tvar content = __webpack_require__(504);\n\tif(typeof content === 'string') content = [[module.id, content, '']];\n\t// add the styles to the DOM\n\tvar update = __webpack_require__(5)(content, {});\n\tif(content.locals) module.exports = content.locals;\n\t// Hot Module Replacement\n\tif(false) {\n\t\t// When the styles change, update the <style> tags\n\t\tif(!content.locals) {\n\t\t\tmodule.hot.accept(\"!!../../../../node_modules/css-loader/index.js?sourceMap!../../../../node_modules/vue-loader/lib/style-rewriter.js?id=_v-3e30fbd0&scoped=true!../../../../node_modules/vue-loader/lib/selector.js?type=style&index=0!./BillGZKMakeInfo.vue\", function() {\n\t\t\t\tvar newContent = require(\"!!../../../../node_modules/css-loader/index.js?sourceMap!../../../../node_modules/vue-loader/lib/style-rewriter.js?id=_v-3e30fbd0&scoped=true!../../../../node_modules/vue-loader/lib/selector.js?type=style&index=0!./BillGZKMakeInfo.vue\");\n\t\t\t\tif(typeof newContent === 'string') newContent = [[module.id, newContent, '']];\n\t\t\t\tupdate(newContent);\n\t\t\t});\n\t\t}\n\t\t// When the module is disposed, remove the <style> tags\n\t\tmodule.hot.dispose(function() { update(); });\n\t}\n\n/***/ }),\n\n/***/ 782:\n/***/ (function(module, exports) {\n\n\tmodule.exports = \" <billgzk v-ref:billqrk=\\\"\\\" :billselect=billselect :billinfo=billinfo _v-3e30fbd0=\\\"\\\"></billgzk> \";\n\n/***/ }),\n\n/***/ 897:\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar __vue_script__, __vue_template__\n\tvar __vue_styles__ = {}\n\t__webpack_require__(586)\n\t__vue_script__ = __webpack_require__(346)\n\t__vue_template__ = __webpack_require__(782)\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// 43.js","<template>\r\n <billgzk v-ref:billqrk :billselect=\"billselect\" :billinfo=\"billinfo\"></billgzk>\r\n</template>\r\n\r\n<script>\r\n import {HttpResetClass} from 'vue-client'\r\n export default {\r\n title: \"确认卡信息\",\r\n props:['billselect','selectone'],\r\n data(){\r\n return{\r\n billinfo: {f_billnumber:null},\r\n number: null\r\n }\r\n },\r\n async ready(){\r\n let http = new HttpResetClass()\r\n let data = {\r\n tablename: 't_singlevalue',\r\n condition: `name = '改装卡编号'`\r\n }\r\n let res = await http.load('POST', 'rs/sql/singleTable', {data: data}, {\r\n resolveMsg: null,\r\n rejectMsg: \"获取单据编号失败\"\r\n }, {silent: true})\r\n this.number = res.data[0]\r\n this.handle()\r\n this.billinfo.f_billnumber = this.number.value\r\n },\r\n methods: {\r\n // 处理数字,例如: 1 转换成 001\r\n handle() {\r\n while (this.number.value.length < 8) {\r\n this.number.value = '0' + this.number.value\r\n }\r\n },\r\n // 更新 确认卡编号\r\n async updateNumber() {\r\n let http = new HttpResetClass()\r\n this.number.value = Number(this.number.value) + 1\r\n http.load('POST', 'rs/logic/updatesinglevalue', {data: this.number}, {resolveMsg: null, rejectMsg: \"改装卡编号保存失败\"})\r\n http = new HttpResetClass()\r\n let billinfo = Object.assign({}, this.billselect, this.billinfo)\r\n delete billinfo.id\r\n // 票据类型\r\n billinfo.f_bill_type = '改装卡'\r\n let data = {\r\n billinfo: billinfo\r\n }\r\n await http.load('POST', 'rs/logic/makebillrecord', {data: data}, {resolveMsg: null, rejectMsg: \"改装卡编号存储失败\"})\r\n }\r\n }\r\n }\r\n</script>\r\n\r\n<style scoped>\r\n\r\n</style>\r\n\n\n\n// WEBPACK FOOTER //\n// BillGZKMakeInfo.vue?6faa435c","exports = module.exports = require(\"../../../../node_modules/css-loader/lib/css-base.js\")();\n// imports\n\n\n// module\nexports.push([module.id, \"\", \"\", {\"version\":3,\"sources\":[],\"names\":[],\"mappings\":\"\",\"file\":\"BillGZKMakeInfo.vue\",\"sourceRoot\":\"webpack://\"}]);\n\n// exports\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./~/css-loader?sourceMap!./~/vue-loader/lib/style-rewriter.js?id=_v-3e30fbd0&scoped=true!./~/vue-loader/lib/selector.js?type=style&index=0!./src/components/product/Bill/BillGZKMakeInfo.vue\n// module id = 504\n// module chunks = 43","// style-loader: Adds some css to the DOM by adding a <style> tag\n\n// load the styles\nvar content = require(\"!!../../../../node_modules/css-loader/index.js?sourceMap!../../../../node_modules/vue-loader/lib/style-rewriter.js?id=_v-3e30fbd0&scoped=true!../../../../node_modules/vue-loader/lib/selector.js?type=style&index=0!./BillGZKMakeInfo.vue\");\nif(typeof content === 'string') content = [[module.id, content, '']];\n// add the styles to the DOM\nvar update = require(\"!../../../../node_modules/vue-style-loader/addStyles.js\")(content, {});\nif(content.locals) module.exports = content.locals;\n// Hot Module Replacement\nif(module.hot) {\n\t// When the styles change, update the <style> tags\n\tif(!content.locals) {\n\t\tmodule.hot.accept(\"!!../../../../node_modules/css-loader/index.js?sourceMap!../../../../node_modules/vue-loader/lib/style-rewriter.js?id=_v-3e30fbd0&scoped=true!../../../../node_modules/vue-loader/lib/selector.js?type=style&index=0!./BillGZKMakeInfo.vue\", function() {\n\t\t\tvar newContent = require(\"!!../../../../node_modules/css-loader/index.js?sourceMap!../../../../node_modules/vue-loader/lib/style-rewriter.js?id=_v-3e30fbd0&scoped=true!../../../../node_modules/vue-loader/lib/selector.js?type=style&index=0!./BillGZKMakeInfo.vue\");\n\t\t\tif(typeof newContent === 'string') newContent = [[module.id, newContent, '']];\n\t\t\tupdate(newContent);\n\t\t});\n\t}\n\t// When the module is disposed, remove the <style> tags\n\tmodule.hot.dispose(function() { update(); });\n}\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./~/extract-text-webpack-plugin/loader.js?{\"omit\":1,\"extract\":true,\"remove\":true}!./~/vue-style-loader!./~/css-loader?sourceMap!./~/vue-loader/lib/style-rewriter.js?id=_v-3e30fbd0&scoped=true!./~/vue-loader/lib/selector.js?type=style&index=0!./src/components/product/Bill/BillGZKMakeInfo.vue\n// module id = 586\n// module chunks = 43","module.exports = \" <billgzk v-ref:billqrk=\\\"\\\" :billselect=billselect :billinfo=billinfo _v-3e30fbd0=\\\"\\\"></billgzk> \";\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./~/vue-html-loader!./~/vue-loader/lib/template-rewriter.js?id=_v-3e30fbd0!./~/vue-loader/lib/selector.js?type=template&index=0!./src/components/product/Bill/BillGZKMakeInfo.vue\n// module id = 782\n// module chunks = 43","var __vue_script__, __vue_template__\nvar __vue_styles__ = {}\nrequire(\"!!../../../../node_modules/extract-text-webpack-plugin/loader.js?{\\\"omit\\\":1,\\\"extract\\\":true,\\\"remove\\\":true}!vue-style-loader!css-loader?sourceMap!../../../../node_modules/vue-loader/lib/style-rewriter.js?id=_v-3e30fbd0&scoped=true!../../../../node_modules/vue-loader/lib/selector.js?type=style&index=0!./BillGZKMakeInfo.vue\")\n__vue_script__ = require(\"!!babel-loader?presets[]=es2015&plugins[]=transform-runtime&comments=false!../../../../node_modules/vue-loader/lib/selector.js?type=script&index=0!./BillGZKMakeInfo.vue\")\n__vue_template__ = require(\"!!vue-html-loader!../../../../node_modules/vue-loader/lib/template-rewriter.js?id=_v-3e30fbd0!../../../../node_modules/vue-loader/lib/selector.js?type=template&index=0!./BillGZKMakeInfo.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/Bill/BillGZKMakeInfo.vue\n// module id = 897\n// module chunks = 43"],"sourceRoot":""}
@@ -1,2 +0,0 @@
1
- webpackJsonp([44],{345:function(e,t,i){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var s=i(3);t.default={title:"确认卡",props:["billselect","billinfo"],data:function(){return{model2:new s.DataModel("rs/report/gaizhuangka",{data:{processid:this.billselect.f_process_id,billinfo:this.billinfo,billselect:this.billselect}})}},methods:{load:function(){this.model2=null,this.model2=new s.DataModel("rs/report/gaizhuangka",{data:{processid:this.billselect.f_process_id,billinfo:this.billinfo,billselect:this.billselect}})}},watch:{model2:function(){this.model2&&this.$refs.page2.$refs.querenka.search()}}}},521:function(e,t,i){t=e.exports=i(4)(),t.push([e.id,"","",{version:3,sources:[],names:[],mappings:"",file:"BillGZK.vue",sourceRoot:"webpack://"}])},613:function(e,t,i){var s=i(521);"string"==typeof s&&(s=[[e.id,s,""]]);i(5)(s,{});s.locals&&(e.exports=s.locals)},809:function(e,t){e.exports=' <div style="width:800px;height: auto" _v-e0ec6c18=""> <criteria-paged v-ref:page2="" :model=model2 :pager=false _v-e0ec6c18=""> <criteria v-ref:querenka="" partial=criteria @condition-changed=search _v-e0ec6c18=""> <div novalidate="" class="form-inline auto" partial="" _v-e0ec6c18=""> <div class=form-group _v-e0ec6c18=""> <div class=col-sm-12 _v-e0ec6c18=""> <div class=col-sm-10 _v-e0ec6c18=""></div> <div class=col-sm-2 _v-e0ec6c18=""> <report-print @click=$parent.$parent.$parent.updateNumber() id=shexianss2 top=1cm left=1cm width=100% height=100% v-ref:reportprint="" _v-e0ec6c18=""></report-print> </div> </div> </div> </div> </criteria> <div partial=list id=shexianss2 _v-e0ec6c18=""> <table class=tablesty style="margin: 0px auto" border=1 _v-e0ec6c18=""> <tbody _v-e0ec6c18=""><tr _v-e0ec6c18=""> <th colspan=4 style="font-weight: normal" _v-e0ec6c18=""> {{{ model.data.substring(26,model.data.length-8) }}} </th> </tr> </tbody></table> </div> </criteria-paged> </div> '},896:function(e,t,i){var s,o,c={};i(613),s=i(345),o=i(809),e.exports=s||{},e.exports.__esModule&&(e.exports=e.exports.default);var l="function"==typeof e.exports?e.exports.options||(e.exports.options={}):e.exports;o&&(l.template=o),l.computed||(l.computed={}),Object.keys(c).forEach(function(e){var t=c[e];l.computed[e]=function(){return t}})}});
2
- //# sourceMappingURL=44.js.map
@@ -1 +0,0 @@
1
- {"version":3,"sources":["webpack:///44.js","webpack:///BillGZK.vue","webpack:///./src/components/product/Bill/BillGZK.vue?fa4a","webpack:///./src/components/product/Bill/BillGZK.vue?3382","webpack:///./src/components/product/Bill/BillGZK.vue?0635","webpack:///./src/components/product/Bill/BillGZK.vue"],"names":["webpackJsonp","345","module","exports","__webpack_require__","Object","defineProperty","value","_vueClient","default","title","props","data","model2","DataModel","processid","this","billselect","f_process_id","billinfo","methods","load","watch","$refs","page2","querenka","search","521","push","id","version","sources","names","mappings","file","sourceRoot","613","content","locals","809","896","__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,SCuBTC,MAAA,MACAC,OAAA,yBACAC,KAHA,WAIA,OACAC,OAAA,GAAAL,GAAAM,UAAA,yBACAF,MACAG,UAAAC,KAAAC,WAAAC,aACAC,SAAAH,KAAAG,SACAF,WAAAD,KAAAC,gBASAG,SACAC,KADA,WAEAL,KAAAH,OAAA,KACAG,KAAAH,OAAA,GAAAL,GAAAM,UAAA,yBACAF,MACAG,UAAAC,KAAAC,WAAAC,aACAC,SAAAH,KAAAG,SACAF,WAAAD,KAAAC,gBAKAK,OACAT,OADA,WAEAG,KAAAH,QACAG,KAAAO,MAAAC,MAAAD,MAAAE,SAAAC,aDhBMC,IACA,SAAUzB,EAAQC,EAASC,GErDjCD,EAAAD,EAAAC,QAAAC,EAAA,KAKAD,EAAAyB,MAAA1B,EAAA2B,GAAA,OAAkCC,QAAA,EAAAC,WAAAC,SAAAC,SAAA,GAAAC,KAAA,cAAAC,WAAA,iBF8D5BC,IACA,SAAUlC,EAAQC,EAASC,GGjEjC,GAAAiC,GAAAjC,EAAA,IACA,iBAAAiC,SAAAnC,EAAA2B,GAAAQ,EAAA,KAEAjC,GAAA,GAAAiC,KACAA,GAAAC,SAAApC,EAAAC,QAAAkC,EAAAC,SHuFMC,IACA,SAAUrC,EAAQC,GI/FxBD,EAAAC,QAAA,y9BJqGMqC,IACA,SAAUtC,EAAQC,EAASC,GKtGjC,GAAAqC,GAAAC,EACAC,IACAvC,GAAA,KACAqC,EAAArC,EAAA,KACAsC,EAAAtC,EAAA,KACAF,EAAAC,QAAAsC,MACAvC,EAAAC,QAAAyC,aAAA1C,EAAAC,QAAAD,EAAAC,QAAAM,QACA,IAAAoC,GAAA,kBAAA3C,GAAAC,QAAAD,EAAAC,QAAA2C,UAAA5C,EAAAC,QAAA2C,YAAoH5C,EAAAC,OACpHuC,KACAG,EAAAE,SAAAL,GAEAG,EAAAG,WAAAH,EAAAG,aACA3C,OAAA4C,KAAAN,GAAAO,QAAA,SAAAC,GACA,GAAAjD,GAAAyC,EAAAQ,EACAN,GAAAG,SAAAG,GAAA,WAA6C,MAAAjD","file":"44.js","sourcesContent":["webpackJsonp([44],{\n\n/***/ 345:\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 props: ['billselect', 'billinfo'],\n\t data: function data() {\n\t return {\n\t model2: new _vueClient.DataModel('rs/report/gaizhuangka', {\n\t data: {\n\t processid: this.billselect.f_process_id,\n\t billinfo: this.billinfo,\n\t billselect: this.billselect\n\t }\n\t })\n\t\n\t };\n\t },\n\t\n\t methods: {\n\t load: function load() {\n\t this.model2 = null;\n\t this.model2 = new _vueClient.DataModel('rs/report/gaizhuangka', {\n\t data: {\n\t processid: this.billselect.f_process_id,\n\t billinfo: this.billinfo,\n\t billselect: this.billselect\n\t }\n\t });\n\t }\n\t },\n\t watch: {\n\t 'model2': function model2() {\n\t if (this.model2) {\n\t this.$refs.page2.$refs.querenka.search();\n\t }\n\t }\n\t }\n\t};\n\n/***/ }),\n\n/***/ 521:\n/***/ (function(module, exports, __webpack_require__) {\n\n\texports = module.exports = __webpack_require__(4)();\n\t// imports\n\t\n\t\n\t// module\n\texports.push([module.id, \"\", \"\", {\"version\":3,\"sources\":[],\"names\":[],\"mappings\":\"\",\"file\":\"BillGZK.vue\",\"sourceRoot\":\"webpack://\"}]);\n\t\n\t// exports\n\n\n/***/ }),\n\n/***/ 613:\n/***/ (function(module, exports, __webpack_require__) {\n\n\t// style-loader: Adds some css to the DOM by adding a <style> tag\n\t\n\t// load the styles\n\tvar content = __webpack_require__(521);\n\tif(typeof content === 'string') content = [[module.id, content, '']];\n\t// add the styles to the DOM\n\tvar update = __webpack_require__(5)(content, {});\n\tif(content.locals) module.exports = content.locals;\n\t// Hot Module Replacement\n\tif(false) {\n\t\t// When the styles change, update the <style> tags\n\t\tif(!content.locals) {\n\t\t\tmodule.hot.accept(\"!!../../../../node_modules/css-loader/index.js?sourceMap!../../../../node_modules/vue-loader/lib/style-rewriter.js?id=_v-e0ec6c18&scoped=true!../../../../node_modules/vue-loader/lib/selector.js?type=style&index=0!./BillGZK.vue\", function() {\n\t\t\t\tvar newContent = require(\"!!../../../../node_modules/css-loader/index.js?sourceMap!../../../../node_modules/vue-loader/lib/style-rewriter.js?id=_v-e0ec6c18&scoped=true!../../../../node_modules/vue-loader/lib/selector.js?type=style&index=0!./BillGZK.vue\");\n\t\t\t\tif(typeof newContent === 'string') newContent = [[module.id, newContent, '']];\n\t\t\t\tupdate(newContent);\n\t\t\t});\n\t\t}\n\t\t// When the module is disposed, remove the <style> tags\n\t\tmodule.hot.dispose(function() { update(); });\n\t}\n\n/***/ }),\n\n/***/ 809:\n/***/ (function(module, exports) {\n\n\tmodule.exports = \" <div style=\\\"width:800px;height: auto\\\" _v-e0ec6c18=\\\"\\\"> <criteria-paged v-ref:page2=\\\"\\\" :model=model2 :pager=false _v-e0ec6c18=\\\"\\\"> <criteria v-ref:querenka=\\\"\\\" partial=criteria @condition-changed=search _v-e0ec6c18=\\\"\\\"> <div novalidate=\\\"\\\" class=\\\"form-inline auto\\\" partial=\\\"\\\" _v-e0ec6c18=\\\"\\\"> <div class=form-group _v-e0ec6c18=\\\"\\\"> <div class=col-sm-12 _v-e0ec6c18=\\\"\\\"> <div class=col-sm-10 _v-e0ec6c18=\\\"\\\"></div> <div class=col-sm-2 _v-e0ec6c18=\\\"\\\"> <report-print @click=$parent.$parent.$parent.updateNumber() id=shexianss2 top=1cm left=1cm width=100% height=100% v-ref:reportprint=\\\"\\\" _v-e0ec6c18=\\\"\\\"></report-print> </div> </div> </div> </div> </criteria> <div partial=list id=shexianss2 _v-e0ec6c18=\\\"\\\"> <table class=tablesty style=\\\"margin: 0px auto\\\" border=1 _v-e0ec6c18=\\\"\\\"> <tbody _v-e0ec6c18=\\\"\\\"><tr _v-e0ec6c18=\\\"\\\"> <th colspan=4 style=\\\"font-weight: normal\\\" _v-e0ec6c18=\\\"\\\"> {{{ model.data.substring(26,model.data.length-8) }}} </th> </tr> </tbody></table> </div> </criteria-paged> </div> \";\n\n/***/ }),\n\n/***/ 896:\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar __vue_script__, __vue_template__\n\tvar __vue_styles__ = {}\n\t__webpack_require__(613)\n\t__vue_script__ = __webpack_require__(345)\n\t__vue_template__ = __webpack_require__(809)\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// 44.js","<template>\r\n <div style=\"width:800px;height: auto\">\r\n <criteria-paged v-ref:page2 :model=\"model2\" :pager='false'>\r\n <criteria v-ref:querenka partial='criteria' @condition-changed='search'>\r\n <div novalidate class=\"form-inline auto\" partial>\r\n <div class=\"form-group\">\r\n <!--<span class=\"btn btn-default\" @click=\"search()\"></span>-->\r\n <!--<report-print id='shexianss' top='1cm' left='1cm' width='100%' height='100%'></report-print>-->\r\n <div class=\"col-sm-12\">\r\n <div class=\"col-sm-10\"></div>\r\n <div class=\"col-sm-2\">\r\n <report-print @click=\"$parent.$parent.$parent.updateNumber()\" id='shexianss2' top='1cm' left='1cm' width='100%'\r\n height='100%' v-ref:reportprint></report-print>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </criteria>\r\n <div partial='list' id='shexianss2'>\r\n <table class='tablesty' style=\"margin: 0px auto;\" border=\"1\">\r\n <tr>\r\n <th colspan='4' style=\"font-weight: normal;\">\r\n {{{ model.data.substring(26,model.data.length-8) }}}\r\n <!--{{model.data}}-->\r\n </th>\r\n </tr>\r\n </table>\r\n </div>\r\n </criteria-paged>\r\n </div>\r\n</template>\r\n\r\n<script>\r\n import {DataModel} from 'vue-client'\r\n\r\n export default {\r\n title: \"确认卡\",\r\n props: ['billselect','billinfo'],\r\n data() {\r\n return {\r\n model2: new DataModel('rs/report/gaizhuangka', {\r\n data: {\r\n processid: this.billselect.f_process_id,\r\n billinfo: this.billinfo,\r\n billselect: this.billselect\r\n }\r\n }),\r\n\r\n }\r\n },\r\n // ready() {\r\n // this.$refs.page2.$refs.querenka.search()\r\n // },\r\n methods: {\r\n load(){\r\n this.model2 = null\r\n this.model2 = new DataModel('rs/report/gaizhuangka', {\r\n data: {\r\n processid: this.billselect.f_process_id,\r\n billinfo: this.billinfo,\r\n billselect: this.billselect\r\n }\r\n })\r\n }\r\n },\r\n watch:{\r\n 'model2'(){\r\n if(this.model2){\r\n this.$refs.page2.$refs.querenka.search()\r\n }\r\n }\r\n }\r\n }\r\n</script>\r\n\r\n<style scoped>\r\n\r\n</style>\r\n\n\n\n// WEBPACK FOOTER //\n// BillGZK.vue?6e7c7e40","exports = module.exports = require(\"../../../../node_modules/css-loader/lib/css-base.js\")();\n// imports\n\n\n// module\nexports.push([module.id, \"\", \"\", {\"version\":3,\"sources\":[],\"names\":[],\"mappings\":\"\",\"file\":\"BillGZK.vue\",\"sourceRoot\":\"webpack://\"}]);\n\n// exports\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./~/css-loader?sourceMap!./~/vue-loader/lib/style-rewriter.js?id=_v-e0ec6c18&scoped=true!./~/vue-loader/lib/selector.js?type=style&index=0!./src/components/product/Bill/BillGZK.vue\n// module id = 521\n// module chunks = 44","// style-loader: Adds some css to the DOM by adding a <style> tag\n\n// load the styles\nvar content = require(\"!!../../../../node_modules/css-loader/index.js?sourceMap!../../../../node_modules/vue-loader/lib/style-rewriter.js?id=_v-e0ec6c18&scoped=true!../../../../node_modules/vue-loader/lib/selector.js?type=style&index=0!./BillGZK.vue\");\nif(typeof content === 'string') content = [[module.id, content, '']];\n// add the styles to the DOM\nvar update = require(\"!../../../../node_modules/vue-style-loader/addStyles.js\")(content, {});\nif(content.locals) module.exports = content.locals;\n// Hot Module Replacement\nif(module.hot) {\n\t// When the styles change, update the <style> tags\n\tif(!content.locals) {\n\t\tmodule.hot.accept(\"!!../../../../node_modules/css-loader/index.js?sourceMap!../../../../node_modules/vue-loader/lib/style-rewriter.js?id=_v-e0ec6c18&scoped=true!../../../../node_modules/vue-loader/lib/selector.js?type=style&index=0!./BillGZK.vue\", function() {\n\t\t\tvar newContent = require(\"!!../../../../node_modules/css-loader/index.js?sourceMap!../../../../node_modules/vue-loader/lib/style-rewriter.js?id=_v-e0ec6c18&scoped=true!../../../../node_modules/vue-loader/lib/selector.js?type=style&index=0!./BillGZK.vue\");\n\t\t\tif(typeof newContent === 'string') newContent = [[module.id, newContent, '']];\n\t\t\tupdate(newContent);\n\t\t});\n\t}\n\t// When the module is disposed, remove the <style> tags\n\tmodule.hot.dispose(function() { update(); });\n}\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./~/extract-text-webpack-plugin/loader.js?{\"omit\":1,\"extract\":true,\"remove\":true}!./~/vue-style-loader!./~/css-loader?sourceMap!./~/vue-loader/lib/style-rewriter.js?id=_v-e0ec6c18&scoped=true!./~/vue-loader/lib/selector.js?type=style&index=0!./src/components/product/Bill/BillGZK.vue\n// module id = 613\n// module chunks = 44","module.exports = \" <div style=\\\"width:800px;height: auto\\\" _v-e0ec6c18=\\\"\\\"> <criteria-paged v-ref:page2=\\\"\\\" :model=model2 :pager=false _v-e0ec6c18=\\\"\\\"> <criteria v-ref:querenka=\\\"\\\" partial=criteria @condition-changed=search _v-e0ec6c18=\\\"\\\"> <div novalidate=\\\"\\\" class=\\\"form-inline auto\\\" partial=\\\"\\\" _v-e0ec6c18=\\\"\\\"> <div class=form-group _v-e0ec6c18=\\\"\\\"> <div class=col-sm-12 _v-e0ec6c18=\\\"\\\"> <div class=col-sm-10 _v-e0ec6c18=\\\"\\\"></div> <div class=col-sm-2 _v-e0ec6c18=\\\"\\\"> <report-print @click=$parent.$parent.$parent.updateNumber() id=shexianss2 top=1cm left=1cm width=100% height=100% v-ref:reportprint=\\\"\\\" _v-e0ec6c18=\\\"\\\"></report-print> </div> </div> </div> </div> </criteria> <div partial=list id=shexianss2 _v-e0ec6c18=\\\"\\\"> <table class=tablesty style=\\\"margin: 0px auto\\\" border=1 _v-e0ec6c18=\\\"\\\"> <tbody _v-e0ec6c18=\\\"\\\"><tr _v-e0ec6c18=\\\"\\\"> <th colspan=4 style=\\\"font-weight: normal\\\" _v-e0ec6c18=\\\"\\\"> {{{ model.data.substring(26,model.data.length-8) }}} </th> </tr> </tbody></table> </div> </criteria-paged> </div> \";\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./~/vue-html-loader!./~/vue-loader/lib/template-rewriter.js?id=_v-e0ec6c18!./~/vue-loader/lib/selector.js?type=template&index=0!./src/components/product/Bill/BillGZK.vue\n// module id = 809\n// module chunks = 44","var __vue_script__, __vue_template__\nvar __vue_styles__ = {}\nrequire(\"!!../../../../node_modules/extract-text-webpack-plugin/loader.js?{\\\"omit\\\":1,\\\"extract\\\":true,\\\"remove\\\":true}!vue-style-loader!css-loader?sourceMap!../../../../node_modules/vue-loader/lib/style-rewriter.js?id=_v-e0ec6c18&scoped=true!../../../../node_modules/vue-loader/lib/selector.js?type=style&index=0!./BillGZK.vue\")\n__vue_script__ = require(\"!!babel-loader?presets[]=es2015&plugins[]=transform-runtime&comments=false!../../../../node_modules/vue-loader/lib/selector.js?type=script&index=0!./BillGZK.vue\")\n__vue_template__ = require(\"!!vue-html-loader!../../../../node_modules/vue-loader/lib/template-rewriter.js?id=_v-e0ec6c18!../../../../node_modules/vue-loader/lib/selector.js?type=template&index=0!./BillGZK.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/Bill/BillGZK.vue\n// module id = 896\n// module chunks = 44"],"sourceRoot":""}
@@ -1,2 +0,0 @@
1
- webpackJsonp([45],{239:function(n,o,e){"use strict";function s(n){return n&&n.__esModule?n:{default:n}}Object.defineProperty(o,"__esModule",{value:!0});var t=e(1),i=s(t);e(3);o.default={title:"移动端用户信息查询",props:{},data:function(){return{users:[],model:{f_userid:"",f_username:"",f_address:""},user:"",show:!1}},methods:{search:function(){var n=this;this.model.f_userid?this.model.f_userid:"1=1";var o="f_orgstr like '%"+i.default.user.f_orgids+"%'";o+=this.model.f_userid?" and f_userinfo_code = '"+this.model.f_userid+"'":" and 1=1",o+=this.model.f_username?" and f_user_name like '%"+this.model.f_username+"%'":" and 1=1",o+=this.model.f_address?" and f_address like '%"+this.model.f_address+"%'":" and 1=1",console.log(o),this.$resetpost(this.$androidUtil.getProxyUrl()+"/rs/sql/tel_UserInfo",{data:{condition:o}}).then(function(o){console.log("查找用户返回的结果"),console.log(o.data),n.users=o.data})},selectUser:function(n){this.user=n,this.show=!0},back:function(){this.show=!1}},ready:function(){}}},486:function(n,o,e){o=n.exports=e(4)(),o.push([n.id,".app-botton{position:fixed;background:#87b2dd;color:#fff;padding:8px;text-align:center;font-size:1.2em;z-index:10;opacity:.5;bottom:50px;margin-top:-10px;height:40px}","",{version:3,sources:["/./node_modules/system-phone/src/components/PhoneUserFind.vue"],names:[],mappings:"AAiGA,YACE,eAAe,AACf,mBAAoB,AACpB,WAAY,AACZ,YAAa,AACb,kBAAmB,AACnB,gBAAiB,AACjB,WAAY,AACZ,WAAY,AACZ,YAAa,AACb,iBAAkB,AAClB,WAAa,CACd",file:"PhoneUserFind.vue",sourcesContent:["\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n.app-botton {\n position:fixed;\n background: #87b2dd;\n color: #FFF;\n padding: 8px;\n text-align: center;\n font-size: 1.2em;\n z-index: 10;\n opacity:0.5;\n bottom: 50px;\n margin-top: -10px;\n height: 40px;\n}\n"],sourceRoot:"webpack://"}])},533:function(n,o,e){var s=e(486);"string"==typeof s&&(s=[[n.id,s,""]]);e(5)(s,{});s.locals&&(n.exports=s.locals)},655:function(n,o){n.exports=' <div class=app-botton @click=back() v-if=show> <span class="glyphicon glyphicon-menu-left">返回</span> </div> <div class="select-overspread auto" style=padding-bottom:5px v-show=!show> <div class="auto repair-info-content compatible"> <div class=row> <div class="col-xs-12 col-sm-12 col-md-12 form-input-group mg8"> <input type=text class=form-control v-model=model.f_userid placeholder=用户编号> </div> <div class="col-xs-12 col-sm-12 col-md-12 form-input-group mg8"> <input type=text class=form-control v-model=model.f_username placeholder=姓名> </div> <div class="col-xs-12 col-sm-12 col-md-12 form-input-group mg8"> <input type=text class=form-control v-model=model.f_address placeholder=地址> </div> </div> <div class=row> <button type=button name=button class="btn btn-primary pull-right" @click=search()>查询</button> </div> </div> <div partial class="panel panel-default well" style="padding: 0px;background-color:#ffffff" v-for="row in users"> <div class="panel-body inbg" @click=selectUser(row)> <div class="row auto"> <div class=col-sm-4> 用户编号: {{row.f_userinfo_code}} </div> <div class=col-sm-4> 用户姓名: {{row.f_user_name}} </div> <div class=col-sm-4> 用户电话: {{row.f_user_phone}} </div> <div class=col-sm-3> 用户类别: {{row.f_user_type}} </div> <div class=col-sm-9> 地址信息: {{row.f_address}} </div> </div> </div> </div> </div> <phone-info-table :user=user :is-need-condition=false :is-group=false v-if=show></phone-info-table> '},818:function(n,o,e){var s,t,i={};e(533),s=e(239),t=e(655),n.exports=s||{},n.exports.__esModule&&(n.exports=n.exports.default);var d="function"==typeof n.exports?n.exports.options||(n.exports.options={}):n.exports;t&&(d.template=t),d.computed||(d.computed={}),Object.keys(i).forEach(function(n){var o=i[n];d.computed[n]=function(){return o}})}});
2
- //# sourceMappingURL=45.js.map
@@ -1 +0,0 @@
1
- {"version":3,"sources":["webpack:///45.js","webpack:///PhoneUserFind.vue","webpack:///./~/system-phone/src/components/PhoneUserFind.vue?676f","webpack:///./~/system-phone/src/components/PhoneUserFind.vue?3cb4","webpack:///./~/system-phone/src/components/PhoneUserFind.vue?45e1","webpack:///./~/system-phone/src/components/PhoneUserFind.vue"],"names":["webpackJsonp","239","module","exports","__webpack_require__","_interopRequireDefault","obj","__esModule","default","Object","defineProperty","value","_vue","_vue2","title","props","data","users","model","f_userid","f_username","f_address","user","show","methods","search","_this","this","condition","f_orgids","console","log","$resetpost","$androidUtil","getProxyUrl","then","res","selectUser","row","back","ready","486","push","id","version","sources","names","mappings","file","sourcesContent","sourceRoot","533","content","locals","655","818","__vue_script__","__vue_template__","__vue_styles__","__vue_options__","options","template","computed","keys","forEach","key"],"mappings":"AAAAA,cAAc,KAERC,IACA,SAAUC,EAAQC,EAASC,GAEhC,YAYA,SAASC,GAAuBC,GAAO,MAAOA,IAAOA,EAAIC,WAAaD,GAAQE,QAASF,GAVvFG,OAAOC,eAAeP,EAAS,cAC7BQ,OAAO,GAGT,IAAIC,GAAOR,EAAoB,GAE3BS,EAAQR,EAAuBO,ECmCpCR,GAAA,ED7BCD,GAAQK,SC+BTM,MAAA,YACAC,SAGAC,KALA,WAMA,OACAC,SACAC,OACAC,SAAA,GACAC,WAAA,GACAC,UAAA,IAEAC,KAAA,GACAC,MAAA,IAGAC,SACAC,OADA,WACA,GAAAC,GAAAC,IACAA,MAAAT,MAAAC,SAAAQ,KAAAT,MAAAC,SAAA,KACA,IAAAS,GAAA,mBAAAf,EAAAL,QAAAc,KAAAO,SAAA,IACAD,IAAAD,KAAAT,MAAAC,SAAA,2BAAAQ,KAAAT,MAAAC,SAAA,eACAS,GAAAD,KAAAT,MAAAE,WAAA,2BAAAO,KAAAT,MAAAE,WAAA,gBACAQ,GAAAD,KAAAT,MAAAG,UAAA,yBAAAM,KAAAT,MAAAG,UAAA,gBACAS,QAAAC,IAAAH,GACAD,KAAAK,WAAAL,KAAAM,aAAAC,cAAA,wBACAlB,MACAY,eAEAO,KAAA,SAAAC,GACAN,QAAAC,IAAA,aACAD,QAAAC,IAAAK,EAAApB,MACAU,EAAAT,MAAAmB,EAAApB,QAGAqB,WAlBA,SAkBAC,GACAX,KAAAL,KAAAgB,EACAX,KAAAJ,MAAA,GAEAgB,KAtBA,WAuBAZ,KAAAJ,MAAA,IAGAiB,MA3CA,eDmBMC,IACA,SAAUvC,EAAQC,EAASC,GErEjCD,EAAAD,EAAAC,QAAAC,EAAA,KAKAD,EAAAuC,MAAAxC,EAAAyC,GAAA,yKAAgM,IAAQC,QAAA,EAAAC,SAAA,iEAAAC,SAAAC,SAAA,uIAAAC,KAAA,oBAAAC,gBAAA,waAAqsBC,WAAA,iBF8Ev4BC,IACA,SAAUjD,EAAQC,EAASC,GGjFjC,GAAAgD,GAAAhD,EAAA,IACA,iBAAAgD,SAAAlD,EAAAyC,GAAAS,EAAA,KAEAhD,GAAA,GAAAgD,KACAA,GAAAC,SAAAnD,EAAAC,QAAAiD,EAAAC,SHuGMC,IACA,SAAUpD,EAAQC,GI/GxBD,EAAAC,QAAA,+4CJqHMoD,IACA,SAAUrD,EAAQC,EAASC,GKtHjC,GAAAoD,GAAAC,EACAC,IACAtD,GAAA,KACAoD,EAAApD,EAAA,KACAqD,EAAArD,EAAA,KACAF,EAAAC,QAAAqD,MACAtD,EAAAC,QAAAI,aAAAL,EAAAC,QAAAD,EAAAC,QAAAK,QACA,IAAAmD,GAAA,kBAAAzD,GAAAC,QAAAD,EAAAC,QAAAyD,UAAA1D,EAAAC,QAAAyD,YAAoH1D,EAAAC,OACpHsD,KACAE,EAAAE,SAAAJ,GAEAE,EAAAG,WAAAH,EAAAG,aACArD,OAAAsD,KAAAL,GAAAM,QAAA,SAAAC,GACA,GAAA/D,GAAAwD,EAAAO,EACAN,GAAAG,SAAAG,GAAA,WAA6C,MAAA/D","file":"45.js","sourcesContent":["webpackJsonp([45],{\n\n/***/ 239:\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t\n\tObject.defineProperty(exports, \"__esModule\", {\n\t value: true\n\t});\n\t\n\tvar _vue = __webpack_require__(1);\n\t\n\tvar _vue2 = _interopRequireDefault(_vue);\n\t\n\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: {},\n\t data: function data() {\n\t return {\n\t users: [],\n\t model: {\n\t f_userid: '',\n\t f_username: '',\n\t f_address: ''\n\t },\n\t user: '',\n\t show: false\n\t };\n\t },\n\t\n\t methods: {\n\t search: function search() {\n\t var _this = this;\n\t\n\t this.model.f_userid ? this.model.f_userid : '1=1';\n\t var condition = 'f_orgstr like \\'%' + _vue2.default.user.f_orgids + '%\\'';\n\t condition += this.model.f_userid ? ' and f_userinfo_code = \\'' + this.model.f_userid + '\\'' : ' and 1=1';\n\t condition += this.model.f_username ? ' and f_user_name like \\'%' + this.model.f_username + '%\\'' : ' and 1=1';\n\t condition += this.model.f_address ? ' and f_address like \\'%' + this.model.f_address + '%\\'' : ' and 1=1';\n\t console.log(condition);\n\t this.$resetpost(this.$androidUtil.getProxyUrl() + '/rs/sql/tel_UserInfo', {\n\t data: {\n\t condition: condition\n\t }\n\t }).then(function (res) {\n\t console.log(\"查找用户返回的结果\");\n\t console.log(res.data);\n\t _this.users = res.data;\n\t });\n\t },\n\t selectUser: function selectUser(row) {\n\t this.user = row;\n\t this.show = true;\n\t },\n\t back: function back() {\n\t this.show = false;\n\t }\n\t },\n\t ready: function ready() {}\n\t};\n\n/***/ }),\n\n/***/ 486:\n/***/ (function(module, exports, __webpack_require__) {\n\n\texports = module.exports = __webpack_require__(4)();\n\t// imports\n\t\n\t\n\t// module\n\texports.push([module.id, \".app-botton{position:fixed;background:#87b2dd;color:#fff;padding:8px;text-align:center;font-size:1.2em;z-index:10;opacity:.5;bottom:50px;margin-top:-10px;height:40px}\", \"\", {\"version\":3,\"sources\":[\"/./node_modules/system-phone/src/components/PhoneUserFind.vue\"],\"names\":[],\"mappings\":\"AAiGA,YACE,eAAe,AACf,mBAAoB,AACpB,WAAY,AACZ,YAAa,AACb,kBAAmB,AACnB,gBAAiB,AACjB,WAAY,AACZ,WAAY,AACZ,YAAa,AACb,iBAAkB,AAClB,WAAa,CACd\",\"file\":\"PhoneUserFind.vue\",\"sourcesContent\":[\"\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n.app-botton {\\n position:fixed;\\n background: #87b2dd;\\n color: #FFF;\\n padding: 8px;\\n text-align: center;\\n font-size: 1.2em;\\n z-index: 10;\\n opacity:0.5;\\n bottom: 50px;\\n margin-top: -10px;\\n height: 40px;\\n}\\n\"],\"sourceRoot\":\"webpack://\"}]);\n\t\n\t// exports\n\n\n/***/ }),\n\n/***/ 533:\n/***/ (function(module, exports, __webpack_require__) {\n\n\t// style-loader: Adds some css to the DOM by adding a <style> tag\n\t\n\t// load the styles\n\tvar content = __webpack_require__(486);\n\tif(typeof content === 'string') content = [[module.id, content, '']];\n\t// add the styles to the DOM\n\tvar update = __webpack_require__(5)(content, {});\n\tif(content.locals) module.exports = content.locals;\n\t// Hot Module Replacement\n\tif(false) {\n\t\t// When the styles change, update the <style> tags\n\t\tif(!content.locals) {\n\t\t\tmodule.hot.accept(\"!!../../../css-loader/index.js?sourceMap!../../../vue-loader/lib/style-rewriter.js!../../../vue-loader/lib/selector.js?type=style&index=0!./PhoneUserFind.vue\", function() {\n\t\t\t\tvar newContent = require(\"!!../../../css-loader/index.js?sourceMap!../../../vue-loader/lib/style-rewriter.js!../../../vue-loader/lib/selector.js?type=style&index=0!./PhoneUserFind.vue\");\n\t\t\t\tif(typeof newContent === 'string') newContent = [[module.id, newContent, '']];\n\t\t\t\tupdate(newContent);\n\t\t\t});\n\t\t}\n\t\t// When the module is disposed, remove the <style> tags\n\t\tmodule.hot.dispose(function() { update(); });\n\t}\n\n/***/ }),\n\n/***/ 655:\n/***/ (function(module, exports) {\n\n\tmodule.exports = \" <div class=app-botton @click=back() v-if=show> <span class=\\\"glyphicon glyphicon-menu-left\\\">返回</span> </div> <div class=\\\"select-overspread auto\\\" style=padding-bottom:5px v-show=!show> <div class=\\\"auto repair-info-content compatible\\\"> <div class=row> <div class=\\\"col-xs-12 col-sm-12 col-md-12 form-input-group mg8\\\"> <input type=text class=form-control v-model=model.f_userid placeholder=用户编号> </div> <div class=\\\"col-xs-12 col-sm-12 col-md-12 form-input-group mg8\\\"> <input type=text class=form-control v-model=model.f_username placeholder=姓名> </div> <div class=\\\"col-xs-12 col-sm-12 col-md-12 form-input-group mg8\\\"> <input type=text class=form-control v-model=model.f_address placeholder=地址> </div> </div> <div class=row> <button type=button name=button class=\\\"btn btn-primary pull-right\\\" @click=search()>查询</button> </div> </div> <div partial class=\\\"panel panel-default well\\\" style=\\\"padding: 0px;background-color:#ffffff\\\" v-for=\\\"row in users\\\"> <div class=\\\"panel-body inbg\\\" @click=selectUser(row)> <div class=\\\"row auto\\\"> <div class=col-sm-4> 用户编号: {{row.f_userinfo_code}} </div> <div class=col-sm-4> 用户姓名: {{row.f_user_name}} </div> <div class=col-sm-4> 用户电话: {{row.f_user_phone}} </div> <div class=col-sm-3> 用户类别: {{row.f_user_type}} </div> <div class=col-sm-9> 地址信息: {{row.f_address}} </div> </div> </div> </div> </div> <phone-info-table :user=user :is-need-condition=false :is-group=false v-if=show></phone-info-table> \";\n\n/***/ }),\n\n/***/ 818:\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar __vue_script__, __vue_template__\n\tvar __vue_styles__ = {}\n\t__webpack_require__(533)\n\t__vue_script__ = __webpack_require__(239)\n\t__vue_template__ = __webpack_require__(655)\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// 45.js","<template>\n <div class=\"app-botton\" @click=\"back()\" v-if=\"show\">\n <span class=\"glyphicon glyphicon-menu-left\">返回</span>\n </div>\n <div class=\"select-overspread auto\" style=\"padding-bottom:5px;\" v-show=\"!show\">\n <div class=\"auto repair-info-content compatible\">\n <div class=\"row\">\n <div class=\"col-xs-12 col-sm-12 col-md-12 form-input-group mg8\">\n <input type=\"text\" class=\"form-control\" v-model=\"model.f_userid\" placeholder='用户编号'>\n </div>\n <div class=\"col-xs-12 col-sm-12 col-md-12 form-input-group mg8\">\n <input type=\"text\" class=\"form-control\" v-model=\"model.f_username\" placeholder='姓名'>\n </div>\n <div class=\"col-xs-12 col-sm-12 col-md-12 form-input-group mg8\">\n <input type=\"text\" class=\"form-control\" v-model=\"model.f_address\" placeholder='地址'>\n </div>\n </div>\n <div class=\"row\">\n <button type=\"button\" name=\"button\" class=\"btn btn-primary pull-right\" @click=\"search()\">查询</button>\n </div>\n </div>\n <div partial class=\"panel panel-default well\" style=\"padding: 0px;background-color:#ffffff;\" v-for=\"row in users\">\n <div class=\"panel-body inbg\" @click=\"selectUser(row)\">\n <div class=\"row auto\" >\n <div class=\"col-sm-4\">\n 用户编号: {{row.f_userinfo_code}}\n </div>\n <div class=\"col-sm-4\">\n 用户姓名: {{row.f_user_name}}\n </div>\n <div class=\"col-sm-4\">\n 用户电话: {{row.f_user_phone}}\n </div>\n <div class=\"col-sm-3\">\n 用户类别: {{row.f_user_type}}\n </div>\n <div class=\"col-sm-9\">\n 地址信息: {{row.f_address}}\n </div>\n </div>\n </div>\n </div>\n </div>\n <phone-info-table :user=\"user\" :is-need-condition=\"false\" :is-group=\"false\" v-if=\"show\"></phone-info-table>\n</template>\n\n<script>\n import Vue from 'vue'\n import { HttpResetClass } from 'vue-client'\n export default {\n title: '移动端用户信息查询',\n props: {\n\n },\n data () {\n return {\n users:[],\n model:{\n f_userid:'',\n f_username:'',\n f_address:''\n },\n user:'',\n show:false\n }\n },\n methods: {\n search() {\n this.model.f_userid ? this.model.f_userid : '1=1'\n let condition = `f_orgstr like '%${Vue.user.f_orgids}%'`\n condition += this.model.f_userid ? ` and f_userinfo_code = '${this.model.f_userid}'` : ' and 1=1'\n condition += this.model.f_username ? ` and f_user_name like '%${this.model.f_username}%'` : ' and 1=1'\n condition += this.model.f_address ? ` and f_address like '%${this.model.f_address}%'` : ' and 1=1'\n console.log(condition)\n this.$resetpost(`${this.$androidUtil.getProxyUrl()}/rs/sql/tel_UserInfo`, {\n data: {\n condition:condition\n }\n }).then((res) => {\n console.log(\"查找用户返回的结果\")\n console.log(res.data)\n this.users = res.data\n })\n },\n selectUser(row){\n this.user = row\n this.show = true\n },\n back(){\n this.show = false\n }\n },\n ready(){\n }\n }\n</script>\n<style>\n .app-botton {\n position:fixed;\n background: #87b2dd;\n color: #FFF;\n padding: 8px;\n text-align: center;\n font-size: 1.2em;\n z-index: 10;\n opacity:0.5;\n bottom: 50px;\n margin-top: -10px;\n height: 40px;\n }\n</style>\n\n\n\n// WEBPACK FOOTER //\n// PhoneUserFind.vue?4d63d306","exports = module.exports = require(\"../../../css-loader/lib/css-base.js\")();\n// imports\n\n\n// module\nexports.push([module.id, \".app-botton{position:fixed;background:#87b2dd;color:#fff;padding:8px;text-align:center;font-size:1.2em;z-index:10;opacity:.5;bottom:50px;margin-top:-10px;height:40px}\", \"\", {\"version\":3,\"sources\":[\"/./node_modules/system-phone/src/components/PhoneUserFind.vue\"],\"names\":[],\"mappings\":\"AAiGA,YACE,eAAe,AACf,mBAAoB,AACpB,WAAY,AACZ,YAAa,AACb,kBAAmB,AACnB,gBAAiB,AACjB,WAAY,AACZ,WAAY,AACZ,YAAa,AACb,iBAAkB,AAClB,WAAa,CACd\",\"file\":\"PhoneUserFind.vue\",\"sourcesContent\":[\"\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n.app-botton {\\n position:fixed;\\n background: #87b2dd;\\n color: #FFF;\\n padding: 8px;\\n text-align: center;\\n font-size: 1.2em;\\n z-index: 10;\\n opacity:0.5;\\n bottom: 50px;\\n margin-top: -10px;\\n height: 40px;\\n}\\n\"],\"sourceRoot\":\"webpack://\"}]);\n\n// exports\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./~/css-loader?sourceMap!./~/vue-loader/lib/style-rewriter.js!./~/vue-loader/lib/selector.js?type=style&index=0!./~/system-phone/src/components/PhoneUserFind.vue\n// module id = 486\n// module chunks = 45","// style-loader: Adds some css to the DOM by adding a <style> tag\n\n// load the styles\nvar content = require(\"!!../../../css-loader/index.js?sourceMap!../../../vue-loader/lib/style-rewriter.js!../../../vue-loader/lib/selector.js?type=style&index=0!./PhoneUserFind.vue\");\nif(typeof content === 'string') content = [[module.id, content, '']];\n// add the styles to the DOM\nvar update = require(\"!../../../vue-style-loader/addStyles.js\")(content, {});\nif(content.locals) module.exports = content.locals;\n// Hot Module Replacement\nif(module.hot) {\n\t// When the styles change, update the <style> tags\n\tif(!content.locals) {\n\t\tmodule.hot.accept(\"!!../../../css-loader/index.js?sourceMap!../../../vue-loader/lib/style-rewriter.js!../../../vue-loader/lib/selector.js?type=style&index=0!./PhoneUserFind.vue\", function() {\n\t\t\tvar newContent = require(\"!!../../../css-loader/index.js?sourceMap!../../../vue-loader/lib/style-rewriter.js!../../../vue-loader/lib/selector.js?type=style&index=0!./PhoneUserFind.vue\");\n\t\t\tif(typeof newContent === 'string') newContent = [[module.id, newContent, '']];\n\t\t\tupdate(newContent);\n\t\t});\n\t}\n\t// When the module is disposed, remove the <style> tags\n\tmodule.hot.dispose(function() { update(); });\n}\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./~/extract-text-webpack-plugin/loader.js?{\"omit\":1,\"extract\":true,\"remove\":true}!./~/vue-style-loader!./~/css-loader?sourceMap!./~/vue-loader/lib/style-rewriter.js!./~/vue-loader/lib/selector.js?type=style&index=0!./~/system-phone/src/components/PhoneUserFind.vue\n// module id = 533\n// module chunks = 45","module.exports = \" <div class=app-botton @click=back() v-if=show> <span class=\\\"glyphicon glyphicon-menu-left\\\">返回</span> </div> <div class=\\\"select-overspread auto\\\" style=padding-bottom:5px v-show=!show> <div class=\\\"auto repair-info-content compatible\\\"> <div class=row> <div class=\\\"col-xs-12 col-sm-12 col-md-12 form-input-group mg8\\\"> <input type=text class=form-control v-model=model.f_userid placeholder=用户编号> </div> <div class=\\\"col-xs-12 col-sm-12 col-md-12 form-input-group mg8\\\"> <input type=text class=form-control v-model=model.f_username placeholder=姓名> </div> <div class=\\\"col-xs-12 col-sm-12 col-md-12 form-input-group mg8\\\"> <input type=text class=form-control v-model=model.f_address placeholder=地址> </div> </div> <div class=row> <button type=button name=button class=\\\"btn btn-primary pull-right\\\" @click=search()>查询</button> </div> </div> <div partial class=\\\"panel panel-default well\\\" style=\\\"padding: 0px;background-color:#ffffff\\\" v-for=\\\"row in users\\\"> <div class=\\\"panel-body inbg\\\" @click=selectUser(row)> <div class=\\\"row auto\\\"> <div class=col-sm-4> 用户编号: {{row.f_userinfo_code}} </div> <div class=col-sm-4> 用户姓名: {{row.f_user_name}} </div> <div class=col-sm-4> 用户电话: {{row.f_user_phone}} </div> <div class=col-sm-3> 用户类别: {{row.f_user_type}} </div> <div class=col-sm-9> 地址信息: {{row.f_address}} </div> </div> </div> </div> </div> <phone-info-table :user=user :is-need-condition=false :is-group=false v-if=show></phone-info-table> \";\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./~/vue-html-loader!./~/vue-loader/lib/selector.js?type=template&index=0!./~/system-phone/src/components/PhoneUserFind.vue\n// module id = 655\n// module chunks = 45","var __vue_script__, __vue_template__\nvar __vue_styles__ = {}\nrequire(\"!!../../../extract-text-webpack-plugin/loader.js?{\\\"omit\\\":1,\\\"extract\\\":true,\\\"remove\\\":true}!vue-style-loader!css-loader?sourceMap!../../../vue-loader/lib/style-rewriter.js!../../../vue-loader/lib/selector.js?type=style&index=0!./PhoneUserFind.vue\")\n__vue_script__ = require(\"!!babel-loader?presets[]=es2015&plugins[]=transform-runtime&comments=false!../../../vue-loader/lib/selector.js?type=script&index=0!./PhoneUserFind.vue\")\n__vue_template__ = require(\"!!vue-html-loader!../../../vue-loader/lib/selector.js?type=template&index=0!./PhoneUserFind.vue\")\nmodule.exports = __vue_script__ || {}\nif (module.exports.__esModule) module.exports = module.exports.default\nvar __vue_options__ = typeof module.exports === \"function\" ? (module.exports.options || (module.exports.options = {})) : module.exports\nif (__vue_template__) {\n__vue_options__.template = __vue_template__\n}\nif (!__vue_options__.computed) __vue_options__.computed = {}\nObject.keys(__vue_styles__).forEach(function (key) {\nvar module = __vue_styles__[key]\n__vue_options__.computed[key] = function () { return module }\n})\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./~/system-phone/src/components/PhoneUserFind.vue\n// module id = 818\n// module chunks = 45"],"sourceRoot":""}
@@ -1,2 +0,0 @@
1
- webpackJsonp([46],{238:function(n,o,e){"use strict";function s(n){return n&&n.__esModule?n:{default:n}}Object.defineProperty(o,"__esModule",{value:!0});var t=(e(3),e(8));s(t);o.default={title:"查询用户",data:function(){return{model:[],show:!1,row:Object}},props:{user:{type:Object},f_userinfo_id:""},methods:{getmodel:function(){var n=this,o=void 0;this.f_userinfo_id?o=this.f_userinfo_id:(o=this.user.f_userinfo_id,console.log(this.user.f_userinfo_id)),console.log(o),this.$resetpost(this.$androidUtil.getProxyUrl()+"/rs/sql/tel_singleTable_OrderBy",{data:{items:"*",tablename:"t_sellinggas",orderitem:"f_delivery_date desc",condition:"f_userinfo_id = '"+o+"'"}}).then(function(o){n.model=o.data})},back:function(){}},watch:{user:function(n){this.user&&(this.user.isNuN||(this.model=[],this.getmodel()))},f_userinfo_id:function(){this.f_userinfo_id&&(this.model=[],this.getmodel())}},ready:function(){this.user&&this.user.f_userinfo_id&&this.getmodel(),this.f_userinfo_id&&this.getmodel()}}},485:function(n,o,e){o=n.exports=e(4)(),o.push([n.id,".app-botton{position:fixed;background:#87b2dd;color:#fff;padding:8px;text-align:center;font-size:1.2em;z-index:10;opacity:.5;bottom:50px;margin-top:-10px;height:40px}","",{version:3,sources:["/./node_modules/system-phone/src/components/PhoneSellInfo.vue"],names:[],mappings:"AAyGA,YACE,eAAe,AACf,mBAAoB,AACpB,WAAY,AACZ,YAAa,AACb,kBAAmB,AACnB,gBAAiB,AACjB,WAAY,AACZ,WAAY,AACZ,YAAa,AACb,iBAAkB,AAClB,WAAa,CACd",file:"PhoneSellInfo.vue",sourcesContent:["\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n.app-botton {\n position:fixed;\n background: #87b2dd;\n color: #FFF;\n padding: 8px;\n text-align: center;\n font-size: 1.2em;\n z-index: 10;\n opacity:0.5;\n bottom: 50px;\n margin-top: -10px;\n height: 40px;\n}\n"],sourceRoot:"webpack://"}])},532:function(n,o,e){var s=e(485);"string"==typeof s&&(s=[[n.id,s,""]]);e(5)(s,{});s.locals&&(n.exports=s.locals)},654:function(n,o){n.exports=' <div class="panel panel-default auto repair-info-content"> <div class=panel-body> <div class="panel panel-default well" v-for="row in model"> <div class=bg-info> <div class="row form-group"> <div class="col-xs-12 col-sm-12 col-md-12"> <div class=row> <div class="col-xs-6 col-sm-6 col-md-6"> 购气量: {{row.f_pregas}} </div> <div class="col-xs-6 col-sm-6 col-md-6"> 购气金额: {{row.f_preamount}} </div> <div class="col-xs-6 col-sm-6 col-md-6"> 收费状态: {{row.f_charge_state}} </div> <div class="col-xs-6 col-sm-6 col-md-6"> 缴费方式: {{row.f_payment}} </div> <div class="col-xs-6 col-sm-6 col-md-6"> 营业网点: {{row.f_outlets}} </div> <div class="col-xs-6 col-sm-6 col-md-6"> 操作员: {{row.f_operator}} </div> <div class="col-xs-12 col-sm-12 col-md-12"> 购气时间: {{row.f_delivery_date.substring(0,11)}} {{row.f_delivery_date.substring(11,19)}} </div> </div> </div> </div> </div> </div> <p v-show="model.length == 0 ">此用户暂无购气记录</p> </div> </div> '},817:function(n,o,e){var s,t,i={};e(532),s=e(238),t=e(654),n.exports=s||{},n.exports.__esModule&&(n.exports=n.exports.default);var d="function"==typeof n.exports?n.exports.options||(n.exports.options={}):n.exports;t&&(d.template=t),d.computed||(d.computed={}),Object.keys(i).forEach(function(n){var o=i[n];d.computed[n]=function(){return o}})}});
2
- //# sourceMappingURL=46.js.map
@@ -1 +0,0 @@
1
- {"version":3,"sources":["webpack:///46.js","webpack:///PhoneSellInfo.vue","webpack:///./~/system-phone/src/components/PhoneSellInfo.vue?25a7","webpack:///./~/system-phone/src/components/PhoneSellInfo.vue?5543","webpack:///./~/system-phone/src/components/PhoneSellInfo.vue?eeb9","webpack:///./~/system-phone/src/components/PhoneSellInfo.vue"],"names":["webpackJsonp","238","module","exports","__webpack_require__","_interopRequireDefault","obj","__esModule","default","Object","defineProperty","value","_co","title","data","model","show","row","props","user","type","f_userinfo_id","methods","getmodel","_this","this","userinfoid","console","log","$resetpost","$androidUtil","getProxyUrl","items","tablename","orderitem","condition","then","back","watch","val","isNuN","ready","485","push","id","version","sources","names","mappings","file","sourcesContent","sourceRoot","532","content","locals","654","817","__vue_script__","__vue_template__","__vue_styles__","__vue_options__","options","template","computed","keys","forEach","key"],"mappings":"AAAAA,cAAc,KAERC,IACA,SAAUC,EAAQC,EAASC,GAEhC,YAYA,SAASC,GAAuBC,GAAO,MAAOA,IAAOA,EAAIC,WAAaD,GAAQE,QAASF,GAVvFG,OAAOC,eAAeP,EAAS,cAC7BQ,OAAO,GAGT,IC+BDC,ID/BkBR,EAAoB,GC+BtCA,EAAA,GD3BYC,GAAuBO,EAIlCT,GAAQK,SCyBTK,MAAA,OACAC,KAFA,WAGA,OACAC,SACAC,MAAA,EACAC,IAAAR,SAGAS,OACAC,MACAC,KAAAX,QAEAY,cAAA,IAEAC,SACAC,SADA,WACA,GAAAC,GAAAC,KACAC,EAAA,MACAD,MAAAJ,cACAK,EAAAD,KAAAJ,eAEAK,EAAAD,KAAAN,KAAAE,cACAM,QAAAC,IAAAH,KAAAN,KAAAE,gBAEAM,QAAAC,IAAAF,GACAD,KAAAI,WAAAJ,KAAAK,aAAAC,cAAA,mCAAAjB,MAAAkB,MAAA,IAAAC,UAAA,eAAAC,UAAA,uBAAAC,UAAA,oBAAAT,EAAA,OAAAU,KAAA,SAAAnB,GACAO,EAAAT,MAAAE,EAAAH,QAGAuB,KAdA,cAkBAC,OACAnB,KADA,SACAoB,GAEAd,KAAAN,OACAM,KAAAN,KAAAqB,QACAf,KAAAV,SACAU,KAAAF,cAIAF,cAVA,WAWAI,KAAAJ,gBACAI,KAAAV,SACAU,KAAAF,cAIAkB,MAlDA,WAmDAhB,KAAAN,MAAAM,KAAAN,KAAAE,eAEAI,KAAAF,WAEAE,KAAAJ,eACAI,KAAAF,cDlBMmB,IACA,SAAUxC,EAAQC,EAASC,GElFjCD,EAAAD,EAAAC,QAAAC,EAAA,KAKAD,EAAAwC,MAAAzC,EAAA0C,GAAA,yKAAgM,IAAQC,QAAA,EAAAC,SAAA,iEAAAC,SAAAC,SAAA,uIAAAC,KAAA,oBAAAC,gBAAA,wbAAqtBC,WAAA,iBF2Fv5BC,IACA,SAAUlD,EAAQC,EAASC,GG9FjC,GAAAiD,GAAAjD,EAAA,IACA,iBAAAiD,SAAAnD,EAAA0C,GAAAS,EAAA,KAEAjD,GAAA,GAAAiD,KACAA,GAAAC,SAAApD,EAAAC,QAAAkD,EAAAC,SHoHMC,IACA,SAAUrD,EAAQC,GI5HxBD,EAAAC,QAAA,65BJkIMqD,IACA,SAAUtD,EAAQC,EAASC,GKnIjC,GAAAqD,GAAAC,EACAC,IACAvD,GAAA,KACAqD,EAAArD,EAAA,KACAsD,EAAAtD,EAAA,KACAF,EAAAC,QAAAsD,MACAvD,EAAAC,QAAAI,aAAAL,EAAAC,QAAAD,EAAAC,QAAAK,QACA,IAAAoD,GAAA,kBAAA1D,GAAAC,QAAAD,EAAAC,QAAA0D,UAAA3D,EAAAC,QAAA0D,YAAoH3D,EAAAC,OACpHuD,KACAE,EAAAE,SAAAJ,GAEAE,EAAAG,WAAAH,EAAAG,aACAtD,OAAAuD,KAAAL,GAAAM,QAAA,SAAAC,GACA,GAAAhE,GAAAyD,EAAAO,EACAN,GAAAG,SAAAG,GAAA,WAA6C,MAAAhE","file":"46.js","sourcesContent":["webpackJsonp([46],{\n\n/***/ 238:\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\tvar _co = __webpack_require__(8);\n\t\n\tvar _co2 = _interopRequireDefault(_co);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\texports.default = {\n\t title: '查询用户',\n\t data: function data() {\n\t return {\n\t model: [],\n\t show: false,\n\t row: Object\n\t };\n\t },\n\t\n\t props: {\n\t user: {\n\t type: Object\n\t },\n\t f_userinfo_id: ''\n\t },\n\t methods: {\n\t getmodel: function getmodel() {\n\t var _this = this;\n\t\n\t var userinfoid = void 0;\n\t if (this.f_userinfo_id) {\n\t userinfoid = this.f_userinfo_id;\n\t } else {\n\t userinfoid = this.user.f_userinfo_id;\n\t console.log(this.user.f_userinfo_id);\n\t }\n\t console.log(userinfoid);\n\t this.$resetpost(this.$androidUtil.getProxyUrl() + '/rs/sql/tel_singleTable_OrderBy', { data: { items: '*', tablename: 't_sellinggas', orderitem: 'f_delivery_date desc', condition: 'f_userinfo_id = \\'' + userinfoid + '\\'' } }).then(function (row) {\n\t _this.model = row.data;\n\t });\n\t },\n\t back: function back() {}\n\t },\n\t watch: {\n\t 'user': function user(val) {\n\t if (this.user) {\n\t if (!this.user.isNuN) {\n\t this.model = [];\n\t this.getmodel();\n\t }\n\t }\n\t },\n\t 'f_userinfo_id': function f_userinfo_id() {\n\t if (this.f_userinfo_id) {\n\t this.model = [];\n\t this.getmodel();\n\t }\n\t }\n\t },\n\t ready: function ready() {\n\t if (this.user && this.user.f_userinfo_id) {\n\t this.getmodel();\n\t }\n\t if (this.f_userinfo_id) {\n\t this.getmodel();\n\t }\n\t }\n\t};\n\n/***/ }),\n\n/***/ 485:\n/***/ (function(module, exports, __webpack_require__) {\n\n\texports = module.exports = __webpack_require__(4)();\n\t// imports\n\t\n\t\n\t// module\n\texports.push([module.id, \".app-botton{position:fixed;background:#87b2dd;color:#fff;padding:8px;text-align:center;font-size:1.2em;z-index:10;opacity:.5;bottom:50px;margin-top:-10px;height:40px}\", \"\", {\"version\":3,\"sources\":[\"/./node_modules/system-phone/src/components/PhoneSellInfo.vue\"],\"names\":[],\"mappings\":\"AAyGA,YACE,eAAe,AACf,mBAAoB,AACpB,WAAY,AACZ,YAAa,AACb,kBAAmB,AACnB,gBAAiB,AACjB,WAAY,AACZ,WAAY,AACZ,YAAa,AACb,iBAAkB,AAClB,WAAa,CACd\",\"file\":\"PhoneSellInfo.vue\",\"sourcesContent\":[\"\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n.app-botton {\\n position:fixed;\\n background: #87b2dd;\\n color: #FFF;\\n padding: 8px;\\n text-align: center;\\n font-size: 1.2em;\\n z-index: 10;\\n opacity:0.5;\\n bottom: 50px;\\n margin-top: -10px;\\n height: 40px;\\n}\\n\"],\"sourceRoot\":\"webpack://\"}]);\n\t\n\t// exports\n\n\n/***/ }),\n\n/***/ 532:\n/***/ (function(module, exports, __webpack_require__) {\n\n\t// style-loader: Adds some css to the DOM by adding a <style> tag\n\t\n\t// load the styles\n\tvar content = __webpack_require__(485);\n\tif(typeof content === 'string') content = [[module.id, content, '']];\n\t// add the styles to the DOM\n\tvar update = __webpack_require__(5)(content, {});\n\tif(content.locals) module.exports = content.locals;\n\t// Hot Module Replacement\n\tif(false) {\n\t\t// When the styles change, update the <style> tags\n\t\tif(!content.locals) {\n\t\t\tmodule.hot.accept(\"!!../../../css-loader/index.js?sourceMap!../../../vue-loader/lib/style-rewriter.js!../../../vue-loader/lib/selector.js?type=style&index=0!./PhoneSellInfo.vue\", function() {\n\t\t\t\tvar newContent = require(\"!!../../../css-loader/index.js?sourceMap!../../../vue-loader/lib/style-rewriter.js!../../../vue-loader/lib/selector.js?type=style&index=0!./PhoneSellInfo.vue\");\n\t\t\t\tif(typeof newContent === 'string') newContent = [[module.id, newContent, '']];\n\t\t\t\tupdate(newContent);\n\t\t\t});\n\t\t}\n\t\t// When the module is disposed, remove the <style> tags\n\t\tmodule.hot.dispose(function() { update(); });\n\t}\n\n/***/ }),\n\n/***/ 654:\n/***/ (function(module, exports) {\n\n\tmodule.exports = \" <div class=\\\"panel panel-default auto repair-info-content\\\"> <div class=panel-body> <div class=\\\"panel panel-default well\\\" v-for=\\\"row in model\\\"> <div class=bg-info> <div class=\\\"row form-group\\\"> <div class=\\\"col-xs-12 col-sm-12 col-md-12\\\"> <div class=row> <div class=\\\"col-xs-6 col-sm-6 col-md-6\\\"> 购气量: {{row.f_pregas}} </div> <div class=\\\"col-xs-6 col-sm-6 col-md-6\\\"> 购气金额: {{row.f_preamount}} </div> <div class=\\\"col-xs-6 col-sm-6 col-md-6\\\"> 收费状态: {{row.f_charge_state}} </div> <div class=\\\"col-xs-6 col-sm-6 col-md-6\\\"> 缴费方式: {{row.f_payment}} </div> <div class=\\\"col-xs-6 col-sm-6 col-md-6\\\"> 营业网点: {{row.f_outlets}} </div> <div class=\\\"col-xs-6 col-sm-6 col-md-6\\\"> 操作员: {{row.f_operator}} </div> <div class=\\\"col-xs-12 col-sm-12 col-md-12\\\"> 购气时间: {{row.f_delivery_date.substring(0,11)}} {{row.f_delivery_date.substring(11,19)}} </div> </div> </div> </div> </div> </div> <p v-show=\\\"model.length == 0 \\\">此用户暂无购气记录</p> </div> </div> \";\n\n/***/ }),\n\n/***/ 817:\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar __vue_script__, __vue_template__\n\tvar __vue_styles__ = {}\n\t__webpack_require__(532)\n\t__vue_script__ = __webpack_require__(238)\n\t__vue_template__ = __webpack_require__(654)\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// 46.js","<template >\n <div class=\"panel panel-default auto repair-info-content\">\n <div class=\"panel-body\">\n <div class=\"panel panel-default well\" v-for=\"row in model\">\n <div class=\"bg-info\">\n <div class=\"row form-group\">\n <div class=\"col-xs-12 col-sm-12 col-md-12\">\n <div class=\"row\">\n <div class=\"col-xs-6 col-sm-6 col-md-6\">\n 购气量: {{row.f_pregas}}\n </div>\n <div class=\"col-xs-6 col-sm-6 col-md-6\">\n 购气金额: {{row.f_preamount}}\n </div>\n <div class=\"col-xs-6 col-sm-6 col-md-6\">\n 收费状态: {{row.f_charge_state}}\n </div>\n <div class=\"col-xs-6 col-sm-6 col-md-6\">\n 缴费方式: {{row.f_payment}}\n </div>\n <div class=\"col-xs-6 col-sm-6 col-md-6\">\n 营业网点: {{row.f_outlets}}\n </div>\n <div class=\"col-xs-6 col-sm-6 col-md-6\">\n 操作员: {{row.f_operator}}\n </div>\n <div class=\"col-xs-12 col-sm-12 col-md-12\">\n 购气时间: {{row.f_delivery_date.substring(0,11)}} {{row.f_delivery_date.substring(11,19)}}\n </div>\n\n </div>\n </div>\n </div>\n </div>\n </div>\n <p v-show=\"model.length == 0 \">此用户暂无购气记录</p>\n </div>\n </div>\n</template>\n\n<script>\n import { PagedList } from 'vue-client'\n import co from 'co'\n export default {\n title: '查询用户',\n data () {\n return {\n model: [],\n show: false,\n row: Object\n }\n },\n props: {\n user: {\n type: Object\n },\n f_userinfo_id:''\n },\n methods: {\n getmodel () {\n let userinfoid\n if(this.f_userinfo_id){\n userinfoid = this.f_userinfo_id\n }else{\n userinfoid = this.user.f_userinfo_id\n console.log(this.user.f_userinfo_id)\n }\n console.log(userinfoid)\n this.$resetpost(`${this.$androidUtil.getProxyUrl()}/rs/sql/tel_singleTable_OrderBy`, {data: {items: '*', tablename: 't_sellinggas', orderitem: 'f_delivery_date desc', condition:`f_userinfo_id = '${userinfoid}'`}}).then((row) => {\n this.model = row.data\n })\n },\n back(){\n\n }\n },\n watch: {\n 'user' (val) {\n // this.model.search(`card_id = ${this.user.card_id}`)\n if(this.user){\n if (!(this.user.isNuN)) {\n this.model= []\n this.getmodel()\n }\n }\n },\n 'f_userinfo_id'(){\n if(this.f_userinfo_id){\n this.model= []\n this.getmodel()\n }\n }\n },\n ready () {\n if (this.user && this.user.f_userinfo_id) {\n // this.model.search(`card_id = ${this.user.card_id}`)\n this.getmodel()\n }\n if(this.f_userinfo_id){\n this.getmodel()\n }\n }\n }\n</script>\n<style>\n .app-botton {\n position:fixed;\n background: #87b2dd;\n color: #FFF;\n padding: 8px;\n text-align: center;\n font-size: 1.2em;\n z-index: 10;\n opacity:0.5;\n bottom: 50px;\n margin-top: -10px;\n height: 40px;\n }\n</style>\n\n\n\n// WEBPACK FOOTER //\n// PhoneSellInfo.vue?221c04e9","exports = module.exports = require(\"../../../css-loader/lib/css-base.js\")();\n// imports\n\n\n// module\nexports.push([module.id, \".app-botton{position:fixed;background:#87b2dd;color:#fff;padding:8px;text-align:center;font-size:1.2em;z-index:10;opacity:.5;bottom:50px;margin-top:-10px;height:40px}\", \"\", {\"version\":3,\"sources\":[\"/./node_modules/system-phone/src/components/PhoneSellInfo.vue\"],\"names\":[],\"mappings\":\"AAyGA,YACE,eAAe,AACf,mBAAoB,AACpB,WAAY,AACZ,YAAa,AACb,kBAAmB,AACnB,gBAAiB,AACjB,WAAY,AACZ,WAAY,AACZ,YAAa,AACb,iBAAkB,AAClB,WAAa,CACd\",\"file\":\"PhoneSellInfo.vue\",\"sourcesContent\":[\"\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n.app-botton {\\n position:fixed;\\n background: #87b2dd;\\n color: #FFF;\\n padding: 8px;\\n text-align: center;\\n font-size: 1.2em;\\n z-index: 10;\\n opacity:0.5;\\n bottom: 50px;\\n margin-top: -10px;\\n height: 40px;\\n}\\n\"],\"sourceRoot\":\"webpack://\"}]);\n\n// exports\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./~/css-loader?sourceMap!./~/vue-loader/lib/style-rewriter.js!./~/vue-loader/lib/selector.js?type=style&index=0!./~/system-phone/src/components/PhoneSellInfo.vue\n// module id = 485\n// module chunks = 46","// style-loader: Adds some css to the DOM by adding a <style> tag\n\n// load the styles\nvar content = require(\"!!../../../css-loader/index.js?sourceMap!../../../vue-loader/lib/style-rewriter.js!../../../vue-loader/lib/selector.js?type=style&index=0!./PhoneSellInfo.vue\");\nif(typeof content === 'string') content = [[module.id, content, '']];\n// add the styles to the DOM\nvar update = require(\"!../../../vue-style-loader/addStyles.js\")(content, {});\nif(content.locals) module.exports = content.locals;\n// Hot Module Replacement\nif(module.hot) {\n\t// When the styles change, update the <style> tags\n\tif(!content.locals) {\n\t\tmodule.hot.accept(\"!!../../../css-loader/index.js?sourceMap!../../../vue-loader/lib/style-rewriter.js!../../../vue-loader/lib/selector.js?type=style&index=0!./PhoneSellInfo.vue\", function() {\n\t\t\tvar newContent = require(\"!!../../../css-loader/index.js?sourceMap!../../../vue-loader/lib/style-rewriter.js!../../../vue-loader/lib/selector.js?type=style&index=0!./PhoneSellInfo.vue\");\n\t\t\tif(typeof newContent === 'string') newContent = [[module.id, newContent, '']];\n\t\t\tupdate(newContent);\n\t\t});\n\t}\n\t// When the module is disposed, remove the <style> tags\n\tmodule.hot.dispose(function() { update(); });\n}\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./~/extract-text-webpack-plugin/loader.js?{\"omit\":1,\"extract\":true,\"remove\":true}!./~/vue-style-loader!./~/css-loader?sourceMap!./~/vue-loader/lib/style-rewriter.js!./~/vue-loader/lib/selector.js?type=style&index=0!./~/system-phone/src/components/PhoneSellInfo.vue\n// module id = 532\n// module chunks = 46","module.exports = \" <div class=\\\"panel panel-default auto repair-info-content\\\"> <div class=panel-body> <div class=\\\"panel panel-default well\\\" v-for=\\\"row in model\\\"> <div class=bg-info> <div class=\\\"row form-group\\\"> <div class=\\\"col-xs-12 col-sm-12 col-md-12\\\"> <div class=row> <div class=\\\"col-xs-6 col-sm-6 col-md-6\\\"> 购气量: {{row.f_pregas}} </div> <div class=\\\"col-xs-6 col-sm-6 col-md-6\\\"> 购气金额: {{row.f_preamount}} </div> <div class=\\\"col-xs-6 col-sm-6 col-md-6\\\"> 收费状态: {{row.f_charge_state}} </div> <div class=\\\"col-xs-6 col-sm-6 col-md-6\\\"> 缴费方式: {{row.f_payment}} </div> <div class=\\\"col-xs-6 col-sm-6 col-md-6\\\"> 营业网点: {{row.f_outlets}} </div> <div class=\\\"col-xs-6 col-sm-6 col-md-6\\\"> 操作员: {{row.f_operator}} </div> <div class=\\\"col-xs-12 col-sm-12 col-md-12\\\"> 购气时间: {{row.f_delivery_date.substring(0,11)}} {{row.f_delivery_date.substring(11,19)}} </div> </div> </div> </div> </div> </div> <p v-show=\\\"model.length == 0 \\\">此用户暂无购气记录</p> </div> </div> \";\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./~/vue-html-loader!./~/vue-loader/lib/selector.js?type=template&index=0!./~/system-phone/src/components/PhoneSellInfo.vue\n// module id = 654\n// module chunks = 46","var __vue_script__, __vue_template__\nvar __vue_styles__ = {}\nrequire(\"!!../../../extract-text-webpack-plugin/loader.js?{\\\"omit\\\":1,\\\"extract\\\":true,\\\"remove\\\":true}!vue-style-loader!css-loader?sourceMap!../../../vue-loader/lib/style-rewriter.js!../../../vue-loader/lib/selector.js?type=style&index=0!./PhoneSellInfo.vue\")\n__vue_script__ = require(\"!!babel-loader?presets[]=es2015&plugins[]=transform-runtime&comments=false!../../../vue-loader/lib/selector.js?type=script&index=0!./PhoneSellInfo.vue\")\n__vue_template__ = require(\"!!vue-html-loader!../../../vue-loader/lib/selector.js?type=template&index=0!./PhoneSellInfo.vue\")\nmodule.exports = __vue_script__ || {}\nif (module.exports.__esModule) module.exports = module.exports.default\nvar __vue_options__ = typeof module.exports === \"function\" ? (module.exports.options || (module.exports.options = {})) : module.exports\nif (__vue_template__) {\n__vue_options__.template = __vue_template__\n}\nif (!__vue_options__.computed) __vue_options__.computed = {}\nObject.keys(__vue_styles__).forEach(function (key) {\nvar module = __vue_styles__[key]\n__vue_options__.computed[key] = function () { return module }\n})\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./~/system-phone/src/components/PhoneSellInfo.vue\n// module id = 817\n// module chunks = 46"],"sourceRoot":""}
@@ -1,2 +0,0 @@
1
- webpackJsonp([47],{75:function(e,t,r){"use strict";function a(e){return e&&e.__esModule?e:{default:e}}Object.defineProperty(t,"__esModule",{value:!0});var i=r(81),s=a(i),n=r(38),o=a(n),l={params:{},singleValues:{},gasstyles:{},gasbrands:[],price:[],adjustables:[],getParam:function(e){return this.params[e]},getSingleValue:function(e){return this.singleValues[e]},getGasstyle:function(e){return this.gasbrands.key},getGasbrand:function(){return this.gasbrands},getAdjustable:function(e){var t=[];e?this.adjustables.forEach(function(r,a){r.value.f_filiale===e&&t.push(r)}):this.adjustables.forEach(function(e,r){t.push(e)});var r={},a=t.reduce(function(e,t){return r[t.label]?"":r[t.label]=e.push(t),e},[]);return(0,o.default)(new s.default(a))},getOnlyPrice:function(){var e=[];this.price.forEach(function(t,r){if("有效"===t.f_state){var a={label:t.f_price_name,value:t};e.push(a)}});var t={},r=e.reduce(function(e,r){return t[r.label]?"":t[r.label]=e.push(r),e},[]);return(0,o.default)(new s.default(r))},getPrice:function(e){if(e.f_user_type&&e.f_gasproperties&&e.f_price_type){var t=[];e.filter?this.price.forEach(function(r){if("有效"===r.f_state&&e.f_user_type===r.f_user_type&&e.f_gasproperties===r.f_gasproperties&&e.f_price_type===r.f_price_type&&e.filter===r.f_filiale){var a={label:r.f_price_name,value:r};t.push(a)}}):this.price.forEach(function(r){if("有效"===r.f_state&&e.f_user_type===r.f_user_type&&e.f_gasproperties===r.f_gasproperties&&e.f_price_type===r.f_price_type){var a={label:r.f_price_name,value:r};t.push(a)}});var r={};return t=t.reduce(function(e,t){return r[t.label]?"":r[t.label]=e.push(t),e},[]),(0,o.default)(new s.default(t))}}};t.default=l},391:function(e,t,r){"use strict";function a(e){return e&&e.__esModule?e:{default:e}}Object.defineProperty(t,"__esModule",{value:!0});var i=r(6),s=a(i),n=r(11),o=a(n),l=r(2),p=a(l),d=r(3),c=r(8),u=a(c),f=r(75),h=(a(f),p.default.mark(function e(t,r){var a;return p.default.wrap(function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,t.$showMessage("撤销后数据不可恢复,确认撤销录入吗?",["confirm","cancel"]);case 2:if(a=e.sent,"cancel"!==a){e.next=5;break}return e.abrupt("return");case 5:t.search();case 6:case"end":return e.stop()}},e,this)}));t.default={title:"操作汇总",data:function(){return{operationtypes:this.$appdata.getParam("报建业务类型"),model:new d.PagedList(""+this.sqlurl,9999,{condition:"\"f_operator= '"+this.$login.f.name+"'\"",items:'"'+this.items+'"',tablename:'"'+this.tablename+'"',orderitem:'"'+this.orderitem+'"'}),show:!1,asideTitle:"用户操作",row:Object,comp:null}},props:{sqlurl:{type:String,default:"rs/sql/getinstallrecord"},items:{type:String,default:"*"},tablename:{type:String,default:"t_stopapply"},orderitem:{type:String,default:"f_date desc"},btns:{type:Array},operationtype:{type:String,default:""},userinfoid:{},isOperate:{type:Boolean,default:!0}},ready:function(){this.$refs.paged.$refs.cri.model.f_operat_type=[this.operationtype],this.search();for(var e=0;e<this.model.length;e++)this.model[e].f_operate_date=this.model[e].f_operate_date.substring(16)},methods:{dateDes:function(e){return this.$login.dateDescripte(e)},selected:function(e){this.row===e?this.row=null:this.row=e},isSelected:function(e){return this.row===e},search:function(){var e=this,t="1=1";this.$login.f.parent.parent.name.includes("统一资源管理")||(t+="and f_filiale = '"+this.$login.f.f_fengongsi+"'"),this.$refs.pv.load(this.sqlurl,{data:{condition:t}}).then(function(t){return 0===t.data.length?(e.model.rows=[],e.model.state="错误",void(e.model.error="没有符合条件的记录")):(e.model.state="正确",void(e.model.rows=t.data))})},disEvent:function(e){this.$dispatch(""+e.eventName)},operate:function(e,t){var r=this;"票据补打"!==e||"机表收费"!==t.type&&"卡表收费"!==t.type&&"超用收费"!==t.type&&"发卡售气"!==t.type?"票据补打"===e&&"其他收费"===t.type?this.$resetpost("rs/sql/singleTable_OrderBy",{data:{orderitem:"id",items:"*",tablename:"t_othercharge",condition:"id = "+t.id}}).then(function(e){"国税发票"===e.data[0].f_charge_type?(t=(0,o.default)({},t,e.data[0]),r.$dispatch("list-select-oper",t.type+"票据补打","reissue-other-bill",t)):(t=(0,o.default)({},t,e.data[0]),r.$dispatch("list-select-oper",t.type+"票据补打","reissue-tax-other-bill",t))}).catch(function(e){if(e.status)return void r.$warn("加载数据出错, "+(0,s.default)(e));throw e}):"票据补打"===e&&"换表"===t.type?this.$resetpost("rs/sql/singleTable_OrderBy",{data:{orderitem:"id",items:"*",tablename:"t_changemeter",condition:"id = "+t.id}}).then(function(e){t=(0,o.default)({},t,e.data[0]),r.$dispatch("list-select-oper",t.type+"票据补打","reissue-change-meter-bill",t)}).catch(function(e){if(e.status)return void r.$warn("加载数据出错, "+(0,s.default)(e));throw e}):"撤销"===e&&this.$dispatch("list-select-oper","撤销","apply-record-cancel",t):this.$resetpost("rs/sql/singleTable_OrderBy",{data:{orderitem:"id",items:"*",tablename:"t_sellinggas",condition:"id = "+t.id}}).then(function(e){t=(0,o.default)({},t,e.data[0]),r.$dispatch("list-select-oper",t.type+"票据补打","reissue-bill",t)}).catch(function(e){if(e.status)return void r.$warn("加载数据出错, "+(0,s.default)(e));throw e})},operateCancel:function(e){var t=h(this,e);(0,u.default)(t)},selfSearch:function(e){this.$login.f.parent.parent.name.includes("统一资源管理")||(e.condition+="and f_filiale = '"+this.$login.f.f_fengongsi+"'"),this.model.search(e.condition,e.model)}},watch:{}}},761:function(e,t){e.exports=' <div> <partial-view v-ref:pv> <criteria-paged :model=model v-ref:paged :pager=false> <criteria partial=criteria @condition-changed=$parent.$parent.selfSearch v-ref:cri> <div novalidate class="flex-row select-overspread" partial style="white-space: nowarp"> <div class=form-group> <input type=text class="form-control width-100" v-model=model.f_userinfo_id placeholder=报建编号 condition="f_userinfo_id = \'{}\'"> </div> <div class=form-group style="flex: 1"> <v-select id=f_paytype v-model=model.f_operat_type placeholder=操作类型 :value.sync=model.f_operat_type :options=$parent.$parent.$parent.operationtypes condition="f_operat_type = \'{}\'" close-on-select></v-select> <partial name=cardcriteria></partial> </div> <div class=form-group> <button class="btn btn-success width-100" @click=search() id=base-rightVie-cardLis-查询>查询</button> </div> </div> </criteria> <accordion :one-at-atime=true type=info partial=list> <panel type=info v-for="row in model.rows" :is-open=true :is-click=false v-show="row.type===\'终止报建\'"> <span class="panel-title row" slot=header style="cursor: pointer"> <div class=col-sm-11> <div class=row> <strong class=col-sm-4>{{row.f_userinfo_id}}</strong> <span class=col-sm-4>{{$parent.$parent.$parent.dateDes(row.f_operate_date)}}</span> <span class=col-sm-4>{{row.type}}</span> </div> </div> <div class=col-sm-1 v-if=$parent.$parent.$parent.isOperate> <dropdown class=auto v-if="row.type === \'终止报建\'"> <button type=button data-toggle=dropdown style="border: 0px;background: none"> <span class="glyphicon glyphicon-th-list"></span> </button> <ul slot=dropdown-menu class="dropdown-menu dropdown-menu-right" style="min-width: 60px"> <li v-if="row.type === \'终止报建\'"> <a href=# @click.stop="$parent.$parent.$parent.operate(\'撤销\', row)">撤销</a> </li> </ul> </dropdown> </div> <div class=panel-body v-if=$parent.$parent.$parent.isSelected(row)> <stopapply-apply-detail v-if="row.type === \'终止报建\'" :data=row></stopapply-apply-detail> </div> <div v-if=!$parent.$parent.$parent.isSelected(row) style="margin-top: 8px;background: #FFF"> <p>{{row.f_describe}}</p> </div> </span></panel> </accordion> </criteria-paged> </partial-view> </div> '},942:function(e,t,r){var a,i,s={};a=r(391),i=r(761),e.exports=a||{},e.exports.__esModule&&(e.exports=e.exports.default);var n="function"==typeof e.exports?e.exports.options||(e.exports.options={}):e.exports;i&&(n.template=i),n.computed||(n.computed={}),Object.keys(s).forEach(function(e){var t=s[e];n.computed[e]=function(){return t}})}});
2
- //# sourceMappingURL=47.js.map
@@ -1 +0,0 @@
1
- {"version":3,"sources":["webpack:///47.js","webpack:///./src/stores/AppData.js?88bb","webpack:///InstallCardList2.vue","webpack:///./src/components/product/VueUtils/rightview/InstallCardList2.vue?d249","webpack:///./src/components/product/VueUtils/rightview/InstallCardList2.vue"],"names":["webpackJsonp","75","module","exports","__webpack_require__","_interopRequireDefault","obj","__esModule","default","Object","defineProperty","value","_set","_set2","_from","_from2","DataStore","params","singleValues","gasstyles","gasbrands","price","adjustables","getParam","key","this","getSingleValue","getGasstyle","getGasbrand","getAdjustable","val","arr","forEach","item","next","f_filiale","push","hash","result","reduce","label","getOnlyPrice","f_state","f_price_name","getPrice","object","f_user_type","f_gasproperties","f_price_type","filter","391","_stringify","_stringify2","_assign","_assign2","_regenerator","_regenerator2","_vueClient","_co","_co2","_AppData","cancelGen","mark","self","data","msgRet","wrap","_context","prev","$showMessage","sent","abrupt","search","stop","title","operationtypes","$appdata","model","PagedList","sqlurl","condition","$login","f","name","items","tablename","orderitem","show","asideTitle","row","comp","props","type","String","btns","Array","operationtype","userinfoid","isOperate","Boolean","ready","$refs","paged","cri","f_operat_type","i","length","f_operate_date","substring","methods","dateDes","date","dateDescripte","selected","isSelected","_this","parent","includes","f_fengongsi","pv","load","then","a","rows","state","error","disEvent","btn","$dispatch","eventName","operate","_this2","$resetpost","id","res","f_charge_type","catch","status","$warn","operateCancel","cancel","selfSearch","args","watch","761","942","__vue_script__","__vue_template__","__vue_styles__","__vue_options__","options","template","computed","keys"],"mappings":"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","file":"47.js","sourcesContent":["webpackJsonp([47],{\n\n/***/ 75:\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 _set = __webpack_require__(81);\n\t\n\tvar _set2 = _interopRequireDefault(_set);\n\t\n\tvar _from = __webpack_require__(38);\n\t\n\tvar _from2 = _interopRequireDefault(_from);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\tvar DataStore = {\n\t params: {},\n\t singleValues: {},\n\t gasstyles: {},\n\t gasbrands: [],\n\t price: [],\n\t adjustables: [],\n\t\n\t getParam: function getParam(key) {\n\t return this.params[key];\n\t },\n\t getSingleValue: function getSingleValue(key) {\n\t return this.singleValues[key];\n\t },\n\t getGasstyle: function getGasstyle(key) {\n\t return this.gasbrands.key;\n\t },\n\t getGasbrand: function getGasbrand() {\n\t return this.gasbrands;\n\t },\n\t getAdjustable: function getAdjustable(val) {\n\t var arr = [];\n\t if (val) {\n\t this.adjustables.forEach(function (item, next) {\n\t if (item.value.f_filiale === val) {\n\t arr.push(item);\n\t }\n\t });\n\t } else {\n\t this.adjustables.forEach(function (item, next) {\n\t arr.push(item);\n\t });\n\t }\n\t var hash = {};\n\t var result = arr.reduce(function (item, next) {\n\t hash[next.label] ? '' : hash[next.label] = true && item.push(next);\n\t return item;\n\t }, []);\n\t return (0, _from2.default)(new _set2.default(result));\n\t },\n\t getOnlyPrice: function getOnlyPrice() {\n\t var arr = [];\n\t this.price.forEach(function (item, next) {\n\t if (item.f_state === '有效') {\n\t var value = {\n\t label: item.f_price_name,\n\t value: item\n\t };\n\t arr.push(value);\n\t }\n\t });\n\t var hash = {};\n\t var result = arr.reduce(function (item, next) {\n\t hash[next.label] ? '' : hash[next.label] = true && item.push(next);\n\t return item;\n\t }, []);\n\t return (0, _from2.default)(new _set2.default(result));\n\t },\n\t getPrice: function getPrice(object) {\n\t if (!object.f_user_type || !object.f_gasproperties || !object.f_price_type) {\n\t return;\n\t }\n\t var result = [];\n\t\n\t if (object.filter) {\n\t this.price.forEach(function (item) {\n\t if (item.f_state === '有效' && object.f_user_type === item.f_user_type && object.f_gasproperties === item.f_gasproperties && object.f_price_type === item.f_price_type && object.filter === item.f_filiale) {\n\t var value = {\n\t label: item.f_price_name,\n\t value: item\n\t };\n\t result.push(value);\n\t }\n\t });\n\t } else {\n\t this.price.forEach(function (item) {\n\t if (item.f_state === '有效' && object.f_user_type === item.f_user_type && object.f_gasproperties === item.f_gasproperties && object.f_price_type === item.f_price_type) {\n\t var value = {\n\t label: item.f_price_name,\n\t value: item\n\t };\n\t result.push(value);\n\t }\n\t });\n\t }\n\t\n\t var hash = {};\n\t result = result.reduce(function (item, next) {\n\t hash[next.label] ? '' : hash[next.label] = true && item.push(next);\n\t return item;\n\t }, []);\n\t return (0, _from2.default)(new _set2.default(result));\n\t }\n\t};\n\t\n\texports.default = DataStore;\n\n/***/ }),\n\n/***/ 391:\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 _assign = __webpack_require__(11);\n\t\n\tvar _assign2 = _interopRequireDefault(_assign);\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 _co = __webpack_require__(8);\n\t\n\tvar _co2 = _interopRequireDefault(_co);\n\t\n\tvar _AppData = __webpack_require__(75);\n\t\n\tvar _AppData2 = _interopRequireDefault(_AppData);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\tvar cancelGen = _regenerator2.default.mark(function cancelGen(self, data) {\n\t var msgRet;\n\t return _regenerator2.default.wrap(function cancelGen$(_context) {\n\t while (1) {\n\t switch (_context.prev = _context.next) {\n\t case 0:\n\t _context.next = 2;\n\t return self.$showMessage('撤销后数据不可恢复,确认撤销录入吗?', ['confirm', 'cancel']);\n\t\n\t case 2:\n\t msgRet = _context.sent;\n\t\n\t if (!(msgRet === 'cancel')) {\n\t _context.next = 5;\n\t break;\n\t }\n\t\n\t return _context.abrupt('return');\n\t\n\t case 5:\n\t self.search();\n\t\n\t case 6:\n\t case 'end':\n\t return _context.stop();\n\t }\n\t }\n\t }, cancelGen, this);\n\t});\n\t\n\texports.default = {\n\t title: '操作汇总',\n\t data: function data() {\n\t return {\n\t operationtypes: this.$appdata.getParam('报建业务类型'),\n\t model: new _vueClient.PagedList('' + this.sqlurl, 9999, { condition: '\"' + 'f_operator= \\'' + this.$login.f.name + '\\'' + '\"', items: '\"' + this.items + '\"', tablename: '\"' + this.tablename + '\"', orderitem: '\"' + this.orderitem + '\"' }),\n\t show: false,\n\t asideTitle: '用户操作',\n\t row: Object,\n\t comp: null\n\t };\n\t },\n\t\n\t props: {\n\t sqlurl: {\n\t type: String,\n\t default: 'rs/sql/getinstallrecord'\n\t },\n\t items: {\n\t type: String,\n\t default: '*'\n\t },\n\t tablename: {\n\t type: String,\n\t default: 't_stopapply'\n\t },\n\t orderitem: {\n\t type: String,\n\t default: 'f_date desc'\n\t },\n\t btns: {\n\t type: Array\n\t },\n\t operationtype: {\n\t type: String,\n\t default: ''\n\t },\n\t userinfoid: {},\n\t isOperate: {\n\t type: Boolean,\n\t default: true\n\t }\n\t },\n\t ready: function ready() {\n\t this.$refs.paged.$refs.cri.model.f_operat_type = [this.operationtype];\n\t this.search();\n\t for (var i = 0; i < this.model.length; i++) {\n\t this.model[i].f_operate_date = this.model[i].f_operate_date.substring(16);\n\t }\n\t },\n\t\n\t methods: {\n\t dateDes: function dateDes(date) {\n\t return this.$login.dateDescripte(date);\n\t },\n\t selected: function selected(row) {\n\t if (this.row === row) {\n\t this.row = null;\n\t } else {\n\t this.row = row;\n\t }\n\t },\n\t isSelected: function isSelected(row) {\n\t return this.row === row;\n\t },\n\t search: function search() {\n\t var _this = this;\n\t\n\t var condition = '1=1';\n\t\n\t if (!this.$login.f.parent.parent.name.includes('统一资源管理')) {\n\t condition += 'and f_filiale = \\'' + this.$login.f.f_fengongsi + '\\'';\n\t }\n\t this.$refs.pv.load(this.sqlurl, { data: { condition: condition } }).then(function (a) {\n\t if (a.data.length === 0) {\n\t _this.model.rows = [];\n\t _this.model.state = '错误';\n\t _this.model.error = '没有符合条件的记录';\n\t return;\n\t }\n\t _this.model.state = '正确';\n\t _this.model.rows = a.data;\n\t });\n\t },\n\t disEvent: function disEvent(btn) {\n\t this.$dispatch('' + btn.eventName);\n\t },\n\t operate: function operate(title, row) {\n\t var _this2 = this;\n\t\n\t if (title === '票据补打' && (row.type === '机表收费' || row.type === '卡表收费' || row.type === '超用收费' || row.type === '发卡售气')) {\n\t this.$resetpost('rs/sql/singleTable_OrderBy', { data: { orderitem: 'id', items: '*',\n\t tablename: 't_sellinggas', condition: 'id = ' + row.id } }).then(function (res) {\n\t row = (0, _assign2.default)({}, row, res.data[0]);\n\t _this2.$dispatch('list-select-oper', row.type + '\\u7968\\u636E\\u8865\\u6253', 'reissue-bill', row);\n\t }).catch(function (error) {\n\t if (error.status) {\n\t _this2.$warn('\\u52A0\\u8F7D\\u6570\\u636E\\u51FA\\u9519, ' + (0, _stringify2.default)(error));\n\t return;\n\t }\n\t throw error;\n\t });\n\t } else if (title === '票据补打' && row.type === '其他收费') {\n\t this.$resetpost('rs/sql/singleTable_OrderBy', { data: { orderitem: 'id', items: '*',\n\t tablename: 't_othercharge', condition: 'id = ' + row.id } }).then(function (res) {\n\t if (res.data[0].f_charge_type === '国税发票') {\n\t row = (0, _assign2.default)({}, row, res.data[0]);\n\t _this2.$dispatch('list-select-oper', row.type + '\\u7968\\u636E\\u8865\\u6253', 'reissue-other-bill', row);\n\t } else {\n\t row = (0, _assign2.default)({}, row, res.data[0]);\n\t _this2.$dispatch('list-select-oper', row.type + '\\u7968\\u636E\\u8865\\u6253', 'reissue-tax-other-bill', row);\n\t }\n\t }).catch(function (error) {\n\t if (error.status) {\n\t _this2.$warn('\\u52A0\\u8F7D\\u6570\\u636E\\u51FA\\u9519, ' + (0, _stringify2.default)(error));\n\t return;\n\t }\n\t throw error;\n\t });\n\t } else if (title === '票据补打' && row.type === '换表') {\n\t this.$resetpost('rs/sql/singleTable_OrderBy', { data: { orderitem: 'id', items: '*',\n\t tablename: 't_changemeter', condition: 'id = ' + row.id } }).then(function (res) {\n\t row = (0, _assign2.default)({}, row, res.data[0]);\n\t _this2.$dispatch('list-select-oper', row.type + '\\u7968\\u636E\\u8865\\u6253', 'reissue-change-meter-bill', row);\n\t }).catch(function (error) {\n\t if (error.status) {\n\t _this2.$warn('\\u52A0\\u8F7D\\u6570\\u636E\\u51FA\\u9519, ' + (0, _stringify2.default)(error));\n\t return;\n\t }\n\t throw error;\n\t });\n\t } else if (title === '撤销') {\n\t this.$dispatch('list-select-oper', '撤销', 'apply-record-cancel', row);\n\t }\n\t },\n\t operateCancel: function operateCancel(row) {\n\t var cancel = cancelGen(this, row);\n\t (0, _co2.default)(cancel);\n\t },\n\t selfSearch: function selfSearch(args) {\n\t if (!this.$login.f.parent.parent.name.includes('统一资源管理')) {\n\t args.condition += 'and f_filiale = \\'' + this.$login.f.f_fengongsi + '\\'';\n\t }\n\t\n\t this.model.search(args.condition, args.model);\n\t }\n\t },\n\t watch: {}\n\t};\n\n/***/ }),\n\n/***/ 761:\n/***/ (function(module, exports) {\n\n\tmodule.exports = \" <div> <partial-view v-ref:pv> <criteria-paged :model=model v-ref:paged :pager=false> <criteria partial=criteria @condition-changed=$parent.$parent.selfSearch v-ref:cri> <div novalidate class=\\\"flex-row select-overspread\\\" partial style=\\\"white-space: nowarp\\\"> <div class=form-group> <input type=text class=\\\"form-control width-100\\\" v-model=model.f_userinfo_id placeholder=报建编号 condition=\\\"f_userinfo_id = '{}'\\\"> </div> <div class=form-group style=\\\"flex: 1\\\"> <v-select id=f_paytype v-model=model.f_operat_type placeholder=操作类型 :value.sync=model.f_operat_type :options=$parent.$parent.$parent.operationtypes condition=\\\"f_operat_type = '{}'\\\" close-on-select></v-select> <partial name=cardcriteria></partial> </div> <div class=form-group> <button class=\\\"btn btn-success width-100\\\" @click=search() id=base-rightVie-cardLis-查询>查询</button> </div> </div> </criteria> <accordion :one-at-atime=true type=info partial=list> <panel type=info v-for=\\\"row in model.rows\\\" :is-open=true :is-click=false v-show=\\\"row.type==='终止报建'\\\"> <span class=\\\"panel-title row\\\" slot=header style=\\\"cursor: pointer\\\"> <div class=col-sm-11> <div class=row> <strong class=col-sm-4>{{row.f_userinfo_id}}</strong> <span class=col-sm-4>{{$parent.$parent.$parent.dateDes(row.f_operate_date)}}</span> <span class=col-sm-4>{{row.type}}</span> </div> </div> <div class=col-sm-1 v-if=$parent.$parent.$parent.isOperate> <dropdown class=auto v-if=\\\"row.type === '终止报建'\\\"> <button type=button data-toggle=dropdown style=\\\"border: 0px;background: none\\\"> <span class=\\\"glyphicon glyphicon-th-list\\\"></span> </button> <ul slot=dropdown-menu class=\\\"dropdown-menu dropdown-menu-right\\\" style=\\\"min-width: 60px\\\"> <li v-if=\\\"row.type === '终止报建'\\\"> <a href=# @click.stop=\\\"$parent.$parent.$parent.operate('撤销', row)\\\">撤销</a> </li> </ul> </dropdown> </div> <div class=panel-body v-if=$parent.$parent.$parent.isSelected(row)> <stopapply-apply-detail v-if=\\\"row.type === '终止报建'\\\" :data=row></stopapply-apply-detail> </div> <div v-if=!$parent.$parent.$parent.isSelected(row) style=\\\"margin-top: 8px;background: #FFF\\\"> <p>{{row.f_describe}}</p> </div> </span></panel> </accordion> </criteria-paged> </partial-view> </div> \";\n\n/***/ }),\n\n/***/ 942:\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar __vue_script__, __vue_template__\n\tvar __vue_styles__ = {}\n\t__vue_script__ = __webpack_require__(391)\n\t__vue_template__ = __webpack_require__(761)\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// 47.js","let DataStore = {\r\n params: {},\r\n singleValues: {},\r\n gasstyles: {},\r\n gasbrands: [],\r\n price: [],\r\n adjustables: [],\r\n\r\n getParam (key) {\r\n return this.params[key]\r\n },\r\n getSingleValue (key) {\r\n return this.singleValues[key]\r\n },\r\n getGasstyle (key) {\r\n return this.gasbrands.key\r\n },\r\n getGasbrand () {\r\n return this.gasbrands\r\n },\r\n getAdjustable (val) {\r\n // 数组去重\r\n let arr = []\r\n if (val) {\r\n this.adjustables.forEach((item, next) => {\r\n if (item.value.f_filiale === val) {\r\n arr.push(item)\r\n }\r\n })\r\n } else {\r\n this.adjustables.forEach((item, next) => {\r\n arr.push(item)\r\n })\r\n }\r\n let hash = {}\r\n let result = arr.reduce((item, next) => {\r\n hash[next.label] ? '' : hash[next.label] = true && item.push(next)\r\n return item\r\n }, [])\r\n return Array.from(new Set(result))\r\n },\r\n getOnlyPrice () {\r\n // 数组去重\r\n let arr = []\r\n this.price.forEach((item, next) => {\r\n if (item.f_state === '有效') {\r\n let value = {\r\n label: item.f_price_name,\r\n value: item\r\n }\r\n arr.push(value)\r\n }\r\n })\r\n let hash = {}\r\n let result = arr.reduce((item, next) => {\r\n hash[next.label] ? '' : hash[next.label] = true && item.push(next)\r\n return item\r\n }, [])\r\n return Array.from(new Set(result))\r\n },\r\n getPrice (object) {\r\n // 目前支持三个字段并都有值 f_user_type,f_gasproperties,f_price_type\r\n if (!object.f_user_type || !object.f_gasproperties || !object.f_price_type) {\r\n return\r\n }\r\n let result = []\r\n // 做筛选\r\n if (object.filter) {\r\n this.price.forEach((item) => {\r\n if (item.f_state === '有效' && object.f_user_type === item.f_user_type &&\r\n object.f_gasproperties === item.f_gasproperties &&\r\n object.f_price_type === item.f_price_type &&\r\n object.filter === item.f_filiale) {\r\n let value = {\r\n label: item.f_price_name,\r\n value: item\r\n }\r\n result.push(value)\r\n }\r\n })\r\n } else {\r\n this.price.forEach((item) => {\r\n if (item.f_state === '有效' && object.f_user_type === item.f_user_type && object.f_gasproperties === item.f_gasproperties && object.f_price_type === item.f_price_type) {\r\n let value = {\r\n label: item.f_price_name,\r\n value: item\r\n }\r\n result.push(value)\r\n }\r\n })\r\n }\r\n // 数组去重\r\n let hash = {}\r\n result = result.reduce((item, next) => {\r\n hash[next.label] ? '' : hash[next.label] = true && item.push(next)\r\n return item\r\n }, [])\r\n return Array.from(new Set(result))\r\n }\r\n}\r\n\r\nexport default DataStore\r\n\n\n\n// WEBPACK FOOTER //\n// ./src/stores/AppData.js","<template>\r\n <div>\r\n <partial-view v-ref:pv>\r\n <criteria-paged :model=\"model\" v-ref:paged :pager=\"false\">\r\n <criteria partial='criteria' @condition-changed='$parent.$parent.selfSearch' v-ref:cri>\r\n <div novalidate class=\"flex-row select-overspread\" partial style=\"white-space: nowarp;\">\r\n <div class=\"form-group\">\r\n <!-- <label>用户编号:</label> -->\r\n <input type=\"text\" class=\"form-control width-100\" v-model=\"model.f_userinfo_id\" placeholder='报建编号' condition=\"f_userinfo_id = '{}'\">\r\n </div>\r\n <div class=\"form-group\" style=\"flex: 1;\">\r\n <!-- <label>操作类型:</label> -->\r\n <v-select id=\"f_paytype\"\r\n v-model=\"model.f_operat_type\"\r\n placeholder='操作类型'\r\n :value.sync=\"model.f_operat_type\"\r\n :options='$parent.$parent.$parent.operationtypes'\r\n condition=\"f_operat_type = '{}'\"\r\n close-on-select ></v-select>\r\n <partial name=\"cardcriteria\"></partial>\r\n </div>\r\n <!-- <div class=\"form-group\">\r\n <partial name=\"cardcriteria\"></partial>\r\n </div> -->\r\n <div class=\"form-group\">\r\n <button class=\"btn btn-success width-100\" @click=\"search()\" id=base-rightVie-cardLis-查询>查询</button>\r\n </div>\r\n\r\n </div>\r\n </criteria>\r\n <accordion :one-at-atime=\"true\" type=\"info\" partial=\"list\">\r\n <panel type=\"info\" v-for=\"row in model.rows\" :is-open=\"true\" :is-click=\"false\" v-show=\"row.type==='终止报建'\">\r\n <span class=\"panel-title row\" slot=\"header\" style=\"cursor: pointer;\">\r\n <div class=\"col-sm-11\">\r\n <div class=\"row\">\r\n <strong class=\"col-sm-4\">{{row.f_userinfo_id}}</strong>\r\n <span class=\"col-sm-4\">{{$parent.$parent.$parent.dateDes(row.f_operate_date)}}</span>\r\n <span class=\"col-sm-4\">{{row.type}}</span>\r\n </div>\r\n </div>\r\n <div class=\"col-sm-1\" v-if=\"$parent.$parent.$parent.isOperate\">\r\n <!--<dropdown class=\"auto\" v-if=\"row.type === '机表收费' || row.type === '卡表收费' || row.type === '超用收费' || row.type === '发卡售气' || row.type === '其他收费' || row.type === '换表' || row.type === '报建收费' || row.type === '报建费用变更' || row.type === '报建费用减免' || row.state === 1\">-->\r\n <dropdown class=\"auto\" v-if=\"row.type === '终止报建'\">\r\n <button type=\"button\" data-toggle=\"dropdown\" style=\"border: 0px;background: none;\">\r\n <span class=\"glyphicon glyphicon-th-list\"></span>\r\n </button>\r\n <ul slot=\"dropdown-menu\" class=\"dropdown-menu dropdown-menu-right\" style=\" min-width: 60px;\">\r\n <!--<li v-if=\"row.type === '机表收费' || row.type === '卡表收费' || row.type === '超用收费' || row.type === '发卡售气' || row.type === '其他收费' || row.type === '换表'\">-->\r\n <!--<a href=\"#\" @click.stop=\"$parent.$parent.$parent.operate('票据补打', row)\">票据补打</a>-->\r\n <!--</li>-->\r\n <!-- <li v-if=\"row.state === 1 && row.type !== '档案变更' && row.type !== '新增户档案' && row.type !== '银行代扣' && row.type !== '发卡售气' && row.type !== '卡表收费'&& row.type !== '补气'\"> -->\r\n <li v-if=\"row.type === '终止报建'\">\r\n <a href=\"#\" @click.stop=\"$parent.$parent.$parent.operate('撤销', row)\">撤销</a>\r\n </li>\r\n </ul>\r\n </dropdown>\r\n </div>\r\n\r\n <!--</span>-->\r\n <div class=\"panel-body\" v-if=\"$parent.$parent.$parent.isSelected(row)\">\r\n <!--<build-apply-detail v-if=\"row.type === '报建收费'\" :data=\"row\"></build-apply-detail>-->\r\n <!--<change-apply-detail v-if=\"row.type === '报建费用变更'\" :data=\"row\"></change-apply-detail>-->\r\n <!--<reduce-apply-detail v-if=\"row.type === '报建费用减免'\" :data=\"row\"></reduce-apply-detail>-->\r\n <stopapply-apply-detail v-if=\"row.type === '终止报建'\" :data=\"row\"></stopapply-apply-detail>\r\n </div>\r\n <div v-if=\"!$parent.$parent.$parent.isSelected(row)\" style=\"margin-top: 8px;background: #FFF;\">\r\n <p>{{row.f_describe}}</p>\r\n </div>\r\n </panel>\r\n </accordion>\r\n\r\n </criteria-paged>\r\n </partial-view>\r\n </div>\r\n </template>\r\n <script>\r\n /**\r\n *操作记录信息\r\n */\r\n import { PagedList } from 'vue-client'\r\n import co from 'co'\r\n import AppData from '../../../../stores/AppData'\r\n\r\n let cancelGen = function * (self, data) {\r\n let msgRet = yield self.$showMessage('撤销后数据不可恢复,确认撤销录入吗?', ['confirm', 'cancel'])\r\n if (msgRet === 'cancel') return\r\n // 撤销操作完成,刷新界面\r\n self.search()\r\n }\r\n\r\n export default {\r\n title: '操作汇总',\r\n data () {\r\n return {\r\n operationtypes: this.$appdata.getParam('报建业务类型'),\r\n model: new PagedList(`${this.sqlurl}`, 9999,\r\n {condition:'\"' +'f_operator= \\''+this.$login.f.name+'\\''+ '\"',items: '\"' + this.items + '\"', tablename: '\"' + this.tablename + '\"', orderitem: '\"' + this.orderitem + '\"'}),\r\n show: false,\r\n asideTitle: '用户操作',\r\n row: Object,\r\n comp: null\r\n }\r\n },\r\n props: {\r\n sqlurl: {\r\n type: String,\r\n default: 'rs/sql/getinstallrecord'\r\n },\r\n items: {\r\n type: String,\r\n default: '*'\r\n },\r\n tablename: {\r\n type: String,\r\n default: 't_stopapply'\r\n },\r\n orderitem: {\r\n type: String,\r\n default: 'f_date desc'\r\n },\r\n btns: {\r\n type: Array\r\n },\r\n operationtype: {\r\n type: String,\r\n default: ''\r\n },\r\n userinfoid: {},\r\n isOperate: {\r\n type: Boolean,\r\n default: true\r\n }\r\n },\r\n ready () {\r\n this.$refs.paged.$refs.cri.model.f_operat_type = [this.operationtype]\r\n this.search()\r\n for (var i = 0; i < this.model.length; i++) {\r\n this.model[i].f_operate_date = this.model[i].f_operate_date.substring(16)\r\n }\r\n },\r\n methods: {\r\n dateDes (date) {\r\n return this.$login.dateDescripte(date)\r\n },\r\n selected (row) {\r\n if (this.row === row) {\r\n this.row = null\r\n } else {\r\n this.row = row\r\n }\r\n },\r\n isSelected (row) {\r\n return this.row === row\r\n },\r\n search () {\r\n let condition = '1=1'\r\n // this.$refs.paged.$refs.cri.search()\r\n if (!this.$login.f.parent.parent.name.includes('统一资源管理')) {\r\n condition += `and f_filiale = '${this.$login.f.f_fengongsi}'`\r\n }\r\n this.$refs.pv.load(this.sqlurl, {data: {condition: condition}}).then((a) => {\r\n if (a.data.length === 0) {\r\n this.model.rows = []\r\n this.model.state = '错误'\r\n this.model.error = '没有符合条件的记录'\r\n return\r\n }\r\n this.model.state = '正确'\r\n this.model.rows = a.data\r\n })\r\n },\r\n disEvent (btn) {\r\n this.$dispatch(`${btn.eventName}`)\r\n },\r\n operate (title, row) {\r\n if (title === '票据补打' && (row.type === '机表收费' || row.type === '卡表收费' || row.type === '超用收费' || row.type === '发卡售气')) {\r\n this.$resetpost('rs/sql/singleTable_OrderBy', {data: {orderitem: 'id', items: '*',\r\n tablename: 't_sellinggas', condition: 'id = ' + row.id}}).then((res) => {\r\n row = Object.assign({}, row, res.data[0])\r\n this.$dispatch('list-select-oper', `${row.type}票据补打`, 'reissue-bill', row)\r\n }).catch((error) => {\r\n if (error.status) {\r\n this.$warn(`加载数据出错, ${JSON.stringify(error)}`)\r\n return\r\n }\r\n throw error\r\n })\r\n } else if (title === '票据补打' && row.type === '其他收费') {\r\n this.$resetpost('rs/sql/singleTable_OrderBy', {data: {orderitem: 'id', items: '*',\r\n tablename: 't_othercharge', condition: 'id = ' + row.id}}).then((res) => {\r\n if (res.data[0].f_charge_type === '国税发票') {\r\n row = Object.assign({}, row, res.data[0])\r\n this.$dispatch('list-select-oper', `${row.type}票据补打`, 'reissue-other-bill', row)\r\n } else {\r\n row = Object.assign({}, row, res.data[0])\r\n this.$dispatch('list-select-oper', `${row.type}票据补打`, 'reissue-tax-other-bill', row)\r\n }\r\n }).catch((error) => {\r\n if (error.status) {\r\n this.$warn(`加载数据出错, ${JSON.stringify(error)}`)\r\n return\r\n }\r\n throw error\r\n })\r\n } else if (title === '票据补打' && row.type === '换表') {\r\n this.$resetpost('rs/sql/singleTable_OrderBy', {data: {orderitem: 'id', items: '*',\r\n tablename: 't_changemeter', condition: 'id = ' + row.id}}).then((res) => {\r\n row = Object.assign({}, row, res.data[0])\r\n this.$dispatch('list-select-oper', `${row.type}票据补打`, 'reissue-change-meter-bill', row)\r\n }).catch((error) => {\r\n if (error.status) {\r\n this.$warn(`加载数据出错, ${JSON.stringify(error)}`)\r\n return\r\n }\r\n throw error\r\n })\r\n } else if (title === '撤销') {\r\n this.$dispatch('list-select-oper', '撤销', 'apply-record-cancel', row)\r\n\r\n }\r\n },\r\n // 撤销为统一操作,所以写到基础组件中\r\n operateCancel (row) {\r\n let cancel = cancelGen(this, row)\r\n co(cancel)\r\n },\r\n selfSearch (args) {\r\n if (!this.$login.f.parent.parent.name.includes('统一资源管理')) {\r\n args.condition += `and f_filiale = '${this.$login.f.f_fengongsi}'`\r\n }\r\n // args.condition = `${args.condition} and f_filiale = '${this.$login.f.f_fengongsi}'`\r\n this.model.search(args.condition, args.model)\r\n }\r\n // isClose (val) {\r\n // // 再次点击收缩\r\n // if (val.oldVal && val.oldVal.id === val.val.id) {\r\n // this.$refs.paged.$refs.list.select(null)\r\n // }\r\n // }\r\n },\r\n watch: {\r\n // 'userinfoid' (newVal) {\r\n // if (newVal && newVal !== '') {\r\n // this.$nextTick(function () {\r\n // this.$refs.paged.$refs.cri.model.f_userinfo_id = newVal\r\n // }.bind(this))\r\n // this.$refs.paged.$refs.cri.model.f_operat_type = ''\r\n // let condition = `f_userinfo_id = ${newVal} and f_filiale = '${this.$login.f.f_fengongsi}'`\r\n // this.$refs.pv.load(this.sqlurl, {data: {condition: condition}}).then((a) => {\r\n // if (a.data.length === 0) {\r\n // this.model.rows = []\r\n // this.model.state = '错误'\r\n // this.model.error = '没有符合条件的记录'\r\n // return\r\n // }\r\n // this.model.state = '正确'\r\n // this.model.rows = a.data\r\n // })\r\n // } else {\r\n // this.$refs.paged.$refs.cri.model.f_userinfo_id = ''\r\n // this.$refs.paged.$refs.cri.model.f_operat_type = [this.operationtype]\r\n // this.search()\r\n // }\r\n // }\r\n },\r\n }\r\n </script>\r\n\n\n\n// WEBPACK FOOTER //\n// InstallCardList2.vue?f6be56b0","module.exports = \" <div> <partial-view v-ref:pv> <criteria-paged :model=model v-ref:paged :pager=false> <criteria partial=criteria @condition-changed=$parent.$parent.selfSearch v-ref:cri> <div novalidate class=\\\"flex-row select-overspread\\\" partial style=\\\"white-space: nowarp\\\"> <div class=form-group> <input type=text class=\\\"form-control width-100\\\" v-model=model.f_userinfo_id placeholder=报建编号 condition=\\\"f_userinfo_id = '{}'\\\"> </div> <div class=form-group style=\\\"flex: 1\\\"> <v-select id=f_paytype v-model=model.f_operat_type placeholder=操作类型 :value.sync=model.f_operat_type :options=$parent.$parent.$parent.operationtypes condition=\\\"f_operat_type = '{}'\\\" close-on-select></v-select> <partial name=cardcriteria></partial> </div> <div class=form-group> <button class=\\\"btn btn-success width-100\\\" @click=search() id=base-rightVie-cardLis-查询>查询</button> </div> </div> </criteria> <accordion :one-at-atime=true type=info partial=list> <panel type=info v-for=\\\"row in model.rows\\\" :is-open=true :is-click=false v-show=\\\"row.type==='终止报建'\\\"> <span class=\\\"panel-title row\\\" slot=header style=\\\"cursor: pointer\\\"> <div class=col-sm-11> <div class=row> <strong class=col-sm-4>{{row.f_userinfo_id}}</strong> <span class=col-sm-4>{{$parent.$parent.$parent.dateDes(row.f_operate_date)}}</span> <span class=col-sm-4>{{row.type}}</span> </div> </div> <div class=col-sm-1 v-if=$parent.$parent.$parent.isOperate> <dropdown class=auto v-if=\\\"row.type === '终止报建'\\\"> <button type=button data-toggle=dropdown style=\\\"border: 0px;background: none\\\"> <span class=\\\"glyphicon glyphicon-th-list\\\"></span> </button> <ul slot=dropdown-menu class=\\\"dropdown-menu dropdown-menu-right\\\" style=\\\"min-width: 60px\\\"> <li v-if=\\\"row.type === '终止报建'\\\"> <a href=# @click.stop=\\\"$parent.$parent.$parent.operate('撤销', row)\\\">撤销</a> </li> </ul> </dropdown> </div> <div class=panel-body v-if=$parent.$parent.$parent.isSelected(row)> <stopapply-apply-detail v-if=\\\"row.type === '终止报建'\\\" :data=row></stopapply-apply-detail> </div> <div v-if=!$parent.$parent.$parent.isSelected(row) style=\\\"margin-top: 8px;background: #FFF\\\"> <p>{{row.f_describe}}</p> </div> </span></panel> </accordion> </criteria-paged> </partial-view> </div> \";\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./~/vue-html-loader!./~/vue-loader/lib/selector.js?type=template&index=0!./src/components/product/VueUtils/rightview/InstallCardList2.vue\n// module id = 761\n// module chunks = 47","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!./InstallCardList2.vue\")\n__vue_template__ = require(\"!!vue-html-loader!../../../../../node_modules/vue-loader/lib/selector.js?type=template&index=0!./InstallCardList2.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/VueUtils/rightview/InstallCardList2.vue\n// module id = 942\n// module chunks = 47"],"sourceRoot":""}
@@ -1,2 +0,0 @@
1
- webpackJsonp([48],{13:function(t,e,r){"use strict";function a(t){return t&&t.__esModule?t:{default:t}}function n(t,e,r){if(t.f_state="",t.f_signin_time&&t.f_knockoff_time){var a=t.f_signin_time.substring(11,16),n=t.f_knockoff_time.substring(11,16);a>e&&(t.f_state="迟到"),n<r&&(t.f_state=t.f_state+"早退")}else t.f_state="缺勤";t.f_state||(t.f_state="正常")}function o(){var t=new Date,e=t.getMonth()+1;return t.getFullYear()+"-"+(e<10?"0"+e:e)}function s(){var t=new Date,e=t.getMonth()+1;return t.getFullYear()+(e<10?"0"+e:e)}function i(){var t=new Date,e=t.getMonth()+1,r=t.getDate();return t.getFullYear()+"-"+(e<10?"0"+e:e)+"-"+(r<10?"0"+r:r)}function l(){var t=new Date,e=t.getMonth()+1,r=t.getDate();return t.getFullYear()+""+(e<10?"0"+e:e)+(r<10?"0"+r:r)}function d(){var t=new Date,e=t.getMonth()+1;return[t.getFullYear()+"-"+(e<10?"0"+e:e)+"-01",t.getFullYear()+"-"+(e<10?"0"+e:e)+"-"+new Date(t.getFullYear(),e,0).getDate()]}function c(){var t=new Date,e=t.getMonth()+1,r=t.getDate(),a=t.getHours(),n=t.getMinutes(),o=t.getSeconds();return t.getFullYear()+"-"+(e<10?"0"+e:e)+"-"+(r<10?"0"+r:r)+" "+(a<10?"0"+a:a)+":"+(n<10?"0"+n:n)+":"+(o<10?"0"+o:o)}function u(){var t=new Date,e=t.getMonth()+1,r=t.getDate(),a=t.getHours(),n=t.getMinutes(),o=t.getSeconds();return t.getFullYear()+"-"+(e<10?"0"+e:e)+"-"+(r<10?"0"+r:r)+"T"+(a<10?"0"+a:a)+":"+(n<10?"0"+n:n)+":"+(o<10?"0"+o:o)}function f(t){return new Date(t.substr(0,4),t.substr(5,2)-1,t.substr(8,2),t.substr(11,2),t.substr(14,2),t.substr(17,2))}function p(t){var e=t.getMonth()+1,r=t.getDate(),a=t.getHours(),n=t.getMinutes(),o=t.getSeconds();return t.getFullYear()+"-"+(e<10?"0"+e:e)+"-"+(r<10?"0"+r:r)+"T"+(a<10?"0"+a:a)+":"+(n<10?"0"+n:n)+":"+(o<10?"0"+o:o)}function m(){var t=new Uint16Array(8);window.crypto.getRandomValues(t);var e=function(t){for(var e=t.toString(16);e.length<4;)e="0"+e;return e};return e(t[0])+e(t[1])+e(t[2])+e(t[3])+e(t[4])+e(t[5])+e(t[6])+e(t[7])}function v(t,e){var r=arguments.length>2&&void 0!==arguments[2]&&arguments[2],a=arguments.length>3&&void 0!==arguments[3]?arguments[3]:"请选择";if("view"!=t){var n=[];if(r&&n.push({label:a,value:null}),E.default.param&&E.default.param[e]){var o=E.default.param[e];o.forEach(function(t){n.push({label:t.name,value:t.name})})}else n.push({label:"请在系统设置里更新参数",value:"请在系统设置里更新参数"});return n}E.default.getParams(e,[null])}function g(t){return("number"!=typeof t||0!=t)&&(!t||(t+="",t=t.trim(),!t))}function h(t){return!window.isNaN(t)&&t%1===0}function b(t){return!window.isNaN(t)}function _(t){for(var e in t)t.hasOwnProperty(e)&&("object"==(0,P.default)(t[e])&&null!=t[e]?_(t[e]):"true"!==t[e]&&"false"!=t[e]||(t[e]="true"===t[e]))}function w(t){for(var e in t)e.endsWith("_path")?t[e]?t[e]="rs/db/file/"+t[e]:t[e]="rs/db/file/nopic.png":null!==t[e]&&"object"==(0,P.default)(t[e])&&w(t[e])}function y(t,e){return new $.default(function(r,a){var n=void 0;"css"==t?(n=document.createElement("link"),n.setAttribute("rel","stylesheet"),n.setAttribute("type","text/css"),n.setAttribute("href",e)):"js"==t&&(n=document.createElement("script"),n.setAttribute("type","text/javascript"),n.setAttribute("src",e)),n&&(n.setAttribute("async",""),n.setAttribute("defer",""),n.addEventListener("load",function(){r(n)},!1),n.addEventListener("error",function(){a(n)},!1),document.body.appendChild(n))})}function x(t){return t.substring(10)}function D(t){var e="",r="",a=new Date;e=a.getDay();var n=a.getMonth()+1,o=a.getDate(),s=a.getYear();r=s>200?s:1900+s;var i=["星期日","星期一","星期二","星期三","星期四","星期五","星期日","星期六"];return r+"年"+n+"月"+o+"日 "+i[e]}function M(t,e){var r=new Date(t);r=r.valueOf(),r+=24*e*60*60*1e3,r=new Date(r);var a=r.getMonth()+1,n=r.getDate(),o=r.getHours(),s=r.getMinutes(),i=r.getSeconds();return r.getFullYear()+"-"+(a<10?"0"+a:a)+"-"+(n<10?"0"+n:n)+" "+(o<10?"0"+o:o)+":"+(s<10?"0"+s:s)+":"+(i<10?"0"+i:i)}function S(t){var e=window.location.search,r=t.length,a=e.indexOf(t);if(a===-1)return"";a+=r+1;var n=e.indexOf("&",a);return n===-1?e.substring(a):e.substring(a,n)}function A(t){var e=Y(window.location.search.slice(1,window.location.search.length)),r=t.length,a=e.indexOf(t);if(a===-1)return"";a+=r+1;var n=e.indexOf("&",a);return n===-1?e.substring(a):e.substring(a,n)}function C(t){for(var e=String.fromCharCode(t.charCodeAt(0)+t.length),r=1;r<t.length;r++)e+=String.fromCharCode(t.charCodeAt(r)+t.charCodeAt(r-1));return escape(e)}function Y(t){t=unescape(t);for(var e=String.fromCharCode(t.charCodeAt(0)-t.length),r=1;r<t.length;r++)e+=String.fromCharCode(t.charCodeAt(r)-e.charCodeAt(r-1));return e}function k(t){var e=(new Date).getTime(),r=new Date(t).getTime(),a=e-r,n=6e4,o=60*n,s=24*o,i=30*s,l=12*i,d="";return a<=2*n?d="刚刚":2*n<a&&a<o?d=Math.floor(a/n)+"分钟前":o<a&&a<=s?d=Math.floor(a/o)+"小时前":s<a&&a<=i?d=Math.floor(a/s)+"天前":i<a&&a<=l?d=Math.floor(a/i)+"个月前":l<a&&(d=Math.floor(a/l)+"年前"),d}function F(t){var e=t.split("-"),r=e[1]-0+1;return e[0]+"-"+(r<10?"0"+r:r)+"-20 00:00:00"}Object.defineProperty(e,"__esModule",{value:!0}),e.f=void 0;var O=r(10),$=a(O),j=r(12),P=a(j);e.getAttendanceState=n,e.toStandardYearMonth=o,e.toStandardYearMonth1=s,e.toStandardDateString=i,e.toStandardDateString2=l,e.toStartAndEndDateString=d,e.toStandardTimeString=c,e.to3339TimeString=u,e.parse3339String=f,e.format3339TimeString=p,e.guid=m,e.choices=v,e.required=g,e.isInt=h,e.isFloat=b,e.booleanFilter=_,e.ratifyPics=w,e.loadscript=y,e.orgName=x,e.getNowDate=D,e.addDate=M,e.getUrlParames=S,e.getUrlCompileParames=A,e.compileStr=C,e.uncompileStr=Y,e.dateDescripte=k,e.nextMonth20=F;var T=r(1),E=a(T);e.f=void 0},373:function(t,e,r){"use strict";function a(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r]);return e.default=t,e}function n(t){return t&&t.__esModule?t:{default:t}}Object.defineProperty(e,"__esModule",{value:!0});var o=r(11),s=n(o),i=r(2),l=n(i),d=r(13),c=a(d),u=r(8),f=n(u),p=l.default.mark(function t(e,r,a){var n;return l.default.wrap(function(t){for(;;)switch(t.prev=t.next){case 0:return n={tablename:"t_apply",parameters:a},t.next=3,e.$resetpost("rs/logic/save",{data:n});case 3:delete r.id,r.processid=e.stopapply.f_process_id,r.f_operator=e.$login.f.name,n={tablename:"t_stopapply",parameters:r},e.$resetpost("rs/logic/save",{data:n}).then(function(){e.workflow()});case 8:case"end":return t.stop()}},t,this)});e.default={title:"终止报建",data:function(){return{model:{f_date:c.toStandardTimeString(),f_department:this.$login.f.f_parentname,f_operator:this.$login.f.name,f_filiale:this.$login.f.f_fengongsi}}},props:["stopapply"],methods:{confirm:function(){this.model=(0,s.default)({},this.stopapply,this.model),this.model.id=this.stopapply.id,this.model.applyid=this.stopapply.id,this.model.f_operat_type="终止报建",this.model.f_state="有效",this.model.f_describe=this.model.f_user_name+"已终止报建";var t=p(this,this.model,this.stopapply);(0,f.default)(t),this.$dispatch("searchcard"),this.$dispatch("hiddenbtn")},workflow:function(){var t=this;this.$resetpost("rs/logic/stopapply",{data:this.model}).then(function(e){t.reset()})},reset:function(){this.$dispatch("hiddenbtn")}}}},748:function(t,e){t.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> <validator name=v> <form class=horizontal style="padding-top: 50px"> <div class="form-group col-sm-12"> <div class=col-sm-2> <label class="control-label col-sm-12">终止原因:</label> </div> <div class=col-sm-10> <textarea class=form-control rows=3 v-model=model.f_stop_remarks></textarea> </div> </div> <div style=height:200px></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_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_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_operator disabled=disabled> </div> </div> </div> </form> </validator> <div class="from-group col-sm-12"> <center> <button type=button @click=confirm() class="btn btn-primary" style="width:80px; margin-left:50px" :disabled=$v.invalid> 保存 </button> <button type=button @click=reset() class="btn btn-warning" style="width:80px; margin-left:50px"> 返回 </button> </center> </div> </div> '},924:function(t,e,r){var a,n,o={};a=r(373),n=r(748),t.exports=a||{},t.exports.__esModule&&(t.exports=t.exports.default);var s="function"==typeof t.exports?t.exports.options||(t.exports.options={}):t.exports;n&&(s.template=n),s.computed||(s.computed={}),Object.keys(o).forEach(function(t){var e=o[t];s.computed[t]=function(){return e}})}});
2
- //# sourceMappingURL=48.js.map
@@ -1 +0,0 @@
1
- {"version":3,"sources":["webpack:///48.js","webpack:///./src/components/Util.js?3542******","webpack:///StopInstall.vue","webpack:///./src/components/product/Function/functions/StopInstall.vue?421a","webpack:///./src/components/product/Function/functions/StopInstall.vue"],"names":["webpackJsonp","13","module","exports","__webpack_require__","_interopRequireDefault","obj","__esModule","default","getAttendanceState","item","timeToWork","timeToGo","f_state","f_signin_time","f_knockoff_time","signin_time","substring","knockoff_time","toStandardYearMonth","dt","Date","month","getMonth","getFullYear","toStandardYearMonth1","toStandardDateString","date","getDate","toStandardDateString2","toStartAndEndDateString","toStandardTimeString","hour","getHours","min","getMinutes","sec","getSeconds","to3339TimeString","parse3339String","strDate","substr","format3339TimeString","guid","buf","Uint16Array","window","crypto","getRandomValues","S4","num","ret","toString","length","choices","role","param","hasBlank","arguments","undefined","blankHint","result","push","label","value","Vue","p","forEach","name","getParams","required","trim","isInt","n","isNaN","isFloat","booleanFilter","paper","key","hasOwnProperty","_typeof3","ratifyPics","endsWith","loadscript","type","fileName","_promise2","resolve","reject","element","document","createElement","setAttribute","addEventListener","body","appendChild","orgName","getNowDate","myweekday","year","mydate","getDay","mymonth","myday","myyear","getYear","week","addDate","days","endDate","valueOf","day","getUrlParames","query","location","search","iLen","iStart","indexOf","iEnd","getUrlCompileParames","uncompileStr","slice","compileStr","code","c","String","fromCharCode","charCodeAt","i","escape","unescape","dateDescripte","nowTime","getTime","oldTime","timeDiff","minute","des","Math","floor","nextMonth20","ds","split","nextMonth","Object","defineProperty","f","_promise","_typeof2","_vue","_vue2","373","_interopRequireWildcard","newObj","prototype","call","_assign","_assign2","_regenerator","_regenerator2","_Util","Util","_co","_co2","gen","mark","self","val","val1","data","wrap","_context","prev","next","tablename","parameters","$resetpost","id","processid","stopapply","f_process_id","f_operator","$login","then","workflow","stop","this","title","model","f_date","f_department","f_parentname","f_filiale","f_fengongsi","props","methods","confirm","applyid","f_operat_type","f_describe","f_user_name","getGen","$dispatch","_this","res","reset","748","924","__vue_script__","__vue_template__","__vue_styles__","__vue_options__","options","template","computed","keys"],"mappings":"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","file":"48.js","sourcesContent":["webpackJsonp([48],{\n\n/***/ 13:\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\texports.f = undefined;\n\t\n\tvar _promise = __webpack_require__(10);\n\t\n\tvar _promise2 = _interopRequireDefault(_promise);\n\t\n\tvar _typeof2 = __webpack_require__(12);\n\t\n\tvar _typeof3 = _interopRequireDefault(_typeof2);\n\t\n\texports.getAttendanceState = getAttendanceState;\n\texports.toStandardYearMonth = toStandardYearMonth;\n\texports.toStandardYearMonth1 = toStandardYearMonth1;\n\texports.toStandardDateString = toStandardDateString;\n\texports.toStandardDateString2 = toStandardDateString2;\n\texports.toStartAndEndDateString = toStartAndEndDateString;\n\texports.toStandardTimeString = toStandardTimeString;\n\texports.to3339TimeString = to3339TimeString;\n\texports.parse3339String = parse3339String;\n\texports.format3339TimeString = format3339TimeString;\n\texports.guid = guid;\n\texports.choices = choices;\n\texports.required = required;\n\texports.isInt = isInt;\n\texports.isFloat = isFloat;\n\texports.booleanFilter = booleanFilter;\n\texports.ratifyPics = ratifyPics;\n\texports.loadscript = loadscript;\n\texports.orgName = orgName;\n\texports.getNowDate = getNowDate;\n\texports.addDate = addDate;\n\texports.getUrlParames = getUrlParames;\n\texports.getUrlCompileParames = getUrlCompileParames;\n\texports.compileStr = compileStr;\n\texports.uncompileStr = uncompileStr;\n\texports.dateDescripte = dateDescripte;\n\texports.nextMonth20 = nextMonth20;\n\t\n\tvar _vue = __webpack_require__(1);\n\t\n\tvar _vue2 = _interopRequireDefault(_vue);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\tvar f = exports.f = undefined;\n\t\n\tfunction getAttendanceState(item, timeToWork, timeToGo) {\n\t item.f_state = '';\n\t if (!item.f_signin_time || !item.f_knockoff_time) {\n\t item.f_state = '缺勤';\n\t } else {\n\t var signin_time = item.f_signin_time.substring(11, 16);\n\t var knockoff_time = item.f_knockoff_time.substring(11, 16);\n\t if (signin_time > timeToWork) {\n\t item.f_state = '迟到';\n\t }\n\t if (knockoff_time < timeToGo) {\n\t item.f_state = item.f_state + '早退';\n\t }\n\t }\n\t if (!item.f_state) {\n\t item.f_state = '正常';\n\t }\n\t}\n\t\n\tfunction toStandardYearMonth() {\n\t var dt = new Date();\n\t var month = dt.getMonth() + 1;\n\t return dt.getFullYear() + '-' + (month < 10 ? '0' + month : month);\n\t}\n\tfunction toStandardYearMonth1() {\n\t var dt = new Date();\n\t var month = dt.getMonth() + 1;\n\t return dt.getFullYear() + (month < 10 ? '0' + month : month);\n\t}\n\t\n\tfunction toStandardDateString() {\n\t var dt = new Date();\n\t var month = dt.getMonth() + 1;\n\t var date = dt.getDate();\n\t return dt.getFullYear() + '-' + (month < 10 ? '0' + month : month) + '-' + (date < 10 ? '0' + date : date);\n\t}\n\tfunction toStandardDateString2() {\n\t var dt = new Date();\n\t var month = dt.getMonth() + 1;\n\t var date = dt.getDate();\n\t return dt.getFullYear() + '' + (month < 10 ? '0' + month : month) + '' + (date < 10 ? '0' + date : date);\n\t}\n\t\n\tfunction toStartAndEndDateString() {\n\t var dt = new Date();\n\t var month = dt.getMonth() + 1;\n\t\n\t return [dt.getFullYear() + '-' + (month < 10 ? '0' + month : month) + '-01', dt.getFullYear() + '-' + (month < 10 ? '0' + month : month) + '-' + new Date(dt.getFullYear(), month, 0).getDate()];\n\t}\n\t\n\tfunction toStandardTimeString() {\n\t var dt = new Date();\n\t var month = dt.getMonth() + 1;\n\t var date = dt.getDate();\n\t var hour = dt.getHours();\n\t var min = dt.getMinutes();\n\t var sec = dt.getSeconds();\n\t return dt.getFullYear() + '-' + (month < 10 ? '0' + month : month) + '-' + (date < 10 ? '0' + date : date) + ' ' + (hour < 10 ? '0' + hour : hour) + ':' + (min < 10 ? '0' + min : min) + ':' + (sec < 10 ? '0' + sec : sec);\n\t}\n\t\n\tfunction to3339TimeString() {\n\t var dt = new Date();\n\t var month = dt.getMonth() + 1;\n\t var date = dt.getDate();\n\t var hour = dt.getHours();\n\t var min = dt.getMinutes();\n\t var sec = dt.getSeconds();\n\t return dt.getFullYear() + '-' + (month < 10 ? '0' + month : month) + '-' + (date < 10 ? '0' + date : date) + 'T' + (hour < 10 ? '0' + hour : hour) + ':' + (min < 10 ? '0' + min : min) + ':' + (sec < 10 ? '0' + sec : sec);\n\t}\n\t\n\tfunction parse3339String(strDate) {\n\t return new Date(strDate.substr(0, 4), strDate.substr(5, 2) - 1, strDate.substr(8, 2), strDate.substr(11, 2), strDate.substr(14, 2), strDate.substr(17, 2));\n\t}\n\t\n\tfunction format3339TimeString(dt) {\n\t var month = dt.getMonth() + 1;\n\t var date = dt.getDate();\n\t var hour = dt.getHours();\n\t var min = dt.getMinutes();\n\t var sec = dt.getSeconds();\n\t return dt.getFullYear() + '-' + (month < 10 ? '0' + month : month) + '-' + (date < 10 ? '0' + date : date) + 'T' + (hour < 10 ? '0' + hour : hour) + ':' + (min < 10 ? '0' + min : min) + ':' + (sec < 10 ? '0' + sec : sec);\n\t}\n\t\n\tfunction guid() {\n\t var buf = new Uint16Array(8);\n\t window.crypto.getRandomValues(buf);\n\t var S4 = function S4(num) {\n\t var ret = num.toString(16);\n\t while (ret.length < 4) {\n\t ret = '0' + ret;\n\t }\n\t return ret;\n\t };\n\t return S4(buf[0]) + S4(buf[1]) + S4(buf[2]) + S4(buf[3]) + S4(buf[4]) + S4(buf[5]) + S4(buf[6]) + S4(buf[7]);\n\t}\n\t\n\tfunction choices(role, param) {\n\t var hasBlank = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : false;\n\t var blankHint = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : '请选择';\n\t\n\t if (role == 'view') {\n\t _vue2.default.getParams(param, [null]);\n\t } else {\n\t var result = [];\n\t if (hasBlank) result.push({ label: blankHint, value: null });\n\t if (!_vue2.default.param || !_vue2.default.param[param]) result.push({ label: '请在系统设置里更新参数', value: '请在系统设置里更新参数' });else {\n\t var p = _vue2.default.param[param];\n\t p.forEach(function (item) {\n\t result.push({ label: item.name, value: item.name });\n\t });\n\t }\n\t return result;\n\t }\n\t}\n\t\n\tfunction required(param) {\n\t if (typeof param === 'number' && param == 0) return false;\n\t if (!param) return true;\n\t param = param + '';\n\t param = param.trim();\n\t if (!param) return true;\n\t return false;\n\t}\n\t\n\tfunction isInt(n) {\n\t return !window.isNaN(n) && n % 1 === 0;\n\t}\n\t\n\tfunction isFloat(n) {\n\t return !window.isNaN(n);\n\t}\n\t\n\tfunction booleanFilter(paper) {\n\t for (var key in paper) {\n\t if (!paper.hasOwnProperty(key)) continue;\n\t if ((0, _typeof3.default)(paper[key]) == \"object\" && paper[key] != null) {\n\t booleanFilter(paper[key]);\n\t } else {\n\t if (paper[key] === \"true\" || paper[key] == \"false\") paper[key] = paper[key] === \"true\";\n\t }\n\t }\n\t}\n\tfunction ratifyPics(paper) {\n\t for (var key in paper) {\n\t if (key.endsWith('_path')) {\n\t if (!paper[key]) {\n\t paper[key] = 'rs/db/file/nopic.png';\n\t } else {\n\t paper[key] = 'rs/db/file/' + paper[key];\n\t }\n\t } else if (paper[key] !== null && (0, _typeof3.default)(paper[key]) == \"object\") {\n\t ratifyPics(paper[key]);\n\t }\n\t }\n\t}\n\t\n\tfunction loadscript(type, fileName) {\n\t return new _promise2.default(function (resolve, reject) {\n\t var element = void 0;\n\t if (type == 'css') {\n\t element = document.createElement('link');\n\t element.setAttribute(\"rel\", \"stylesheet\");\n\t element.setAttribute(\"type\", \"text/css\");\n\t element.setAttribute(\"href\", fileName);\n\t } else if (type == 'js') {\n\t element = document.createElement('script');\n\t element.setAttribute(\"type\", \"text/javascript\");\n\t element.setAttribute(\"src\", fileName);\n\t }\n\t if (element) {\n\t element.setAttribute('async', '');\n\t element.setAttribute('defer', '');\n\t element.addEventListener('load', function () {\n\t resolve(element);\n\t }, false);\n\t element.addEventListener('error', function () {\n\t reject(element);\n\t }, false);\n\t document.body.appendChild(element);\n\t }\n\t });\n\t}\n\tfunction orgName(name) {\n\t return name.substring(10);\n\t}\n\t\n\tfunction getNowDate(name) {\n\t var myweekday = '';\n\t var year = '';\n\t var mydate = new Date();\n\t myweekday = mydate.getDay();\n\t var mymonth = mydate.getMonth() + 1;\n\t var myday = mydate.getDate();\n\t var myyear = mydate.getYear();\n\t year = myyear > 200 ? myyear : 1900 + myyear;\n\t var week = ['星期日', '星期一', '星期二', '星期三', '星期四', '星期五', '星期日', '星期六'];\n\t\n\t return year + '年' + mymonth + '月' + myday + '日 ' + week[myweekday];\n\t}\n\t\n\tfunction addDate(date, days) {\n\t var endDate = new Date(date);\n\t endDate = endDate.valueOf();\n\t endDate = endDate + days * 24 * 60 * 60 * 1000;\n\t endDate = new Date(endDate);\n\t var month = endDate.getMonth() + 1;\n\t var day = endDate.getDate();\n\t var hour = endDate.getHours();\n\t var min = endDate.getMinutes();\n\t var sec = endDate.getSeconds();\n\t return endDate.getFullYear() + '-' + (month < 10 ? '0' + month : month) + '-' + (day < 10 ? '0' + day : day) + ' ' + (hour < 10 ? '0' + hour : hour) + ':' + (min < 10 ? '0' + min : min) + ':' + (sec < 10 ? '0' + sec : sec);\n\t}\n\t\n\tfunction getUrlParames(param) {\n\t var query = window.location.search;\n\t var iLen = param.length;\n\t var iStart = query.indexOf(param);\n\t if (iStart === -1) {\n\t return '';\n\t }\n\t iStart += iLen + 1;\n\t var iEnd = query.indexOf('&', iStart);\n\t if (iEnd === -1) {\n\t return query.substring(iStart);\n\t }\n\t return query.substring(iStart, iEnd);\n\t}\n\t\n\tfunction getUrlCompileParames(param) {\n\t var query = uncompileStr(window.location.search.slice(1, window.location.search.length));\n\t var iLen = param.length;\n\t var iStart = query.indexOf(param);\n\t if (iStart === -1) {\n\t return '';\n\t }\n\t iStart += iLen + 1;\n\t var iEnd = query.indexOf('&', iStart);\n\t if (iEnd === -1) {\n\t return query.substring(iStart);\n\t }\n\t return query.substring(iStart, iEnd);\n\t}\n\t\n\tfunction compileStr(code) {\n\t var c = String.fromCharCode(code.charCodeAt(0) + code.length);\n\t for (var i = 1; i < code.length; i++) {\n\t c += String.fromCharCode(code.charCodeAt(i) + code.charCodeAt(i - 1));\n\t }\n\t return escape(c);\n\t}\n\tfunction uncompileStr(code) {\n\t code = unescape(code);\n\t var c = String.fromCharCode(code.charCodeAt(0) - code.length);\n\t for (var i = 1; i < code.length; i++) {\n\t c += String.fromCharCode(code.charCodeAt(i) - c.charCodeAt(i - 1));\n\t }\n\t return c;\n\t}\n\t\n\tfunction dateDescripte(date) {\n\t var nowTime = new Date().getTime();\n\t var oldTime = new Date(date).getTime();\n\t var timeDiff = nowTime - oldTime;\n\t\n\t var minute = 1000 * 60;\n\t var hour = minute * 60;\n\t var day = hour * 24;\n\t var month = day * 30;\n\t var year = month * 12;\n\t var des = '';\n\t if (timeDiff <= minute * 2) {\n\t des = '刚刚';\n\t } else if (minute * 2 < timeDiff && timeDiff < hour) {\n\t des = Math.floor(timeDiff / minute) + '\\u5206\\u949F\\u524D';\n\t } else if (hour < timeDiff && timeDiff <= day) {\n\t des = Math.floor(timeDiff / hour) + '\\u5C0F\\u65F6\\u524D';\n\t } else if (day < timeDiff && timeDiff <= month) {\n\t des = Math.floor(timeDiff / day) + '\\u5929\\u524D';\n\t } else if (month < timeDiff && timeDiff <= year) {\n\t des = Math.floor(timeDiff / month) + '\\u4E2A\\u6708\\u524D';\n\t } else if (year < timeDiff) {\n\t des = Math.floor(timeDiff / year) + '\\u5E74\\u524D';\n\t }\n\t return des;\n\t}\n\t\n\tfunction nextMonth20(date) {\n\t var ds = date.split('-');\n\t var nextMonth = ds[1] - 0 + 1;\n\t return ds[0] + '-' + (nextMonth < 10 ? '0' + nextMonth : nextMonth) + '-20 00:00:00';\n\t}\n\n/***/ }),\n\n/***/ 373:\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t\n\tObject.defineProperty(exports, \"__esModule\", {\n\t value: true\n\t});\n\t\n\tvar _assign = __webpack_require__(11);\n\t\n\tvar _assign2 = _interopRequireDefault(_assign);\n\t\n\tvar _regenerator = __webpack_require__(2);\n\t\n\tvar _regenerator2 = _interopRequireDefault(_regenerator);\n\t\n\tvar _Util = __webpack_require__(13);\n\t\n\tvar Util = _interopRequireWildcard(_Util);\n\t\n\tvar _co = __webpack_require__(8);\n\t\n\tvar _co2 = _interopRequireDefault(_co);\n\t\n\tfunction _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }\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, val1) {\n\t var data;\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 data = {\n\t tablename: 't_apply',\n\t parameters: val1\n\t };\n\t _context.next = 3;\n\t return self.$resetpost('rs/logic/save', { data: data });\n\t\n\t case 3:\n\t delete val.id;\n\t\n\t val.processid = self.stopapply.f_process_id;\n\t val.f_operator = self.$login.f.name;\n\t data = {\n\t tablename: 't_stopapply',\n\t parameters: val\n\t };\n\t self.$resetpost('rs/logic/save', { data: data }).then(function () {\n\t self.workflow();\n\t });\n\t\n\t case 8:\n\t case 'end':\n\t return _context.stop();\n\t }\n\t }\n\t }, gen, this);\n\t});\n\texports.default = {\n\t title: '终止报建',\n\t data: function data() {\n\t return {\n\t model: {\n\t f_date: Util.toStandardTimeString(),\n\t f_department: this.$login.f.f_parentname,\n\t f_operator: this.$login.f.name,\n\t f_filiale: this.$login.f.f_fengongsi\n\t }\n\t };\n\t },\n\t\n\t props: ['stopapply'],\n\t methods: {\n\t confirm: function confirm() {\n\t this.model = (0, _assign2.default)({}, this.stopapply, this.model);\n\t this.model.id = this.stopapply.id;\n\t\n\t this.model.applyid = this.stopapply.id;\n\t this.model.f_operat_type = '终止报建';\n\t this.model.f_state = '有效';\n\t this.model.f_describe = this.model.f_user_name + '已终止报建';\n\t var getGen = gen(this, this.model, this.stopapply);\n\t (0, _co2.default)(getGen);\n\t this.$dispatch('searchcard');\n\t this.$dispatch('hiddenbtn');\n\t },\n\t workflow: function workflow() {\n\t var _this = this;\n\t\n\t this.$resetpost('rs/logic/stopapply', { data: this.model }).then(function (res) {\n\t _this.reset();\n\t });\n\t },\n\t reset: function reset() {\n\t this.$dispatch('hiddenbtn');\n\t }\n\t }\n\t};\n\n/***/ }),\n\n/***/ 748:\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> <validator name=v> <form class=horizontal style=\\\"padding-top: 50px\\\"> <div class=\\\"form-group col-sm-12\\\"> <div class=col-sm-2> <label class=\\\"control-label col-sm-12\\\">终止原因:</label> </div> <div class=col-sm-10> <textarea class=form-control rows=3 v-model=model.f_stop_remarks></textarea> </div> </div> <div style=height:200px></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_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_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_operator disabled=disabled> </div> </div> </div> </form> </validator> <div class=\\\"from-group col-sm-12\\\"> <center> <button type=button @click=confirm() class=\\\"btn btn-primary\\\" style=\\\"width:80px; margin-left:50px\\\" :disabled=$v.invalid> 保存 </button> <button type=button @click=reset() class=\\\"btn btn-warning\\\" style=\\\"width:80px; margin-left:50px\\\"> 返回 </button> </center> </div> </div> \";\n\n/***/ }),\n\n/***/ 924:\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar __vue_script__, __vue_template__\n\tvar __vue_styles__ = {}\n\t__vue_script__ = __webpack_require__(373)\n\t__vue_template__ = __webpack_require__(748)\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// 48.js","import Vue from 'vue'\r\n// 登录后获取的所有数据,需要自行获取\r\nexport var f\r\n\r\nexport function getAttendanceState (item, timeToWork, timeToGo) {\r\n item.f_state = ''\r\n if (!item.f_signin_time || !item.f_knockoff_time) {\r\n item.f_state = '缺勤'\r\n } else {\r\n let signin_time = item.f_signin_time.substring(11, 16)\r\n let knockoff_time = item.f_knockoff_time.substring(11, 16)\r\n if (signin_time > timeToWork) {\r\n item.f_state = '迟到'\r\n }\r\n if (knockoff_time < timeToGo) {\r\n item.f_state = item.f_state + '早退'\r\n }\r\n }\r\n if (!item.f_state) {\r\n item.f_state = '正常'\r\n }\r\n}\r\n\r\nexport function toStandardYearMonth () {\r\n let dt = new Date()\r\n let month = dt.getMonth() + 1\r\n return dt.getFullYear() + '-' + (month < 10 ? '0' + month : month)\r\n}\r\nexport function toStandardYearMonth1 () {\r\n let dt = new Date()\r\n let month = dt.getMonth() + 1\r\n return dt.getFullYear() + (month < 10 ? '0' + month : month)\r\n}\r\n\r\nexport function toStandardDateString () {\r\n let dt = new Date()\r\n let month = dt.getMonth() + 1\r\n let date = dt.getDate()\r\n return dt.getFullYear() + '-' + (month < 10 ? '0' + month : month) + '-' + (date < 10 ? '0' + date : date)\r\n}\r\nexport function toStandardDateString2 () {\r\n let dt = new Date()\r\n let month = dt.getMonth() + 1\r\n let date = dt.getDate()\r\n return dt.getFullYear() + '' + (month < 10 ? '0' + month : month) + '' + (date < 10 ? '0' + date : date)\r\n}\r\n\r\nexport function toStartAndEndDateString () {\r\n let dt = new Date()\r\n let month = dt.getMonth() + 1\r\n // let date = dt.getDate()\r\n return [dt.getFullYear() + '-' + (month < 10 ? '0' + month : month) + '-01',\r\n dt.getFullYear() + '-' + (month < 10 ? '0' + month : month) + '-' + (new Date(dt.getFullYear(), month, 0).getDate())]\r\n // return dt.getFullYear() + '-' + (month < 10 ? '0' + month : month) + '-' + (date < 10 ? '0' + date : date)\r\n}\r\n\r\nexport function toStandardTimeString () {\r\n let dt = new Date()\r\n let month = dt.getMonth() + 1\r\n let date = dt.getDate()\r\n let hour = dt.getHours()\r\n let min = dt.getMinutes()\r\n let sec = dt.getSeconds()\r\n return dt.getFullYear() + '-' + (month < 10 ? '0' + month : month) + '-' + (date < 10 ? '0' + date : date) +\r\n ' ' + (hour < 10 ? '0' + hour : hour) + ':' + (min < 10 ? '0' + min : min) + ':' + (sec < 10 ? '0' + sec : sec)\r\n}\r\n\r\nexport function to3339TimeString () {\r\n let dt = new Date()\r\n let month = dt.getMonth() + 1\r\n let date = dt.getDate()\r\n let hour = dt.getHours()\r\n let min = dt.getMinutes()\r\n let sec = dt.getSeconds()\r\n return dt.getFullYear() + '-' + (month < 10 ? '0' + month : month) + '-' + (date < 10 ? '0' + date : date) +\r\n 'T' + (hour < 10 ? '0' + hour : hour) + ':' + (min < 10 ? '0' + min : min) + ':' + (sec < 10 ? '0' + sec : sec)\r\n}\r\n\r\nexport function parse3339String(strDate) {\r\n return new Date(\r\n strDate.substr(0, 4), strDate.substr(5, 2)-1, strDate.substr(8, 2),\r\n strDate.substr(11, 2), strDate.substr(14, 2), strDate.substr(17, 2)\r\n )\r\n}\r\n\r\nexport function format3339TimeString(dt) {\r\n let month = dt.getMonth()+1\r\n let date = dt.getDate()\r\n let hour = dt.getHours()\r\n let min = dt.getMinutes()\r\n let sec = dt.getSeconds()\r\n return dt.getFullYear() + '-' + (month<10? '0'+ month : month) + '-' + (date<10? '0'+ date : date)\r\n + 'T' + (hour<10? '0'+ hour : hour) + ':' + (min<10? '0'+ min : min) + ':' + (sec<10? '0'+ sec : sec)\r\n}\r\n\r\nexport function guid() {\r\n let buf = new Uint16Array(8)\r\n window.crypto.getRandomValues(buf)\r\n let S4 = function(num) {\r\n let ret = num.toString(16)\r\n while(ret.length < 4){\r\n ret = '0' + ret\r\n }\r\n return ret\r\n }\r\n return (S4(buf[0])+S4(buf[1])+S4(buf[2])+S4(buf[3])+S4(buf[4])+S4(buf[5])+S4(buf[6])+S4(buf[7]))\r\n}\r\n\r\nexport function choices(role, param, hasBlank = false, blankHint='请选择') {\r\n if(role == 'view') {\r\n Vue.getParams(param, [null])\r\n } else {\r\n let result = []\r\n if(hasBlank)\r\n result.push({label: blankHint, value: null})\r\n if(!Vue.param || !Vue.param[param])\r\n result.push({label: '请在系统设置里更新参数', value: '请在系统设置里更新参数'})\r\n else {\r\n let p = Vue.param[param]\r\n p.forEach(function(item) {\r\n result.push({label: item.name, value: item.name})\r\n })\r\n }\r\n return result\r\n }\r\n}\r\n\r\nexport function required(param) {\r\n if(typeof param === 'number' && param == 0)\r\n return false\r\n if(!param)\r\n return true\r\n param = param + ''\r\n param = param.trim()\r\n if(!param)\r\n return true\r\n return false\r\n}\r\n\r\nexport function isInt(n){\r\n return !window.isNaN(n) && n % 1 === 0\r\n}\r\n\r\nexport function isFloat(n){\r\n return !window.isNaN(n)\r\n}\r\n\r\n// this will convert all true/false to boolean\r\nexport function booleanFilter(paper) {\r\n for(let key in paper) {\r\n if(!paper.hasOwnProperty(key))\r\n continue\r\n if(typeof paper[key] == \"object\" && paper[key] != null) {\r\n booleanFilter(paper[key]);\r\n } else {\r\n if(paper[key] === \"true\" || paper[key] == \"false\")\r\n paper[key] = (paper[key] === \"true\")\r\n }\r\n }\r\n}\r\n// recursively traverse through each path\r\nexport function ratifyPics(paper) {\r\n for(let key in paper) {\r\n if(key.endsWith('_path')) {\r\n if(!paper[key]) {\r\n paper[key] = 'rs/db/file/nopic.png'\r\n } else {\r\n paper[key] = 'rs/db/file/' + paper[key]\r\n }\r\n } else if(paper[key] !== null && typeof(paper[key]) == \"object\") {\r\n ratifyPics(paper[key])\r\n }\r\n }\r\n}\r\n\r\n// load script and other stuff\r\nexport function loadscript(type, fileName) {\r\n return new Promise((resolve, reject)=> {\r\n let element\r\n if(type == 'css') {\r\n element = document.createElement('link')\r\n element.setAttribute(\"rel\", \"stylesheet\")\r\n element.setAttribute(\"type\", \"text/css\")\r\n element.setAttribute(\"href\", fileName)\r\n } else if(type == 'js') {\r\n element = document.createElement('script')\r\n element.setAttribute(\"type\",\"text/javascript\")\r\n element.setAttribute(\"src\", fileName)\r\n }\r\n if(element) {\r\n element.setAttribute('async', '')\r\n element.setAttribute('defer', '')\r\n element.addEventListener('load', function() {\r\n resolve(element)\r\n }, false)\r\n element.addEventListener('error', function() {\r\n reject(element)\r\n }, false)\r\n document.body.appendChild(element)\r\n }\r\n })\r\n}\r\n// 不能选择器中截取掉多余的字符\r\nexport function orgName (name) {\r\n return name.substring(10)\r\n}\r\n\r\nexport function getNowDate (name) {\r\n // 求取当前时间的工具\r\n let myweekday = ''\r\n let year = ''\r\n let mydate = new Date()\r\n myweekday = mydate.getDay()\r\n let mymonth = mydate.getMonth() + 1\r\n let myday = mydate.getDate()\r\n let myyear = mydate.getYear()\r\n year = (myyear > 200) ? myyear : 1900 + myyear\r\n let week = ['星期日', '星期一', '星期二', '星期三', '星期四', '星期五', '星期日', '星期六']\r\n // document.write(\"<font color=#ffffff>今天是 \"+year+\"年\"+mymonth+\"月\"+myday+\"日 \"+weekday+\"</font>\");\r\n return year + '年' + mymonth + '月' + myday + '日 ' + week[myweekday]\r\n}\r\n\r\n\r\nexport function addDate (date, days) {\r\n // 求取当前时间的工具\r\n let endDate = new Date(date)\r\n endDate = endDate.valueOf()\r\n endDate = endDate + days * 24 * 60 * 60 * 1000\r\n endDate = new Date(endDate)\r\n let month = endDate.getMonth() + 1\r\n let day = endDate.getDate()\r\n let hour = endDate.getHours()\r\n let min = endDate.getMinutes()\r\n let sec = endDate.getSeconds()\r\n return endDate.getFullYear() + '-' + (month < 10 ? '0' + month : month) + '-' + (day < 10 ? '0' + day : day) +\r\n ' ' + (hour < 10 ? '0' + hour : hour) + ':' + (min < 10 ? '0' + min : min) + ':' + (sec < 10 ? '0' + sec : sec)\r\n // return a\r\n}\r\n\r\n// 通过地址栏的参数获取参数内容\r\nexport function getUrlParames (param) {\r\n var query = window.location.search\r\n var iLen = param.length\r\n var iStart = query.indexOf(param)\r\n if (iStart === -1) {\r\n return ''\r\n }\r\n iStart += iLen + 1\r\n var iEnd = query.indexOf('&', iStart)\r\n if (iEnd === -1) {\r\n return query.substring(iStart)\r\n }\r\n return query.substring(iStart, iEnd)\r\n}\r\n\r\n// 从地址栏获取加密的参数\r\nexport function getUrlCompileParames (param) {\r\n var query = uncompileStr(window.location.search.slice(1, window.location.search.length))\r\n var iLen = param.length\r\n var iStart = query.indexOf(param)\r\n if (iStart === -1) {\r\n return ''\r\n }\r\n iStart += iLen + 1\r\n var iEnd = query.indexOf('&', iStart)\r\n if (iEnd === -1) {\r\n return query.substring(iStart)\r\n }\r\n return query.substring(iStart, iEnd)\r\n}\r\n\r\n// 对字符串进行加密\r\nexport function compileStr (code) {\r\n let c = String.fromCharCode(code.charCodeAt(0) + code.length)\r\n for (let i = 1; i < code.length; i++) {\r\n c += String.fromCharCode(code.charCodeAt(i) + code.charCodeAt(i - 1))\r\n }\r\n return escape(c)\r\n}\r\n// 字符串进行解密\r\nexport function uncompileStr (code) {\r\n code = unescape(code)\r\n let c = String.fromCharCode(code.charCodeAt(0) - code.length)\r\n for (var i = 1; i < code.length; i++) {\r\n c += String.fromCharCode(code.charCodeAt(i) - c.charCodeAt(i - 1))\r\n }\r\n return c\r\n}\r\n\r\nexport function dateDescripte (date) {\r\n let nowTime = new Date().getTime()\r\n let oldTime = new Date(date).getTime()\r\n let timeDiff = nowTime - oldTime\r\n // 规则说明\r\n // 小于等于2分钟为刚刚\r\n // 大于2分钟小于等于1小时为取整的分钟前(例如:35分钟前)\r\n // 大于1小时小于等于24小时为取整的小时前(例如:15小时前)\r\n // 大于24小时小于等于30天为取整的天前(例如:12天前)\r\n // 大于30天小于等于12月为取整的月前,月份统一为30天一月,不做额外处理(例如:3个月前)\r\n // 大于365取整的年前,(例如:2年前)\r\n let minute = 1000 * 60\r\n let hour = minute * 60\r\n let day = hour * 24\r\n let month = day * 30\r\n let year = month * 12\r\n let des = ''\r\n if (timeDiff <= minute * 2) {\r\n des = '刚刚'\r\n } else if (minute * 2 < timeDiff && timeDiff < hour) {\r\n des = `${Math.floor(timeDiff / minute)}分钟前`\r\n } else if (hour < timeDiff && timeDiff <= day) {\r\n des = `${Math.floor(timeDiff / hour)}小时前`\r\n } else if (day < timeDiff && timeDiff <= month) {\r\n des = `${Math.floor(timeDiff / day)}天前`\r\n } else if (month < timeDiff && timeDiff <= year) {\r\n des = `${Math.floor(timeDiff / month)}个月前`\r\n } else if (year < timeDiff) {\r\n des = `${Math.floor(timeDiff / year)}年前`\r\n }\r\n return des\r\n}\r\n\r\nexport function nextMonth20 (date) {\r\n let ds = date.split('-')\r\n let nextMonth = ds[1] - 0 + 1\r\n return ds[0] + '-' + (nextMonth < 10 ? '0' + nextMonth : nextMonth) + '-20 00:00:00'\r\n}\r\n\r\n// export function getNowDate () {\r\n// // 求取当前时间的工具\r\n// let myweekday = ''\r\n// let year = ''\r\n// let mydate = new Date()\r\n// myweekday = mydate.getDay()\r\n// let mymonth = mydate.getMonth() + 1\r\n// let myday = mydate.getDate()\r\n// let myyear = mydate.getYear()\r\n// year = (myyear > 200) ? myyear : 1900 + myyear\r\n// let week = ['星期日','星期一','星期二','星期三','星期四','星期五','星期日','星期六']\r\n// let weekday = week[myweekday]\r\n//\r\n// // document.write(\"<font color=#ffffff>今天是 \"+year+\"年\"+mymonth+\"月\"+myday+\"日 \"+weekday+\"</font>\");\r\n// return year + '年' + mymonth + '月' + myday + '日 ' + weekday\r\n// }\r\n//\r\n// export function getImgsrc (name) {\r\n// return \"http://127.0.0.1:8081/images/\"+name+\".gif\"\r\n// }\r\n//\r\n// export var f;\r\n\n\n\n// WEBPACK FOOTER //\n// ./src/components/Util.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 \t<div class=\"panel-heading auto\">\r\n \t\t<h3 class=\"panel-title\">终止报建</h3>\r\n \t</div>\r\n </div>\r\n </div>\r\n <validator name=\"v\">\r\n <form class=\"horizontal\" style=\"padding-top: 50px;\">\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_stop_remarks\"></textarea>\r\n </div>\r\n </div>\r\n <div style=\"height:200px;\"></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_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_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_operator\" disabled>\r\n </div>\r\n </div>\r\n </div>\r\n </form>\r\n </validator>\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;\" :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 </div>\r\n</template>\r\n<script>\r\n // import AppData from '../../../../stores/AppData'\r\n import * as Util from '../../../Util'\r\n import co from 'co'\r\n let gen = function * (self, val, val1) {\r\n let data ={\r\n tablename:'t_apply',\r\n parameters:val1\r\n }\r\n yield self.$resetpost('rs/logic/save', {data:data})\r\n delete val.id\r\n // val.f_cancel_reason = self.stopapply.f_process_id\r\n val.processid = self.stopapply.f_process_id\r\n val.f_operator = self.$login.f.name\r\n data ={\r\n tablename:'t_stopapply',\r\n parameters:val\r\n }\r\n self.$resetpost('rs/logic/save', {data:data})\r\n .then(() => {\r\n self.workflow()\r\n })\r\n }\r\n export default {\r\n title: '终止报建',\r\n data () {\r\n return {\r\n model: {\r\n f_date: Util.toStandardTimeString(),\r\n f_department: this.$login.f.f_parentname,\r\n f_operator: this.$login.f.name,\r\n f_filiale: this.$login.f.f_fengongsi\r\n }\r\n }\r\n },\r\n props: ['stopapply'],\r\n methods: {\r\n confirm () {\r\n this.model = Object.assign({}, this.stopapply, this.model)\r\n this.model.id = this.stopapply.id\r\n // this.model.f_jmhj_cost= this.model.f_fee\r\n // this.stopapply.f_state = '终止报建'\r\n this.model.applyid = this.stopapply.id\r\n this.model.f_operat_type = '终止报建'\r\n this.model.f_state = '有效'\r\n this.model.f_describe = this.model.f_user_name + '已终止报建'\r\n let getGen = gen(this, this.model, this.stopapply)\r\n co(getGen)\r\n this.$dispatch('searchcard')\r\n this.$dispatch('hiddenbtn')\r\n },\r\n workflow () {\r\n // this.$post(`rs/workflow/stop/${this.stopapply.actid}/${this.$login.f.name}/${this.$login.f.id}`, [{data: `{id: ${this.model.actid}}`}])\r\n this.$resetpost('rs/logic/stopapply', {data: this.model})\r\n .then((res) => {\r\n this.reset()\r\n })\r\n },\r\n reset () {\r\n this.$dispatch('hiddenbtn')\r\n // this.$parent.$refs.installselect.$refs.cp.$refs.cri.search()\r\n }\r\n }\r\n }\r\n</script>\r\n\n\n\n// WEBPACK FOOTER //\n// StopInstall.vue?1bd5f54c","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> <validator name=v> <form class=horizontal style=\\\"padding-top: 50px\\\"> <div class=\\\"form-group col-sm-12\\\"> <div class=col-sm-2> <label class=\\\"control-label col-sm-12\\\">终止原因:</label> </div> <div class=col-sm-10> <textarea class=form-control rows=3 v-model=model.f_stop_remarks></textarea> </div> </div> <div style=height:200px></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_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_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_operator disabled=disabled> </div> </div> </div> </form> </validator> <div class=\\\"from-group col-sm-12\\\"> <center> <button type=button @click=confirm() class=\\\"btn btn-primary\\\" style=\\\"width:80px; margin-left:50px\\\" :disabled=$v.invalid> 保存 </button> <button type=button @click=reset() class=\\\"btn btn-warning\\\" style=\\\"width:80px; margin-left:50px\\\"> 返回 </button> </center> </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/StopInstall.vue\n// module id = 748\n// module chunks = 48","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!./StopInstall.vue\")\n__vue_template__ = require(\"!!vue-html-loader!../../../../../node_modules/vue-loader/lib/selector.js?type=template&index=0!./StopInstall.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/StopInstall.vue\n// module id = 924\n// module chunks = 48"],"sourceRoot":""}