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.
- package/android.html +4 -0
- package/build/css-loaders.js +34 -0
- package/build/dev-client.js +8 -0
- package/build/dev-server.js +151 -0
- package/build/example-server.js +80 -0
- package/build/release.sh +28 -0
- package/build/utils.js +80 -0
- package/build/webpack.base.conf.js +123 -0
- package/build/webpack.baseandroid.conf.js +123 -0
- package/build/webpack.dev.conf.js +43 -0
- package/build/webpack.devandroid.conf.js +34 -0
- package/build/webpack.example.conf.js +49 -0
- package/build/webpack.prod.conf.js +60 -0
- package/build/webpack.prodandroid.conf.js +60 -0
- package/dist-android.7z +0 -0
- package/dist.7z +0 -0
- package/index.html +33 -30
- package/package.json +11 -7
- package/src/AndroidApp.vue +21 -14
- package/src/App.vue +18 -20
- package/{dist-android/static → src/android-bootstrap/fonts}/glyphicons-halflings-regular.eot +0 -0
- package/{dist-android/static → src/android-bootstrap/fonts}/glyphicons-halflings-regular.svg +0 -0
- package/{dist-android/static → src/android-bootstrap/fonts}/glyphicons-halflings-regular.ttf +0 -0
- package/{dist-android/static → src/android-bootstrap/fonts}/glyphicons-halflings-regular.woff +0 -0
- package/{dist-android/static → src/android-bootstrap/fonts}/glyphicons-halflings-regular.woff2 +0 -0
- package/src/android-bootstrap/less/.csscomb.json +304 -0
- package/src/android-bootstrap/less/.csslintrc +19 -0
- package/src/android-bootstrap/less/alerts.less +73 -0
- package/src/android-bootstrap/less/badges.less +66 -0
- package/src/android-bootstrap/less/bootstrap.less +56 -0
- package/src/android-bootstrap/less/breadcrumbs.less +26 -0
- package/src/android-bootstrap/less/button-groups.less +247 -0
- package/src/android-bootstrap/less/buttons.less +173 -0
- package/src/android-bootstrap/less/carousel.less +269 -0
- package/src/android-bootstrap/less/close.less +34 -0
- package/src/android-bootstrap/less/code.less +69 -0
- package/src/android-bootstrap/less/component-animations.less +33 -0
- package/src/android-bootstrap/less/dropdowns.less +216 -0
- package/src/android-bootstrap/less/forms.less +626 -0
- package/src/android-bootstrap/less/glyphicons.less +305 -0
- package/src/android-bootstrap/less/grid.less +84 -0
- package/src/android-bootstrap/less/input-groups.less +167 -0
- package/src/android-bootstrap/less/jumbotron.less +52 -0
- package/src/android-bootstrap/less/labels.less +64 -0
- package/src/android-bootstrap/less/list-group.less +141 -0
- package/src/android-bootstrap/less/media.less +66 -0
- package/src/android-bootstrap/less/mixins/alerts.less +14 -0
- package/src/android-bootstrap/less/mixins/background-variant.less +9 -0
- package/src/android-bootstrap/less/mixins/border-radius.less +18 -0
- package/src/android-bootstrap/less/mixins/buttons.less +69 -0
- package/src/android-bootstrap/less/mixins/center-block.less +7 -0
- package/src/android-bootstrap/less/mixins/clearfix.less +22 -0
- package/src/android-bootstrap/less/mixins/forms.less +90 -0
- package/src/android-bootstrap/less/mixins/gradients.less +59 -0
- package/src/android-bootstrap/less/mixins/grid-framework.less +92 -0
- package/src/android-bootstrap/less/mixins/grid.less +122 -0
- package/src/android-bootstrap/less/mixins/hide-text.less +21 -0
- package/src/android-bootstrap/less/mixins/image.less +33 -0
- package/src/android-bootstrap/less/mixins/labels.less +12 -0
- package/src/android-bootstrap/less/mixins/list-group.less +30 -0
- package/src/android-bootstrap/less/mixins/nav-divider.less +10 -0
- package/src/android-bootstrap/less/mixins/nav-vertical-align.less +9 -0
- package/src/android-bootstrap/less/mixins/opacity.less +8 -0
- package/src/android-bootstrap/less/mixins/pagination.less +24 -0
- package/src/android-bootstrap/less/mixins/panels.less +24 -0
- package/src/android-bootstrap/less/mixins/progress-bar.less +10 -0
- package/src/android-bootstrap/less/mixins/reset-filter.less +8 -0
- package/src/android-bootstrap/less/mixins/reset-text.less +18 -0
- package/src/android-bootstrap/less/mixins/resize.less +6 -0
- package/src/android-bootstrap/less/mixins/responsive-visibility.less +15 -0
- package/src/android-bootstrap/less/mixins/size.less +10 -0
- package/src/android-bootstrap/less/mixins/tab-focus.less +9 -0
- package/src/android-bootstrap/less/mixins/table-row.less +44 -0
- package/src/android-bootstrap/less/mixins/text-emphasis.less +9 -0
- package/src/android-bootstrap/less/mixins/text-overflow.less +8 -0
- package/src/android-bootstrap/less/mixins/vendor-prefixes.less +227 -0
- package/src/android-bootstrap/less/mixins.less +40 -0
- package/src/android-bootstrap/less/modals.less +151 -0
- package/src/android-bootstrap/less/navbar.less +660 -0
- package/src/android-bootstrap/less/navs.less +302 -0
- package/src/android-bootstrap/less/normalize.less +424 -0
- package/src/android-bootstrap/less/pager.less +76 -0
- package/src/android-bootstrap/less/pagination.less +89 -0
- package/src/android-bootstrap/less/panels.less +274 -0
- package/src/android-bootstrap/less/popovers.less +131 -0
- package/src/android-bootstrap/less/print.less +101 -0
- package/src/android-bootstrap/less/progress-bars.less +87 -0
- package/src/android-bootstrap/less/responsive-embed.less +35 -0
- package/src/android-bootstrap/less/responsive-utilities.less +194 -0
- package/src/android-bootstrap/less/scaffolding.less +161 -0
- package/src/android-bootstrap/less/tables.less +262 -0
- package/src/android-bootstrap/less/theme.less +291 -0
- package/src/android-bootstrap/less/thumbnails.less +36 -0
- package/src/android-bootstrap/less/tooltip.less +102 -0
- package/src/android-bootstrap/less/type.less +303 -0
- package/src/android-bootstrap/less/utilities.less +55 -0
- package/src/android-bootstrap/less/variables.less +896 -0
- package/src/android-bootstrap/less/wells.less +29 -0
- package/src/android.js +7 -4
- package/src/apply.js +31 -15
- package/src/applyAndroid.js +52 -39
- package/src/assets//345/210/240/351/231/244.png +0 -0
- package/src/components/android/AppOnetomany.vue +301 -0
- package/src/components/android/AppServiceView.vue +568 -0
- package/src/components/android/AppSign.vue +169 -0
- package/src/components/android/AppTakePic.vue +142 -0
- package/src/components/android/AppUpload.vue +232 -0
- package/src/components/android/Ignition/VentilationIgnition.vue +328 -0
- package/src/components/android/Ignition/VentilationIgnitionHandle.vue +330 -0
- package/src/components/android/Process/AppExplorationUser.vue +352 -0
- package/src/components/android/Process/AppServiceControl.vue +1050 -0
- package/src/components/android/Process/Processes/AppDevicesManagement.vue +336 -0
- package/src/components/android/Process/Processes/AppInstallationDetails.vue +770 -0
- package/src/components/android/Process/Processes/SurveyUserSign.vue +56 -0
- package/src/components/android/Sign/AppSignTask.vue +182 -0
- package/src/components/android/Sign/SignProcess.vue +102 -0
- package/src/components/android/Supervisory/AppProcessSupervisory.vue +183 -0
- package/src/components/android/Supervisory/AppSupervisoryCart.vue +121 -0
- package/src/components/android/Task/Build/BuildTsak.vue +114 -0
- package/src/components/android/Task/Survey/SurveyTsak.vue +112 -0
- package/src/components/android/TaskGraph.vue +130 -0
- package/src/components/android/newPackage/customerServiceManager.vue +218 -0
- package/src/components/android/newPackage/designDrawings.vue +94 -0
- package/src/components/android/newPackage/detailedData.vue +24 -0
- package/src/components/android/newPackage/projectPrice.vue +218 -0
- package/src/components/image/dwg.png +0 -0
- package/src/components/image/dxf.png +0 -0
- package/src/components/product/ApplyCharge/ApplyChargeList.vue +141 -62
- package/src/components/product/ApplyCharge/ApplyChargeSearch.vue +2 -2
- package/src/components/product/Function/InstallFunction.vue +131 -147
- package/src/components/product/Function/InstallInfoSelect.vue +294 -281
- package/src/components/product/Function/Service/FunctionServiceControl.vue +323 -148
- package/src/components/product/Ignition/IgnitionDispatch.vue +277 -0
- package/src/components/product/Ignition/IgnitionRecord.vue +216 -0
- package/src/components/product/Onetomany.vue +377 -0
- package/src/components/product/Print/BuildOrder/buildOrderList.vue +229 -0
- package/src/components/product/Print/BuildOrder/printBuildOrder.vue +265 -0
- package/src/components/product/Process/ExplorationSelect.vue +281 -254
- package/src/components/product/Process/ExplorationUser.vue +151 -134
- package/src/components/product/Process/Processes/ApplyMapCom.vue +83 -0
- package/src/components/product/Process/Processes/ExhibitionPicture.vue +27 -0
- package/src/components/product/Process/Processes/InstallationDetails.vue +616 -277
- package/src/components/product/Process/Processes/Print/img/10101.png +0 -0
- package/src/components/product/Process/Processes/Print/img/1010109.png +0 -0
- package/src/components/product/Process/Processes/Print/img/1010110.png +0 -0
- package/src/components/product/Process/Processes/Print/img/1010111.png +0 -0
- package/src/components/product/Process/Processes/Print/img/1010112.png +0 -0
- package/src/components/product/Process/Processes/Print/printCharge.vue +142 -0
- package/src/components/product/Process/Processes/addressAndUserinfoManagement.vue +207 -249
- package/src/components/product/Process/Processes/chargeManagement.vue +331 -347
- package/src/components/product/Process/Processes/devicesManagement.vue +360 -0
- package/src/components/product/Process/Processes/selectApply.vue +250 -0
- package/src/components/product/Process/Processes/selectUserinfo.vue +182 -0
- package/src/components/product/Process/Processes/supplementalAgreement.vue +182 -181
- package/src/components/product/Process/Service/ServiceControl.vue +1314 -753
- package/src/components/product/Process/Service/ShowBackReason.vue +33 -0
- package/src/components/product/ServiceView.vue +632 -755
- package/src/components/product/Stop/StopApply.vue +105 -0
- package/src/components/product/Stop/StopApplyList.vue +224 -0
- package/src/components/product/Supervisory/NewSupervisoryhCart.vue +167 -0
- package/src/components/product/Supervisory/Service/SupervisoryServiceControl.vue +231 -199
- package/src/components/product/Supervisory/SupervisoryControl.vue +110 -121
- package/src/components/product/Supervisory/SupervisoryList.vue +98 -48
- package/src/components/product/Supervisory/SupervisoryhCart.vue +119 -103
- package/src/components/product/VueUtils/ApplyUpload.vue +279 -261
- package/src/components/product/VueUtils/HighMeter.vue +208 -0
- package/src/expandcssAndroid.less +1034 -0
- package/src/main.js +27 -23
- package/src/public/history/HistoryApplyList.vue +108 -0
- package/src/public/history/PublicHistoryApply.vue +39 -0
- package/src/public/history/PublicSupervisoryhCart.vue +72 -0
- package/src/public/order/PublicOrderApply.vue +387 -0
- package/dist-android/index.html +0 -3
- package/dist-android/static/.gitkeep +0 -0
- package/dist-android/static/0.js +0 -2
- package/dist-android/static/0.js.map +0 -1
- package/dist-android/static/1.js +0 -2
- package/dist-android/static/1.js.map +0 -1
- package/dist-android/static/10.js +0 -2
- package/dist-android/static/10.js.map +0 -1
- package/dist-android/static/100.js +0 -2
- package/dist-android/static/100.js.map +0 -1
- package/dist-android/static/11.js +0 -2
- package/dist-android/static/11.js.map +0 -1
- package/dist-android/static/12.js +0 -2
- package/dist-android/static/12.js.map +0 -1
- package/dist-android/static/13.js +0 -2
- package/dist-android/static/13.js.map +0 -1
- package/dist-android/static/14.js +0 -2
- package/dist-android/static/14.js.map +0 -1
- package/dist-android/static/15.js +0 -2
- package/dist-android/static/15.js.map +0 -1
- package/dist-android/static/16.js +0 -2
- package/dist-android/static/16.js.map +0 -1
- package/dist-android/static/17.js +0 -2
- package/dist-android/static/17.js.map +0 -1
- package/dist-android/static/18.js +0 -2
- package/dist-android/static/18.js.map +0 -1
- package/dist-android/static/19.js +0 -2
- package/dist-android/static/19.js.map +0 -1
- package/dist-android/static/2.js +0 -2
- package/dist-android/static/2.js.map +0 -1
- package/dist-android/static/20.js +0 -2
- package/dist-android/static/20.js.map +0 -1
- package/dist-android/static/21.js +0 -2
- package/dist-android/static/21.js.map +0 -1
- package/dist-android/static/22.js +0 -2
- package/dist-android/static/22.js.map +0 -1
- package/dist-android/static/23.js +0 -2
- package/dist-android/static/23.js.map +0 -1
- package/dist-android/static/24.js +0 -2
- package/dist-android/static/24.js.map +0 -1
- package/dist-android/static/25.js +0 -2
- package/dist-android/static/25.js.map +0 -1
- package/dist-android/static/26.js +0 -2
- package/dist-android/static/26.js.map +0 -1
- package/dist-android/static/27.js +0 -2
- package/dist-android/static/27.js.map +0 -1
- package/dist-android/static/28.js +0 -2
- package/dist-android/static/28.js.map +0 -1
- package/dist-android/static/29.js +0 -2
- package/dist-android/static/29.js.map +0 -1
- package/dist-android/static/3.js +0 -2
- package/dist-android/static/3.js.map +0 -1
- package/dist-android/static/30.js +0 -2
- package/dist-android/static/30.js.map +0 -1
- package/dist-android/static/31.js +0 -2
- package/dist-android/static/31.js.map +0 -1
- package/dist-android/static/32.js +0 -2
- package/dist-android/static/32.js.map +0 -1
- package/dist-android/static/33.js +0 -2
- package/dist-android/static/33.js.map +0 -1
- package/dist-android/static/34.js +0 -2
- package/dist-android/static/34.js.map +0 -1
- package/dist-android/static/35.js +0 -2
- package/dist-android/static/35.js.map +0 -1
- package/dist-android/static/36.js +0 -2
- package/dist-android/static/36.js.map +0 -1
- package/dist-android/static/37.js +0 -2
- package/dist-android/static/37.js.map +0 -1
- package/dist-android/static/38.js +0 -2
- package/dist-android/static/38.js.map +0 -1
- package/dist-android/static/39.js +0 -2
- package/dist-android/static/39.js.map +0 -1
- package/dist-android/static/4.js +0 -2
- package/dist-android/static/4.js.map +0 -1
- package/dist-android/static/40.js +0 -2
- package/dist-android/static/40.js.map +0 -1
- package/dist-android/static/41.js +0 -2
- package/dist-android/static/41.js.map +0 -1
- package/dist-android/static/42.js +0 -2
- package/dist-android/static/42.js.map +0 -1
- package/dist-android/static/43.js +0 -2
- package/dist-android/static/43.js.map +0 -1
- package/dist-android/static/44.js +0 -2
- package/dist-android/static/44.js.map +0 -1
- package/dist-android/static/45.js +0 -2
- package/dist-android/static/45.js.map +0 -1
- package/dist-android/static/46.js +0 -2
- package/dist-android/static/46.js.map +0 -1
- package/dist-android/static/47.js +0 -2
- package/dist-android/static/47.js.map +0 -1
- package/dist-android/static/48.js +0 -2
- package/dist-android/static/48.js.map +0 -1
- package/dist-android/static/49.js +0 -2
- package/dist-android/static/49.js.map +0 -1
- package/dist-android/static/5.js +0 -2
- package/dist-android/static/5.js.map +0 -1
- package/dist-android/static/50.js +0 -2
- package/dist-android/static/50.js.map +0 -1
- package/dist-android/static/51.js +0 -2
- package/dist-android/static/51.js.map +0 -1
- package/dist-android/static/52.js +0 -2
- package/dist-android/static/52.js.map +0 -1
- package/dist-android/static/53.js +0 -2
- package/dist-android/static/53.js.map +0 -1
- package/dist-android/static/54.js +0 -2
- package/dist-android/static/54.js.map +0 -1
- package/dist-android/static/55.js +0 -2
- package/dist-android/static/55.js.map +0 -1
- package/dist-android/static/56.js +0 -2
- package/dist-android/static/56.js.map +0 -1
- package/dist-android/static/57.js +0 -2
- package/dist-android/static/57.js.map +0 -1
- package/dist-android/static/58.js +0 -2
- package/dist-android/static/58.js.map +0 -1
- package/dist-android/static/59.js +0 -2
- package/dist-android/static/59.js.map +0 -1
- package/dist-android/static/6.js +0 -2
- package/dist-android/static/6.js.map +0 -1
- package/dist-android/static/60.js +0 -2
- package/dist-android/static/60.js.map +0 -1
- package/dist-android/static/61.js +0 -2
- package/dist-android/static/61.js.map +0 -1
- package/dist-android/static/62.js +0 -2
- package/dist-android/static/62.js.map +0 -1
- package/dist-android/static/63.js +0 -2
- package/dist-android/static/63.js.map +0 -1
- package/dist-android/static/64.js +0 -2
- package/dist-android/static/64.js.map +0 -1
- package/dist-android/static/65.js +0 -2
- package/dist-android/static/65.js.map +0 -1
- package/dist-android/static/66.js +0 -2
- package/dist-android/static/66.js.map +0 -1
- package/dist-android/static/67.js +0 -2
- package/dist-android/static/67.js.map +0 -1
- package/dist-android/static/68.js +0 -2
- package/dist-android/static/68.js.map +0 -1
- package/dist-android/static/69.js +0 -2
- package/dist-android/static/69.js.map +0 -1
- package/dist-android/static/7.js +0 -6
- package/dist-android/static/7.js.map +0 -1
- package/dist-android/static/70.js +0 -2
- package/dist-android/static/70.js.map +0 -1
- package/dist-android/static/71.js +0 -2
- package/dist-android/static/71.js.map +0 -1
- package/dist-android/static/72.js +0 -2
- package/dist-android/static/72.js.map +0 -1
- package/dist-android/static/73.js +0 -2
- package/dist-android/static/73.js.map +0 -1
- package/dist-android/static/74.js +0 -2
- package/dist-android/static/74.js.map +0 -1
- package/dist-android/static/75.js +0 -2
- package/dist-android/static/75.js.map +0 -1
- package/dist-android/static/76.js +0 -2
- package/dist-android/static/76.js.map +0 -1
- package/dist-android/static/77.js +0 -2
- package/dist-android/static/77.js.map +0 -1
- package/dist-android/static/78.js +0 -2
- package/dist-android/static/78.js.map +0 -1
- package/dist-android/static/79.js +0 -2
- package/dist-android/static/79.js.map +0 -1
- package/dist-android/static/8.js +0 -2
- package/dist-android/static/8.js.map +0 -1
- package/dist-android/static/80.js +0 -2
- package/dist-android/static/80.js.map +0 -1
- package/dist-android/static/81.js +0 -2
- package/dist-android/static/81.js.map +0 -1
- package/dist-android/static/82.js +0 -2
- package/dist-android/static/82.js.map +0 -1
- package/dist-android/static/83.js +0 -2
- package/dist-android/static/83.js.map +0 -1
- package/dist-android/static/84.js +0 -2
- package/dist-android/static/84.js.map +0 -1
- package/dist-android/static/85.js +0 -2
- package/dist-android/static/85.js.map +0 -1
- package/dist-android/static/86.js +0 -2
- package/dist-android/static/86.js.map +0 -1
- package/dist-android/static/87.js +0 -2
- package/dist-android/static/87.js.map +0 -1
- package/dist-android/static/88.js +0 -2
- package/dist-android/static/88.js.map +0 -1
- package/dist-android/static/89.js +0 -2
- package/dist-android/static/89.js.map +0 -1
- package/dist-android/static/9.js +0 -3
- package/dist-android/static/9.js.map +0 -1
- package/dist-android/static/90.js +0 -2
- package/dist-android/static/90.js.map +0 -1
- package/dist-android/static/91.js +0 -2
- package/dist-android/static/91.js.map +0 -1
- package/dist-android/static/92.js +0 -2
- package/dist-android/static/92.js.map +0 -1
- package/dist-android/static/93.js +0 -2
- package/dist-android/static/93.js.map +0 -1
- package/dist-android/static/94.js +0 -2
- package/dist-android/static/94.js.map +0 -1
- package/dist-android/static/95.js +0 -2
- package/dist-android/static/95.js.map +0 -1
- package/dist-android/static/96.js +0 -2
- package/dist-android/static/96.js.map +0 -1
- package/dist-android/static/97.js +0 -2
- package/dist-android/static/97.js.map +0 -1
- package/dist-android/static/98.js +0 -2
- package/dist-android/static/98.js.map +0 -1
- package/dist-android/static/99.js +0 -2
- package/dist-android/static/99.js.map +0 -1
- package/dist-android/static/app.css +0 -2
- package/dist-android/static/app.css.map +0 -1
- package/dist-android/static/app.js +0 -80
- package/dist-android/static/app.js.map +0 -1
- package/dist-android/static/batchleft.png +0 -0
- package/dist-android/static/batchright.png +0 -0
- package/dist-android/static/bluemainbg.jpg +0 -0
- package/dist-android/static/config.json +0 -7
- package/dist-android/static/denglu.png +0 -0
- package/dist-android/static/huangtengbiaozhi.png +0 -0
- package/dist-android/static/jingyin.jpg +0 -0
- package/dist-android/static/login_bg.jpg +0 -0
- package/dist-android/static/login_title.png +0 -0
- package/dist-android/static/login_title1.png +0 -0
- package/dist-android/static/loginbg.jpg +0 -0
- package/dist-android/static/loginlogo.png +0 -0
- package/dist-android/static/main_logo.png +0 -0
- package/dist-android/static/mainbg.jpg +0 -0
- package/dist-android/static/menulogo.png +0 -0
- package/dist-android/static/newmainbg.jpg +0 -0
- package/dist-android/static/psicon.png +0 -0
- package/dist-android/static/singleleft.png +0 -0
- package/dist-android/static/singleright.png +0 -0
- package/dist-android/static/treeopen.png +0 -0
- package/dist-android/static/treeout.png +0 -0
- package/dist-android/static/treeset.png +0 -0
- package/dist-android/static/usericon.png +0 -0
- package/dist-android/static/workflow_apply.json +0 -766
- package/dist-android/static/xinxi.png +0 -0
- package/dist-android/static//344/277/256/346/224/271/345/257/206/347/240/201.png +0 -0
- 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
- package/dist-android/static//345/257/274/345/207/272/346/225/260/346/215/256.png +0 -0
- package/dist-android/static//346/270/205/347/251/272/346/225/260/346/215/256.png +0 -0
- package/src/components/app_apply/Acceptance.vue +0 -298
- package/src/components/app_apply/ApplyApp.vue +0 -91
- package/src/components/app_apply/ApplyDownList.vue +0 -166
- package/src/components/app_apply/ApplyInfo.vue +0 -56
- package/src/components/app_apply/ApplyListUpload.vue +0 -258
- package/src/components/app_apply/ApplyToDoList.vue +0 -165
- package/src/components/app_apply/ApplyUserInfo.vue +0 -56
- package/src/components/app_apply/FieldExploration.vue +0 -267
- package/src/components/app_apply/PlaceControler.vue +0 -258
- package/src/components/app_apply/ServiceControl.vue +0 -267
- package/src/components/app_apply/ServiceView.vue +0 -355
- package/src/components/app_apply/ToolsPage.vue +0 -51
- package/src/components/app_apply/Ventilation.vue +0 -199
- package/src/components/product/ApplyCharge/ApplyChargeReport.vue +0 -107
- package/src/components/product/Function/StopApplyCrrdList.vue +0 -176
- package/src/components/product/Function/functions/ApplyRecordCancel.vue +0 -102
- package/src/components/product/Function/functions/StopInstall.vue +0 -106
- package/src/components/product/Process/Processes/printCharge.vue +0 -126
- package/src/components/product/Process/ShowBackReason.vue +0 -32
- package/src/components/product/ReportForm/GasIgnitionSummary.vue +0 -352
- package/src/components/product/VueUtils/ToolsPage.vue +0 -51
- package/src/components/product/VueUtils/Tree.vue +0 -330
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"sources":["webpack:///36.js","webpack:///BillKTKRecordInfo.vue","webpack:///./src/components/product/Bill/BillKTKRecordInfo.vue?43ca","webpack:///./src/components/product/Bill/BillKTKRecordInfo.vue?3d02","webpack:///./src/components/product/Bill/BillKTKRecordInfo.vue?cf9e","webpack:///./src/components/product/Bill/BillKTKRecordInfo.vue"],"names":["webpackJsonp","353","module","exports","__webpack_require__","_interopRequireDefault","obj","__esModule","default","Object","defineProperty","value","_regenerator","_regenerator2","_asyncToGenerator2","_asyncToGenerator3","_vueClient","title","props","data","show","model","PagedList","f_process_id","this","billselect","fengongsi","$login","f","f_fengongsi","f_bill_type","selectone","model1","DataModel","selectid","selectdata","ready","$refs","cp","cri","search","methods","details","row","console","log","id","paramSource","page1","xiaoshoudan","close","updateNumber","_ref","apply","arguments","mark","_callee","http","billinfo","wrap","_context","prev","next","HttpResetClass","f_status","load","resolveMsg","rejectMsg","stop","505","push","version","sources","names","mappings","file","sourceRoot","587","content","locals","783","904","__vue_script__","__vue_template__","__vue_styles__","__vue_options__","options","template","computed","keys","forEach","key"],"mappings":"AAAAA,cAAc,KAERC,IACA,SAAUC,EAAQC,EAASC,GAEhC,YAgBA,SAASC,GAAuBC,GAAO,MAAOA,IAAOA,EAAIC,WAAaD,GAAQE,QAASF,GAdvFG,OAAOC,eAAeP,EAAS,cAC7BQ,OAAO,GAGT,IAAIC,GAAeR,EAAoB,GAEnCS,EAAgBR,EAAuBO,GAEvCE,EAAqBV,EAAoB,GAEzCW,EAAqBV,EAAuBS,GAE5CE,EAAaZ,EAAoB,EAIrCD,GAAQK,SCmHTS,MAAA,UACAC,OAAA,0BACAC,KAHA,WAIA,OACAC,MAAA,EACAC,MAAA,GAAAL,GAAAM,UAAA,wBACAH,MACAI,aAAAC,KAAAC,WAAAF,aACAG,UAAAF,KAAAG,OAAAC,EAAAC,YACAC,YAAAN,KAAAO,aAGAC,OAAA,GAAAhB,GAAAiB,UAAA,4BACAd,MACAe,SAAAV,KAAAU,YAGAA,SAAA,KACAC,WAAA,OAGAC,MAtBA,WAuBAZ,KAAAa,MAAAC,GAAAD,MAAAE,IAAAC,UAEAC,SACAC,QADA,SACAC,GACAC,QAAAC,IAAA,SAAAF,EAAAG,IACAtB,KAAAU,SAAAS,EAAAG,GACAtB,KAAAW,WAAAQ,EACAnB,KAAAJ,MAAA,EACAI,KAAAQ,OAAAe,YAAA5B,KAAAe,SAAAV,KAAAU,SACAV,KAAAa,MAAAW,MAAAX,MAAAY,YAAAT,UAEAU,MATA,WAUA1B,KAAAJ,MAAA,GAEA+B,aAZA,mBAAAA,KAAA,MAAAC,GAAAC,MAAA7B,KAAA8B,WAAA,GAAAF,IAAA,EAAArC,EAAAP,SAAAK,EAAAL,QAAA+C,KAAA,QAAAC,KAAA,GAAAC,GAAAC,EAAAvC,CAAA,OAAAN,GAAAL,QAAAmD,KAAA,SAAAC,GAAA,cAAAA,EAAAC,KAAAD,EAAAE,MAAA,aAaAL,GAAA,GAAAzC,GAAA+C,eACAL,EAAAlC,KAAAW,iBACAuB,GAAAZ,GAEAY,EAAA5B,YAAAN,KAAAO,UACA2B,EAAAM,SAAA,KACA7C,GACAuC,YApBAE,EAAAE,KAAA,EAsBAL,EAAAQ,KAAA,kCAAA9C,SAAA+C,WAAA,KAAAC,UAAA,aAtBA,wBAAAP,GAAAQ,SAAAZ,EAAAhC,QAAA,OAAA2B,SD9DMkB,IACA,SAAUnE,EAAQC,EAASC,GErGjCD,EAAAD,EAAAC,QAAAC,EAAA,KAKAD,EAAAmE,MAAApE,EAAA4C,GAAA,OAAkCyB,QAAA,EAAAC,WAAAC,SAAAC,SAAA,GAAAC,KAAA,wBAAAC,WAAA,iBF8G5BC,IACA,SAAU3E,EAAQC,EAASC,GGjHjC,GAAA0E,GAAA1E,EAAA,IACA,iBAAA0E,SAAA5E,EAAA4C,GAAAgC,EAAA,KAEA1E,GAAA,GAAA0E,KACAA,GAAAC,SAAA7E,EAAAC,QAAA2E,EAAAC,SHuIMC,IACA,SAAU9E,EAAQC,GI/IxBD,EAAAC,QAAA,kiHJqJM8E,IACA,SAAU/E,EAAQC,EAASC,GKtJjC,GAAA8E,GAAAC,EACAC,IACAhF,GAAA,KACA8E,EAAA9E,EAAA,KACA+E,EAAA/E,EAAA,KACAF,EAAAC,QAAA+E,MACAhF,EAAAC,QAAAI,aAAAL,EAAAC,QAAAD,EAAAC,QAAAK,QACA,IAAA6E,GAAA,kBAAAnF,GAAAC,QAAAD,EAAAC,QAAAmF,UAAApF,EAAAC,QAAAmF,YAAoHpF,EAAAC,OACpHgF,KACAE,EAAAE,SAAAJ,GAEAE,EAAAG,WAAAH,EAAAG,aACA/E,OAAAgF,KAAAL,GAAAM,QAAA,SAAAC,GACA,GAAAzF,GAAAkF,EAAAO,EACAN,GAAAG,SAAAG,GAAA,WAA6C,MAAAzF","file":"36.js","sourcesContent":["webpackJsonp([36],{\n\n/***/ 353:\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t\n\tObject.defineProperty(exports, \"__esModule\", {\n\t value: true\n\t});\n\t\n\tvar _regenerator = __webpack_require__(2);\n\t\n\tvar _regenerator2 = _interopRequireDefault(_regenerator);\n\t\n\tvar _asyncToGenerator2 = __webpack_require__(7);\n\t\n\tvar _asyncToGenerator3 = _interopRequireDefault(_asyncToGenerator2);\n\t\n\tvar _vueClient = __webpack_require__(3);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\texports.default = {\n\t title: \"开通卡历史记录\",\n\t props: ['billselect', 'selectone'],\n\t data: function data() {\n\t return {\n\t show: false,\n\t model: new _vueClient.PagedList('rs/sql/billrecord', 20, {\n\t data: {\n\t f_process_id: this.billselect.f_process_id,\n\t fengongsi: this.$login.f.f_fengongsi,\n\t f_bill_type: this.selectone\n\t }\n\t }),\n\t model1: new _vueClient.DataModel('rs/report/kaitongkalishi', {\n\t data: {\n\t selectid: this.selectid\n\t }\n\t }),\n\t selectid: null,\n\t selectdata: null\n\t };\n\t },\n\t ready: function ready() {\n\t this.$refs.cp.$refs.cri.search();\n\t },\n\t\n\t methods: {\n\t details: function details(row) {\n\t console.log('选中的id:' + row.id);\n\t this.selectid = row.id;\n\t this.selectdata = row;\n\t this.show = true;\n\t this.model1.paramSource.data.selectid = this.selectid;\n\t this.$refs.page1.$refs.xiaoshoudan.search();\n\t },\n\t close: function close() {\n\t this.show = false;\n\t },\n\t updateNumber: function () {\n\t var _ref = (0, _asyncToGenerator3.default)(_regenerator2.default.mark(function _callee() {\n\t var http, billinfo, data;\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 billinfo = this.selectdata;\n\t\n\t delete billinfo.id;\n\t\n\t billinfo.f_bill_type = this.selectone;\n\t billinfo.f_status = '补打';\n\t data = {\n\t billinfo: billinfo\n\t };\n\t _context.next = 8;\n\t return http.load('POST', 'rs/logic/makebillrecord', { data: data }, { resolveMsg: null, rejectMsg: \"开通卡记录存储失败\" });\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 updateNumber() {\n\t return _ref.apply(this, arguments);\n\t }\n\t\n\t return updateNumber;\n\t }()\n\t }\n\t};\n\n/***/ }),\n\n/***/ 505:\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\":\"BillKTKRecordInfo.vue\",\"sourceRoot\":\"webpack://\"}]);\n\t\n\t// exports\n\n\n/***/ }),\n\n/***/ 587:\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__(505);\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-3ec8b606&scoped=true!../../../../node_modules/vue-loader/lib/selector.js?type=style&index=0!./BillKTKRecordInfo.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-3ec8b606&scoped=true!../../../../node_modules/vue-loader/lib/selector.js?type=style&index=0!./BillKTKRecordInfo.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/***/ 783:\n/***/ (function(module, exports) {\n\n\tmodule.exports = \" <div class=\\\"d1 flex\\\" _v-3ec8b606=\\\"\\\"> <div class=\\\"left col-sm-12\\\" _v-3ec8b606=\\\"\\\"> <criteria-paged :model=model v-ref:cp=\\\"\\\" _v-3ec8b606=\\\"\\\"> <criteria partial=criteria @condition-changed=search v-ref:cri=\\\"\\\" _v-3ec8b606=\\\"\\\"> <form novalidate=\\\"\\\" class=\\\"\\\" partial=\\\"\\\" _v-3ec8b606=\\\"\\\"> <div class=col-sm-2 _v-3ec8b606=\\\"\\\"> <div class=col-sm-6 _v-3ec8b606=\\\"\\\"> <input type=hidden class=form-control v-model=model.id v-on:keyup.enter=search condition=\\\"id like '{}%'\\\" _v-3ec8b606=\\\"\\\"> </div> </div> <div class=col-sm-1 _v-3ec8b606=\\\"\\\"> <button type=hidden @click=search(),$parent.$parent.close() _v-3ec8b606=\\\"\\\"> </button> </div> </form> </criteria> <data-grid :model=model partial=list v-ref:grid=\\\"\\\" class=data-grid is-fixed=false style=overflow-x:auto _v-3ec8b606=\\\"\\\"> <template partial=head> <tr class=title _v-3ec8b606=\\\"\\\"> <th _v-3ec8b606=\\\"\\\"> <nobr _v-3ec8b606=\\\"\\\">序号</nobr> </th> <th _v-3ec8b606=\\\"\\\"> <nobr _v-3ec8b606=\\\"\\\">状态</nobr> </th> <th _v-3ec8b606=\\\"\\\"> <nobr _v-3ec8b606=\\\"\\\">开通日期</nobr> </th> <th _v-3ec8b606=\\\"\\\"> <nobr _v-3ec8b606=\\\"\\\">用户姓名</nobr> </th> <th _v-3ec8b606=\\\"\\\"> <nobr _v-3ec8b606=\\\"\\\">联系电话</nobr> </th> <th _v-3ec8b606=\\\"\\\"> <nobr _v-3ec8b606=\\\"\\\">协议号</nobr> </th> <th _v-3ec8b606=\\\"\\\"> <nobr _v-3ec8b606=\\\"\\\">开通地址</nobr> </th> <th _v-3ec8b606=\\\"\\\"> <nobr _v-3ec8b606=\\\"\\\">操作</nobr> </th> </tr> </template> <template partial=body> <tr _v-3ec8b606=\\\"\\\"> <td _v-3ec8b606=\\\"\\\"> <nobr _v-3ec8b606=\\\"\\\">{{$index+1}}</nobr> </td> <td _v-3ec8b606=\\\"\\\"> <nobr _v-3ec8b606=\\\"\\\">{{row.f_status}}</nobr> </td> <td _v-3ec8b606=\\\"\\\"> <nobr _v-3ec8b606=\\\"\\\">{{row.f_date}}</nobr> </td> <td _v-3ec8b606=\\\"\\\"> <nobr _v-3ec8b606=\\\"\\\">{{row.f_user_name}}</nobr> </td> <td _v-3ec8b606=\\\"\\\"> <nobr _v-3ec8b606=\\\"\\\">{{row.f_phone}}</nobr> </td> <td _v-3ec8b606=\\\"\\\"> <nobr _v-3ec8b606=\\\"\\\">{{row.f_contract_number}}</nobr> </td> <td _v-3ec8b606=\\\"\\\"> <nobr _v-3ec8b606=\\\"\\\">{{row.f_address}}</nobr> </td> <td _v-3ec8b606=\\\"\\\"> <a href=# @click=$parent.$parent.$parent.details(row) _v-3ec8b606=\\\"\\\">查看详情</a> </td> </tr> </template> </data-grid> </criteria-paged> </div> <modal :show.sync=show v-ref:modal=\\\"\\\" backdrop=false _v-3ec8b606=\\\"\\\"> <header slot=modal-header class=modal-header _v-3ec8b606=\\\"\\\"> <button type=button class=close @click=close _v-3ec8b606=\\\"\\\"><span _v-3ec8b606=\\\"\\\">×</span></button> </header> <article slot=modal-body class=modal-body _v-3ec8b606=\\\"\\\"> <div style=\\\"width:auto;height: auto\\\" _v-3ec8b606=\\\"\\\"> <criteria-paged v-ref:page1=\\\"\\\" :model=model1 :pager=false _v-3ec8b606=\\\"\\\"> <criteria v-ref:xiaoshoudan=\\\"\\\" partial=criteria @condition-changed=search _v-3ec8b606=\\\"\\\"> <div novalidate=\\\"\\\" class=\\\"form-inline auto\\\" partial=\\\"\\\" _v-3ec8b606=\\\"\\\"> <div class=form-group _v-3ec8b606=\\\"\\\"> </div> </div> </criteria> <div partial=list id=shexianss1 _v-3ec8b606=\\\"\\\"> <table class=tablesty style=\\\"margin: 0px auto\\\" border=1 _v-3ec8b606=\\\"\\\"> <tbody _v-3ec8b606=\\\"\\\"><tr _v-3ec8b606=\\\"\\\"> <th colspan=4 style=\\\"font-weight: normal\\\" _v-3ec8b606=\\\"\\\"> {{{ model.data.substring(26,model.data.length-8) }}} </th> </tr> </tbody></table> <div class=col-sm-12 style=\\\"margin-top: 2px\\\" _v-3ec8b606=\\\"\\\"> <div class=col-sm-2 _v-3ec8b606=\\\"\\\"> <label _v-3ec8b606=\\\"\\\"> <nobr _v-3ec8b606=\\\"\\\"> 补打原因:</nobr> </label> </div> <div class=col-sm-6 _v-3ec8b606=\\\"\\\"> <input style=\\\"width: 100%\\\" v-model=model.f_again_reason :value.sync=model.f_again_reason _v-3ec8b606=\\\"\\\"> </div> <div class=col-sm-2 _v-3ec8b606=\\\"\\\"> <report-print v-if=model.f_again_reason @click=$parent.$parent.updateNumber() id=shexianss1 top=1cm left=1cm width=100% height=100% _v-3ec8b606=\\\"\\\"></report-print> </div> </div> </div> </criteria-paged> </div> </article> <footer slot=modal-footer class=modal-footer _v-3ec8b606=\\\"\\\"> </footer> </modal> </div> \";\n\n/***/ }),\n\n/***/ 904:\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar __vue_script__, __vue_template__\n\tvar __vue_styles__ = {}\n\t__webpack_require__(587)\n\t__vue_script__ = __webpack_require__(353)\n\t__vue_template__ = __webpack_require__(783)\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// 36.js","<template>\r\n <div class=\"d1 flex\">\r\n <div class=\"left col-sm-12\">\r\n <criteria-paged :model=\"model\" v-ref:cp>\r\n <criteria partial='criteria' @condition-changed='search' v-ref:cri>\r\n <form novalidate class=\"\" partial>\r\n <div class=\"col-sm-2\">\r\n <div class=\"col-sm-6\">\r\n <input type=\"hidden\" class=\"form-control\" v-model=\"model.id\"\r\n v-on:keyup.enter=\"search\"\r\n condition=\"id like '{}%'\">\r\n </div>\r\n </div>\r\n <div class=\"col-sm-1\">\r\n <button type=\"hidden\" @click=\"search(),$parent.$parent.close()\">\r\n </button>\r\n </div>\r\n </form>\r\n </criteria>\r\n <data-grid :model=\"model\" partial='list' v-ref:grid class=\"data-grid\" is-fixed='false' style=\"overflow-x:auto\">\r\n <template partial='head'>\r\n <tr class=\"title\">\r\n <th>\r\n <nobr>序号</nobr>\r\n </th>\r\n <th>\r\n <nobr>状态</nobr>\r\n </th>\r\n <th>\r\n <nobr>开通日期</nobr>\r\n </th>\r\n <th>\r\n <nobr>用户姓名</nobr>\r\n </th>\r\n <th>\r\n <nobr>联系电话</nobr>\r\n </th>\r\n <th>\r\n <nobr>协议号</nobr>\r\n </th>\r\n <th>\r\n <nobr>开通地址</nobr>\r\n </th>\r\n <th>\r\n <nobr>操作</nobr>\r\n </th>\r\n </tr>\r\n </template>\r\n <template partial='body'>\r\n <tr>\r\n <td>\r\n <nobr>{{$index+1}}</nobr>\r\n </td>\r\n <td>\r\n <nobr>{{row.f_status}}</nobr>\r\n </td>\r\n <td>\r\n <nobr>{{row.f_date}}</nobr>\r\n </td>\r\n <td>\r\n <nobr>{{row.f_user_name}}</nobr>\r\n </td>\r\n <td>\r\n <nobr>{{row.f_phone}}</nobr>\r\n </td>\r\n <td>\r\n <nobr>{{row.f_contract_number}}</nobr>\r\n </td>\r\n <td>\r\n <nobr>{{row.f_address}}</nobr>\r\n </td>\r\n <td>\r\n <a href=\"#\" @click=\"$parent.$parent.$parent.details(row)\">查看详情</a>\r\n </td>\r\n </tr>\r\n </template>\r\n </data-grid>\r\n </criteria-paged>\r\n </div>\r\n <modal :show.sync=\"show\" v-ref:modal backdrop=\"false\">\r\n <header slot=\"modal-header\" class=\"modal-header\">\r\n <button type=\"button\" class=\"close\" @click=\"close\"><span>×</span></button>\r\n </header>\r\n <article slot=\"modal-body\" class=\"modal-body\">\r\n <div style=\"width:auto;height: auto\">\r\n <criteria-paged v-ref:page1 :model=\"model1\" :pager='false'>\r\n <criteria v-ref:xiaoshoudan 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>\r\n </div>\r\n </criteria>\r\n <div partial='list' id='shexianss1'>\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 class=\"col-sm-12\" style=\"margin-top: 2px\">\r\n <div class=\"col-sm-2\">\r\n <label>\r\n <nobr> 补打原因:</nobr>\r\n </label>\r\n </div>\r\n <div class=\"col-sm-6\">\r\n <input style=\"width: 100%\" v-model=\"model.f_again_reason\" :value.sync=\"model.f_again_reason\"/>\r\n </div>\r\n <div class=\"col-sm-2\">\r\n <report-print v-if=\"model.f_again_reason\" @click=\"$parent.$parent.updateNumber()\" id='shexianss1' top='1cm' left='1cm'\r\n width='100%' height='100%'></report-print>\r\n </div>\r\n </div>\r\n </div>\r\n\r\n </criteria-paged>\r\n </div>\r\n </article>\r\n <footer slot=\"modal-footer\" class=\"modal-footer\">\r\n <!--<button v-show=\"show\" type=\"button\" class=\"btn btn-default\" @click='close'>取消</button>-->\r\n <!--<button v-show=\"show\" type=\"button\" class=\"btn btn-success\" @click='confirm'>确认</button>-->\r\n </footer>\r\n </modal>\r\n </div>\r\n</template>\r\n\r\n<script>\r\n import {HttpResetClass} from 'vue-client'\r\n import {DataModel} from 'vue-client'\r\n import {\r\n PagedList\r\n } from 'vue-client'\r\n\r\n export default {\r\n title: \"开通卡历史记录\",\r\n props: ['billselect', 'selectone'],\r\n data() {\r\n return {\r\n show: false, // 详情显示控制(模态框)\r\n model: new PagedList('rs/sql/billrecord', 20, {\r\n data: {\r\n f_process_id: this.billselect.f_process_id,\r\n fengongsi: this.$login.f.f_fengongsi,\r\n f_bill_type: this.selectone\r\n }\r\n }),\r\n model1: new DataModel('rs/report/kaitongkalishi', {\r\n data: {\r\n selectid: this.selectid\r\n }\r\n }),\r\n selectid: null,\r\n selectdata: null\r\n }\r\n },\r\n ready() {\r\n this.$refs.cp.$refs.cri.search()\r\n },\r\n methods: {\r\n details(row) {\r\n console.log('选中的id:' + row.id)\r\n this.selectid = row.id\r\n this.selectdata = row\r\n this.show = true\r\n this.model1.paramSource.data.selectid = this.selectid\r\n this.$refs.page1.$refs.xiaoshoudan.search()\r\n },\r\n close() {\r\n this.show = false\r\n },\r\n async updateNumber(){\r\n let http = new HttpResetClass()\r\n let billinfo = this.selectdata\r\n delete billinfo.id\r\n // 票据类型\r\n billinfo.f_bill_type = this.selectone\r\n billinfo.f_status = '补打'\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// BillKTKRecordInfo.vue?6fe76c2d","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\":\"BillKTKRecordInfo.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-3ec8b606&scoped=true!./~/vue-loader/lib/selector.js?type=style&index=0!./src/components/product/Bill/BillKTKRecordInfo.vue\n// module id = 505\n// module chunks = 36","// 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-3ec8b606&scoped=true!../../../../node_modules/vue-loader/lib/selector.js?type=style&index=0!./BillKTKRecordInfo.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-3ec8b606&scoped=true!../../../../node_modules/vue-loader/lib/selector.js?type=style&index=0!./BillKTKRecordInfo.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-3ec8b606&scoped=true!../../../../node_modules/vue-loader/lib/selector.js?type=style&index=0!./BillKTKRecordInfo.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-3ec8b606&scoped=true!./~/vue-loader/lib/selector.js?type=style&index=0!./src/components/product/Bill/BillKTKRecordInfo.vue\n// module id = 587\n// module chunks = 36","module.exports = \" <div class=\\\"d1 flex\\\" _v-3ec8b606=\\\"\\\"> <div class=\\\"left col-sm-12\\\" _v-3ec8b606=\\\"\\\"> <criteria-paged :model=model v-ref:cp=\\\"\\\" _v-3ec8b606=\\\"\\\"> <criteria partial=criteria @condition-changed=search v-ref:cri=\\\"\\\" _v-3ec8b606=\\\"\\\"> <form novalidate=\\\"\\\" class=\\\"\\\" partial=\\\"\\\" _v-3ec8b606=\\\"\\\"> <div class=col-sm-2 _v-3ec8b606=\\\"\\\"> <div class=col-sm-6 _v-3ec8b606=\\\"\\\"> <input type=hidden class=form-control v-model=model.id v-on:keyup.enter=search condition=\\\"id like '{}%'\\\" _v-3ec8b606=\\\"\\\"> </div> </div> <div class=col-sm-1 _v-3ec8b606=\\\"\\\"> <button type=hidden @click=search(),$parent.$parent.close() _v-3ec8b606=\\\"\\\"> </button> </div> </form> </criteria> <data-grid :model=model partial=list v-ref:grid=\\\"\\\" class=data-grid is-fixed=false style=overflow-x:auto _v-3ec8b606=\\\"\\\"> <template partial=head> <tr class=title _v-3ec8b606=\\\"\\\"> <th _v-3ec8b606=\\\"\\\"> <nobr _v-3ec8b606=\\\"\\\">序号</nobr> </th> <th _v-3ec8b606=\\\"\\\"> <nobr _v-3ec8b606=\\\"\\\">状态</nobr> </th> <th _v-3ec8b606=\\\"\\\"> <nobr _v-3ec8b606=\\\"\\\">开通日期</nobr> </th> <th _v-3ec8b606=\\\"\\\"> <nobr _v-3ec8b606=\\\"\\\">用户姓名</nobr> </th> <th _v-3ec8b606=\\\"\\\"> <nobr _v-3ec8b606=\\\"\\\">联系电话</nobr> </th> <th _v-3ec8b606=\\\"\\\"> <nobr _v-3ec8b606=\\\"\\\">协议号</nobr> </th> <th _v-3ec8b606=\\\"\\\"> <nobr _v-3ec8b606=\\\"\\\">开通地址</nobr> </th> <th _v-3ec8b606=\\\"\\\"> <nobr _v-3ec8b606=\\\"\\\">操作</nobr> </th> </tr> </template> <template partial=body> <tr _v-3ec8b606=\\\"\\\"> <td _v-3ec8b606=\\\"\\\"> <nobr _v-3ec8b606=\\\"\\\">{{$index+1}}</nobr> </td> <td _v-3ec8b606=\\\"\\\"> <nobr _v-3ec8b606=\\\"\\\">{{row.f_status}}</nobr> </td> <td _v-3ec8b606=\\\"\\\"> <nobr _v-3ec8b606=\\\"\\\">{{row.f_date}}</nobr> </td> <td _v-3ec8b606=\\\"\\\"> <nobr _v-3ec8b606=\\\"\\\">{{row.f_user_name}}</nobr> </td> <td _v-3ec8b606=\\\"\\\"> <nobr _v-3ec8b606=\\\"\\\">{{row.f_phone}}</nobr> </td> <td _v-3ec8b606=\\\"\\\"> <nobr _v-3ec8b606=\\\"\\\">{{row.f_contract_number}}</nobr> </td> <td _v-3ec8b606=\\\"\\\"> <nobr _v-3ec8b606=\\\"\\\">{{row.f_address}}</nobr> </td> <td _v-3ec8b606=\\\"\\\"> <a href=# @click=$parent.$parent.$parent.details(row) _v-3ec8b606=\\\"\\\">查看详情</a> </td> </tr> </template> </data-grid> </criteria-paged> </div> <modal :show.sync=show v-ref:modal=\\\"\\\" backdrop=false _v-3ec8b606=\\\"\\\"> <header slot=modal-header class=modal-header _v-3ec8b606=\\\"\\\"> <button type=button class=close @click=close _v-3ec8b606=\\\"\\\"><span _v-3ec8b606=\\\"\\\">×</span></button> </header> <article slot=modal-body class=modal-body _v-3ec8b606=\\\"\\\"> <div style=\\\"width:auto;height: auto\\\" _v-3ec8b606=\\\"\\\"> <criteria-paged v-ref:page1=\\\"\\\" :model=model1 :pager=false _v-3ec8b606=\\\"\\\"> <criteria v-ref:xiaoshoudan=\\\"\\\" partial=criteria @condition-changed=search _v-3ec8b606=\\\"\\\"> <div novalidate=\\\"\\\" class=\\\"form-inline auto\\\" partial=\\\"\\\" _v-3ec8b606=\\\"\\\"> <div class=form-group _v-3ec8b606=\\\"\\\"> </div> </div> </criteria> <div partial=list id=shexianss1 _v-3ec8b606=\\\"\\\"> <table class=tablesty style=\\\"margin: 0px auto\\\" border=1 _v-3ec8b606=\\\"\\\"> <tbody _v-3ec8b606=\\\"\\\"><tr _v-3ec8b606=\\\"\\\"> <th colspan=4 style=\\\"font-weight: normal\\\" _v-3ec8b606=\\\"\\\"> {{{ model.data.substring(26,model.data.length-8) }}} </th> </tr> </tbody></table> <div class=col-sm-12 style=\\\"margin-top: 2px\\\" _v-3ec8b606=\\\"\\\"> <div class=col-sm-2 _v-3ec8b606=\\\"\\\"> <label _v-3ec8b606=\\\"\\\"> <nobr _v-3ec8b606=\\\"\\\"> 补打原因:</nobr> </label> </div> <div class=col-sm-6 _v-3ec8b606=\\\"\\\"> <input style=\\\"width: 100%\\\" v-model=model.f_again_reason :value.sync=model.f_again_reason _v-3ec8b606=\\\"\\\"> </div> <div class=col-sm-2 _v-3ec8b606=\\\"\\\"> <report-print v-if=model.f_again_reason @click=$parent.$parent.updateNumber() id=shexianss1 top=1cm left=1cm width=100% height=100% _v-3ec8b606=\\\"\\\"></report-print> </div> </div> </div> </criteria-paged> </div> </article> <footer slot=modal-footer class=modal-footer _v-3ec8b606=\\\"\\\"> </footer> </modal> </div> \";\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./~/vue-html-loader!./~/vue-loader/lib/template-rewriter.js?id=_v-3ec8b606!./~/vue-loader/lib/selector.js?type=template&index=0!./src/components/product/Bill/BillKTKRecordInfo.vue\n// module id = 783\n// module chunks = 36","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-3ec8b606&scoped=true!../../../../node_modules/vue-loader/lib/selector.js?type=style&index=0!./BillKTKRecordInfo.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!./BillKTKRecordInfo.vue\")\n__vue_template__ = require(\"!!vue-html-loader!../../../../node_modules/vue-loader/lib/template-rewriter.js?id=_v-3ec8b606!../../../../node_modules/vue-loader/lib/selector.js?type=template&index=0!./BillKTKRecordInfo.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/BillKTKRecordInfo.vue\n// module id = 904\n// module chunks = 36"],"sourceRoot":""}
|
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
webpackJsonp([37],{352:function(e,t,l){"use strict";function o(e){return e&&e.__esModule?e:{default:e}}Object.defineProperty(t,"__esModule",{value:!0});var n=l(2),r=o(n),i=l(11),s=o(i),u=l(7),a=o(u),c=l(3);t.default={title:"开通卡信息",props:["billselect","selectone"],data:function(){return{billinfo:{f_billnumber:null},number:null}},ready:function(){},methods:{updateNumber:function(){function e(){return t.apply(this,arguments)}var t=(0,a.default)(r.default.mark(function e(){var t,l,o;return r.default.wrap(function(e){for(;;)switch(e.prev=e.next){case 0:return t=new c.HttpResetClass,l=(0,s.default)({},this.billselect,this.billinfo),delete l.id,l.f_bill_type=this.selectone,o={billinfo:l},e.next=7,t.load("POST","rs/logic/makebillrecord",{data:o},{resolveMsg:null,rejectMsg:"开通卡保存记录失败"});case 7:case"end":return e.stop()}},e,this)}));return e}()}}},510:function(e,t,l){t=e.exports=l(4)(),t.push([e.id,"","",{version:3,sources:[],names:[],mappings:"",file:"BillKTKMakeInfo.vue",sourceRoot:"webpack://"}])},593:function(e,t,l){var o=l(510);"string"==typeof o&&(o=[[e.id,o,""]]);l(5)(o,{});o.locals&&(e.exports=o.locals)},789:function(e,t){e.exports=' <billktk v-ref:billktk="" :billselect=billselect :billinfo=billinfo _v-5a6beb1a=""></billktk> '},903:function(e,t,l){var o,n,r={};l(593),o=l(352),n=l(789),e.exports=o||{},e.exports.__esModule&&(e.exports=e.exports.default);var i="function"==typeof e.exports?e.exports.options||(e.exports.options={}):e.exports;n&&(i.template=n),i.computed||(i.computed={}),Object.keys(r).forEach(function(e){var t=r[e];i.computed[e]=function(){return t}})}});
|
|
2
|
-
//# sourceMappingURL=37.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"sources":["webpack:///37.js","webpack:///BillKTKMakeInfo.vue","webpack:///./src/components/product/Bill/BillKTKMakeInfo.vue?c407","webpack:///./src/components/product/Bill/BillKTKMakeInfo.vue?4a0c","webpack:///./src/components/product/Bill/BillKTKMakeInfo.vue?0c9e","webpack:///./src/components/product/Bill/BillKTKMakeInfo.vue"],"names":["webpackJsonp","352","module","exports","__webpack_require__","_interopRequireDefault","obj","__esModule","default","Object","defineProperty","value","_regenerator","_regenerator2","_assign","_assign2","_asyncToGenerator2","_asyncToGenerator3","_vueClient","title","props","data","billinfo","f_billnumber","number","ready","methods","updateNumber","_ref","apply","this","arguments","mark","_callee","http","wrap","_context","prev","next","HttpResetClass","billselect","id","f_bill_type","selectone","load","resolveMsg","rejectMsg","stop","510","push","version","sources","names","mappings","file","sourceRoot","593","content","locals","789","903","__vue_script__","__vue_template__","__vue_styles__","__vue_options__","options","template","computed","keys","forEach","key"],"mappings":"AAAAA,cAAc,KAERC,IACA,SAAUC,EAAQC,EAASC,GAEhC,YAoBA,SAASC,GAAuBC,GAAO,MAAOA,IAAOA,EAAIC,WAAaD,GAAQE,QAASF,GAlBvFG,OAAOC,eAAeP,EAAS,cAC7BQ,OAAO,GAGT,IAAIC,GAAeR,EAAoB,GAEnCS,EAAgBR,EAAuBO,GAEvCE,EAAUV,EAAoB,IAE9BW,EAAWV,EAAuBS,GAElCE,EAAqBZ,EAAoB,GAEzCa,EAAqBZ,EAAuBW,GAE5CE,EAAad,EAAoB,EAIrCD,GAAQK,SCpBTW,MAAA,QACAC,OAAA,0BACAC,KAHA,WAIA,OACAC,UAAAC,aAAA,MACAC,OAAA,OAGAC,MATA,aAYAC,SAEAC,aAFA,mBAAAA,KAAA,MAAAC,GAAAC,MAAAC,KAAAC,WAAA,GAAAH,IAAA,EAAAX,EAAAT,SAAAK,EAAAL,QAAAwB,KAAA,QAAAC,KAAA,GAAAC,GAAAZ,EAAAD,CAAA,OAAAR,GAAAL,QAAA2B,KAAA,SAAAC,GAAA,cAAAA,EAAAC,KAAAD,EAAAE,MAAA,aAGAJ,GAAA,GAAAhB,GAAAqB,eACAjB,GAAA,EAAAP,EAAAP,YAAAsB,KAAAU,WAAAV,KAAAR,gBACAA,GAAAmB,GAEAnB,EAAAoB,YAAAZ,KAAAa,UACAtB,GACAC,YATAc,EAAAE,KAAA,EAWAJ,EAAAU,KAAA,kCAAAvB,SAAAwB,WAAA,KAAAC,UAAA,aAXA,wBAAAV,GAAAW,SAAAd,EAAAH,QAAA,OAAAH,SD2DMqB,IACA,SAAU9C,EAAQC,EAASC,GE9EjCD,EAAAD,EAAAC,QAAAC,EAAA,KAKAD,EAAA8C,MAAA/C,EAAAuC,GAAA,OAAkCS,QAAA,EAAAC,WAAAC,SAAAC,SAAA,GAAAC,KAAA,sBAAAC,WAAA,iBFuF5BC,IACA,SAAUtD,EAAQC,EAASC,GG1FjC,GAAAqD,GAAArD,EAAA,IACA,iBAAAqD,SAAAvD,EAAAuC,GAAAgB,EAAA,KAEArD,GAAA,GAAAqD,KACAA,GAAAC,SAAAxD,EAAAC,QAAAsD,EAAAC,SHgHMC,IACA,SAAUzD,EAAQC,GIxHxBD,EAAAC,QAAA,mGJ8HMyD,IACA,SAAU1D,EAAQC,EAASC,GK/HjC,GAAAyD,GAAAC,EACAC,IACA3D,GAAA,KACAyD,EAAAzD,EAAA,KACA0D,EAAA1D,EAAA,KACAF,EAAAC,QAAA0D,MACA3D,EAAAC,QAAAI,aAAAL,EAAAC,QAAAD,EAAAC,QAAAK,QACA,IAAAwD,GAAA,kBAAA9D,GAAAC,QAAAD,EAAAC,QAAA8D,UAAA/D,EAAAC,QAAA8D,YAAoH/D,EAAAC,OACpH2D,KACAE,EAAAE,SAAAJ,GAEAE,EAAAG,WAAAH,EAAAG,aACA1D,OAAA2D,KAAAL,GAAAM,QAAA,SAAAC,GACA,GAAApE,GAAA6D,EAAAO,EACAN,GAAAG,SAAAG,GAAA,WAA6C,MAAApE","file":"37.js","sourcesContent":["webpackJsonp([37],{\n\n/***/ 352:\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t\n\tObject.defineProperty(exports, \"__esModule\", {\n\t value: true\n\t});\n\t\n\tvar _regenerator = __webpack_require__(2);\n\t\n\tvar _regenerator2 = _interopRequireDefault(_regenerator);\n\t\n\tvar _assign = __webpack_require__(11);\n\t\n\tvar _assign2 = _interopRequireDefault(_assign);\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 ready() {},\n\t\n\t methods: {\n\t updateNumber: function () {\n\t var _ref = (0, _asyncToGenerator3.default)(_regenerator2.default.mark(function _callee() {\n\t var http, billinfo, data;\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 billinfo = (0, _assign2.default)({}, this.billselect, this.billinfo);\n\t\n\t delete billinfo.id;\n\t\n\t billinfo.f_bill_type = this.selectone;\n\t data = {\n\t billinfo: billinfo\n\t };\n\t _context.next = 7;\n\t return http.load('POST', 'rs/logic/makebillrecord', { data: data }, { resolveMsg: null, rejectMsg: \"开通卡保存记录失败\" });\n\t\n\t case 7:\n\t case 'end':\n\t return _context.stop();\n\t }\n\t }\n\t }, _callee, this);\n\t }));\n\t\n\t function updateNumber() {\n\t return _ref.apply(this, arguments);\n\t }\n\t\n\t return updateNumber;\n\t }()\n\t }\n\t};\n\n/***/ }),\n\n/***/ 510:\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\":\"BillKTKMakeInfo.vue\",\"sourceRoot\":\"webpack://\"}]);\n\t\n\t// exports\n\n\n/***/ }),\n\n/***/ 593:\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__(510);\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-5a6beb1a&scoped=true!../../../../node_modules/vue-loader/lib/selector.js?type=style&index=0!./BillKTKMakeInfo.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-5a6beb1a&scoped=true!../../../../node_modules/vue-loader/lib/selector.js?type=style&index=0!./BillKTKMakeInfo.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/***/ 789:\n/***/ (function(module, exports) {\n\n\tmodule.exports = \" <billktk v-ref:billktk=\\\"\\\" :billselect=billselect :billinfo=billinfo _v-5a6beb1a=\\\"\\\"></billktk> \";\n\n/***/ }),\n\n/***/ 903:\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar __vue_script__, __vue_template__\n\tvar __vue_styles__ = {}\n\t__webpack_require__(593)\n\t__vue_script__ = __webpack_require__(352)\n\t__vue_template__ = __webpack_require__(789)\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// 37.js","<template>\r\n <billktk v-ref:billktk :billselect=\"billselect\" :billinfo=\"billinfo\"></billktk>\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 ready(){\r\n\r\n },\r\n methods: {\r\n // 更新 确认卡编号\r\n async updateNumber() {\r\n let 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 = this.selectone\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 }\r\n</script>\r\n\r\n<style scoped>\r\n\r\n</style>\r\n\n\n\n// WEBPACK FOOTER //\n// BillKTKMakeInfo.vue?59c9c326","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\":\"BillKTKMakeInfo.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-5a6beb1a&scoped=true!./~/vue-loader/lib/selector.js?type=style&index=0!./src/components/product/Bill/BillKTKMakeInfo.vue\n// module id = 510\n// module chunks = 37","// 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-5a6beb1a&scoped=true!../../../../node_modules/vue-loader/lib/selector.js?type=style&index=0!./BillKTKMakeInfo.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-5a6beb1a&scoped=true!../../../../node_modules/vue-loader/lib/selector.js?type=style&index=0!./BillKTKMakeInfo.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-5a6beb1a&scoped=true!../../../../node_modules/vue-loader/lib/selector.js?type=style&index=0!./BillKTKMakeInfo.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-5a6beb1a&scoped=true!./~/vue-loader/lib/selector.js?type=style&index=0!./src/components/product/Bill/BillKTKMakeInfo.vue\n// module id = 593\n// module chunks = 37","module.exports = \" <billktk v-ref:billktk=\\\"\\\" :billselect=billselect :billinfo=billinfo _v-5a6beb1a=\\\"\\\"></billktk> \";\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./~/vue-html-loader!./~/vue-loader/lib/template-rewriter.js?id=_v-5a6beb1a!./~/vue-loader/lib/selector.js?type=template&index=0!./src/components/product/Bill/BillKTKMakeInfo.vue\n// module id = 789\n// module chunks = 37","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-5a6beb1a&scoped=true!../../../../node_modules/vue-loader/lib/selector.js?type=style&index=0!./BillKTKMakeInfo.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!./BillKTKMakeInfo.vue\")\n__vue_template__ = require(\"!!vue-html-loader!../../../../node_modules/vue-loader/lib/template-rewriter.js?id=_v-5a6beb1a!../../../../node_modules/vue-loader/lib/selector.js?type=template&index=0!./BillKTKMakeInfo.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/BillKTKMakeInfo.vue\n// module id = 903\n// module chunks = 37"],"sourceRoot":""}
|
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
webpackJsonp([38],{351:function(e,t,a){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var i=a(3);t.default={title:"开通卡",props:["billselect"],data:function(){return{model4:new i.DataModel("rs/report/kaitongka",{data:{f_process_id:this.billselect.f_process_id}})}},ready:function(){this.$refs.page4.$refs.kaitongka.search()},watch:{billselect:function(){this.$refs.page4.$refs.kaitongka.search()}}}},509:function(e,t,a){t=e.exports=a(4)(),t.push([e.id,"","",{version:3,sources:[],names:[],mappings:"",file:"BillKTK.vue",sourceRoot:"webpack://"}])},592:function(e,t,a){var i=a(509);"string"==typeof i&&(i=[[e.id,i,""]]);a(5)(i,{});i.locals&&(e.exports=i.locals)},788:function(e,t){e.exports=' <div style="width:800px;height: auto" _v-58e5a33e=""> <criteria-paged v-ref:page4="" :model=model4 :pager=false _v-58e5a33e=""> <criteria v-ref:kaitongka="" partial=criteria @condition-changed=search _v-58e5a33e=""> <div novalidate="" class="form-inline auto" partial="" _v-58e5a33e=""> <div class=form-group _v-58e5a33e=""> <div class=col-sm-12 _v-58e5a33e=""> <div class=col-sm-10 _v-58e5a33e=""></div> <div class=col-sm-2 _v-58e5a33e=""> <report-print @click=$parent.$parent.$parent.updateNumber() id=shexianss4 top=1cm left=1cm width=100% height=100% _v-58e5a33e=""></report-print> </div> </div> </div> </div> </criteria> <div partial=list id=shexianss4 _v-58e5a33e=""> <table class=tablesty style="margin: 0px auto" border=1 _v-58e5a33e=""> <tbody _v-58e5a33e=""><tr _v-58e5a33e=""> <th colspan=4 style="font-weight: normal" _v-58e5a33e=""> {{{ model.data.substring(26,model.data.length-8) }}} </th> </tr> </tbody></table> </div> </criteria-paged> </div> '},902:function(e,t,a){var i,o,r={};a(592),i=a(351),o=a(788),e.exports=i||{},e.exports.__esModule&&(e.exports=e.exports.default);var s="function"==typeof e.exports?e.exports.options||(e.exports.options={}):e.exports;o&&(s.template=o),s.computed||(s.computed={}),Object.keys(r).forEach(function(e){var t=r[e];s.computed[e]=function(){return t}})}});
|
|
2
|
-
//# sourceMappingURL=38.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"sources":["webpack:///38.js","webpack:///BillKTK.vue","webpack:///./src/components/product/Bill/BillKTK.vue?841e","webpack:///./src/components/product/Bill/BillKTK.vue?e6f4","webpack:///./src/components/product/Bill/BillKTK.vue?9935","webpack:///./src/components/product/Bill/BillKTK.vue"],"names":["webpackJsonp","351","module","exports","__webpack_require__","Object","defineProperty","value","_vueClient","default","title","props","data","model4","DataModel","f_process_id","this","billselect","ready","$refs","page4","kaitongka","search","watch","509","push","id","version","sources","names","mappings","file","sourceRoot","592","content","locals","788","902","__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,cACAC,KAHA,WAIA,OACAC,OAAA,GAAAL,GAAAM,UAAA,uBAAAF,MAAAG,aAAAC,KAAAC,WAAAF,kBAGAG,MARA,WASAF,KAAAG,MAAAC,MAAAD,MAAAE,UAAAC,UAEAC,OACAN,WADA,WAEAD,KAAAG,MAAAC,MAAAD,MAAAE,UAAAC,aDdME,IACA,SAAUtB,EAAQC,EAASC,GEnCjCD,EAAAD,EAAAC,QAAAC,EAAA,KAKAD,EAAAsB,MAAAvB,EAAAwB,GAAA,OAAkCC,QAAA,EAAAC,WAAAC,SAAAC,SAAA,GAAAC,KAAA,cAAAC,WAAA,iBF4C5BC,IACA,SAAU/B,EAAQC,EAASC,GG/CjC,GAAA8B,GAAA9B,EAAA,IACA,iBAAA8B,SAAAhC,EAAAwB,GAAAQ,EAAA,KAEA9B,GAAA,GAAA8B,KACAA,GAAAC,SAAAjC,EAAAC,QAAA+B,EAAAC,SHqEMC,IACA,SAAUlC,EAAQC,GI7ExBD,EAAAC,QAAA,q8BJmFMkC,IACA,SAAUnC,EAAQC,EAASC,GKpFjC,GAAAkC,GAAAC,EACAC,IACApC,GAAA,KACAkC,EAAAlC,EAAA,KACAmC,EAAAnC,EAAA,KACAF,EAAAC,QAAAmC,MACApC,EAAAC,QAAAsC,aAAAvC,EAAAC,QAAAD,EAAAC,QAAAM,QACA,IAAAiC,GAAA,kBAAAxC,GAAAC,QAAAD,EAAAC,QAAAwC,UAAAzC,EAAAC,QAAAwC,YAAoHzC,EAAAC,OACpHoC,KACAG,EAAAE,SAAAL,GAEAG,EAAAG,WAAAH,EAAAG,aACAxC,OAAAyC,KAAAN,GAAAO,QAAA,SAAAC,GACA,GAAA9C,GAAAsC,EAAAQ,EACAN,GAAAG,SAAAG,GAAA,WAA6C,MAAA9C","file":"38.js","sourcesContent":["webpackJsonp([38],{\n\n/***/ 351:\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'],\n\t data: function data() {\n\t return {\n\t model4: new _vueClient.DataModel('rs/report/kaitongka', { data: { f_process_id: this.billselect.f_process_id } })\n\t };\n\t },\n\t ready: function ready() {\n\t this.$refs.page4.$refs.kaitongka.search();\n\t },\n\t\n\t watch: {\n\t 'billselect': function billselect() {\n\t this.$refs.page4.$refs.kaitongka.search();\n\t }\n\t }\n\t};\n\n/***/ }),\n\n/***/ 509:\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\":\"BillKTK.vue\",\"sourceRoot\":\"webpack://\"}]);\n\t\n\t// exports\n\n\n/***/ }),\n\n/***/ 592:\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__(509);\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-58e5a33e&scoped=true!../../../../node_modules/vue-loader/lib/selector.js?type=style&index=0!./BillKTK.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-58e5a33e&scoped=true!../../../../node_modules/vue-loader/lib/selector.js?type=style&index=0!./BillKTK.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/***/ 788:\n/***/ (function(module, exports) {\n\n\tmodule.exports = \" <div style=\\\"width:800px;height: auto\\\" _v-58e5a33e=\\\"\\\"> <criteria-paged v-ref:page4=\\\"\\\" :model=model4 :pager=false _v-58e5a33e=\\\"\\\"> <criteria v-ref:kaitongka=\\\"\\\" partial=criteria @condition-changed=search _v-58e5a33e=\\\"\\\"> <div novalidate=\\\"\\\" class=\\\"form-inline auto\\\" partial=\\\"\\\" _v-58e5a33e=\\\"\\\"> <div class=form-group _v-58e5a33e=\\\"\\\"> <div class=col-sm-12 _v-58e5a33e=\\\"\\\"> <div class=col-sm-10 _v-58e5a33e=\\\"\\\"></div> <div class=col-sm-2 _v-58e5a33e=\\\"\\\"> <report-print @click=$parent.$parent.$parent.updateNumber() id=shexianss4 top=1cm left=1cm width=100% height=100% _v-58e5a33e=\\\"\\\"></report-print> </div> </div> </div> </div> </criteria> <div partial=list id=shexianss4 _v-58e5a33e=\\\"\\\"> <table class=tablesty style=\\\"margin: 0px auto\\\" border=1 _v-58e5a33e=\\\"\\\"> <tbody _v-58e5a33e=\\\"\\\"><tr _v-58e5a33e=\\\"\\\"> <th colspan=4 style=\\\"font-weight: normal\\\" _v-58e5a33e=\\\"\\\"> {{{ model.data.substring(26,model.data.length-8) }}} </th> </tr> </tbody></table> </div> </criteria-paged> </div> \";\n\n/***/ }),\n\n/***/ 902:\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar __vue_script__, __vue_template__\n\tvar __vue_styles__ = {}\n\t__webpack_require__(592)\n\t__vue_script__ = __webpack_require__(351)\n\t__vue_template__ = __webpack_require__(788)\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// 38.js","<template>\r\n <div style=\"width:800px;height: auto\">\r\n <criteria-paged v-ref:page4 :model=\"model4\" :pager='false'>\r\n <criteria v-ref:kaitongka 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='shexianss4' top='1cm' left='1cm' width='100%' height='100%'></report-print>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </criteria>\r\n <div partial='list' id='shexianss4'>\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\r\n </div>\r\n\r\n </criteria-paged>\r\n </div>\r\n</template>\r\n\r\n<script>\r\n import {DataModel} from 'vue-client'\r\n export default {\r\n title: \"开通卡\",\r\n props:['billselect'],\r\n data(){\r\n return{\r\n model4: new DataModel('rs/report/kaitongka', {data:{f_process_id:this.billselect.f_process_id}})\r\n }\r\n },\r\n ready(){\r\n this.$refs.page4.$refs.kaitongka.search()\r\n },\r\n watch: {\r\n 'billselect'(){\r\n this.$refs.page4.$refs.kaitongka.search()\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// BillKTK.vue?60fcc1e2","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\":\"BillKTK.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-58e5a33e&scoped=true!./~/vue-loader/lib/selector.js?type=style&index=0!./src/components/product/Bill/BillKTK.vue\n// module id = 509\n// module chunks = 38","// 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-58e5a33e&scoped=true!../../../../node_modules/vue-loader/lib/selector.js?type=style&index=0!./BillKTK.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-58e5a33e&scoped=true!../../../../node_modules/vue-loader/lib/selector.js?type=style&index=0!./BillKTK.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-58e5a33e&scoped=true!../../../../node_modules/vue-loader/lib/selector.js?type=style&index=0!./BillKTK.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-58e5a33e&scoped=true!./~/vue-loader/lib/selector.js?type=style&index=0!./src/components/product/Bill/BillKTK.vue\n// module id = 592\n// module chunks = 38","module.exports = \" <div style=\\\"width:800px;height: auto\\\" _v-58e5a33e=\\\"\\\"> <criteria-paged v-ref:page4=\\\"\\\" :model=model4 :pager=false _v-58e5a33e=\\\"\\\"> <criteria v-ref:kaitongka=\\\"\\\" partial=criteria @condition-changed=search _v-58e5a33e=\\\"\\\"> <div novalidate=\\\"\\\" class=\\\"form-inline auto\\\" partial=\\\"\\\" _v-58e5a33e=\\\"\\\"> <div class=form-group _v-58e5a33e=\\\"\\\"> <div class=col-sm-12 _v-58e5a33e=\\\"\\\"> <div class=col-sm-10 _v-58e5a33e=\\\"\\\"></div> <div class=col-sm-2 _v-58e5a33e=\\\"\\\"> <report-print @click=$parent.$parent.$parent.updateNumber() id=shexianss4 top=1cm left=1cm width=100% height=100% _v-58e5a33e=\\\"\\\"></report-print> </div> </div> </div> </div> </criteria> <div partial=list id=shexianss4 _v-58e5a33e=\\\"\\\"> <table class=tablesty style=\\\"margin: 0px auto\\\" border=1 _v-58e5a33e=\\\"\\\"> <tbody _v-58e5a33e=\\\"\\\"><tr _v-58e5a33e=\\\"\\\"> <th colspan=4 style=\\\"font-weight: normal\\\" _v-58e5a33e=\\\"\\\"> {{{ 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-58e5a33e!./~/vue-loader/lib/selector.js?type=template&index=0!./src/components/product/Bill/BillKTK.vue\n// module id = 788\n// module chunks = 38","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-58e5a33e&scoped=true!../../../../node_modules/vue-loader/lib/selector.js?type=style&index=0!./BillKTK.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!./BillKTK.vue\")\n__vue_template__ = require(\"!!vue-html-loader!../../../../node_modules/vue-loader/lib/template-rewriter.js?id=_v-58e5a33e!../../../../node_modules/vue-loader/lib/selector.js?type=template&index=0!./BillKTK.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/BillKTK.vue\n// module id = 902\n// module chunks = 38"],"sourceRoot":""}
|
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
webpackJsonp([39],{350:function(a,e,t){"use strict";function b(a){return a&&a.__esModule?a:{default:a}}Object.defineProperty(e,"__esModule",{value:!0});var o=t(2),r=b(o),c=t(7),s=b(c),i=t(3);e.default={title:"销售记录表历史记录",props:["billselect","selectone"],data:function(){return{show:!1,model:new i.PagedList("rs/sql/billrecord",20,{data:{f_process_id:this.billselect.f_process_id,fengongsi:this.$login.f.f_fengongsi,f_bill_type:this.selectone}}),model1:new i.DataModel("rs/report/yanshoujilubiaolishi",{data:{selectid:this.selectid}}),selectid:null,selectdata:null}},ready:function(){this.$refs.cp.$refs.cri.search()},methods:{details:function(a){console.log("选中的id:"+a.id),this.selectid=a.id,this.selectdata=a,this.show=!0,this.model1.paramSource.data.selectid=this.selectid,this.$refs.page1.$refs.xiaoshoudan.search()},close:function(){this.show=!1},updateNumber:function(){function a(){return e.apply(this,arguments)}var e=(0,s.default)(r.default.mark(function a(){var e,t,b;return r.default.wrap(function(a){for(;;)switch(a.prev=a.next){case 0:return e=new i.HttpResetClass,t=this.selectdata,delete t.id,t.f_bill_type=this.selectone,t.f_status="补打",b={billinfo:t},a.next=8,e.load("POST","rs/logic/makebillrecord",{data:b},{resolveMsg:null,rejectMsg:"开通卡记录存储失败"});case 8:case"end":return a.stop()}},a,this)}));return a}()}}},511:function(a,e,t){e=a.exports=t(4)(),e.push([a.id,"","",{version:3,sources:[],names:[],mappings:"",file:"BillJLBRecordInfo.vue",sourceRoot:"webpack://"}])},594:function(a,e,t){var b=t(511);"string"==typeof b&&(b=[[a.id,b,""]]);t(5)(b,{});b.locals&&(a.exports=b.locals)},790:function(a,e){a.exports=' <div class="d1 flex" _v-5aac1bbb=""> <div class="left col-sm-12" _v-5aac1bbb=""> <criteria-paged :model=model v-ref:cp="" _v-5aac1bbb=""> <criteria partial=criteria @condition-changed=search v-ref:cri="" _v-5aac1bbb=""> <form novalidate="" class="" partial="" _v-5aac1bbb=""> <div class=col-sm-2 _v-5aac1bbb=""> <div class=col-sm-6 _v-5aac1bbb=""> <input type=hidden class=form-control v-model=model.id v-on:keyup.enter=search condition="id like \'{}%\'" _v-5aac1bbb=""> </div> </div> <div class=col-sm-1 _v-5aac1bbb=""> <button type=hidden @click=search(),$parent.$parent.close() _v-5aac1bbb=""> </button> </div> </form> </criteria> <data-grid :model=model partial=list v-ref:grid="" class=data-grid is-fixed=false style=overflow-x:auto _v-5aac1bbb=""> <template partial=head> <tr class=title _v-5aac1bbb=""> <th _v-5aac1bbb=""> <nobr _v-5aac1bbb="">序号</nobr> </th> <th _v-5aac1bbb=""> <nobr _v-5aac1bbb="">状态</nobr> </th> <th _v-5aac1bbb=""> <nobr _v-5aac1bbb="">日期</nobr> </th> <th _v-5aac1bbb=""> <nobr _v-5aac1bbb="">用户姓名</nobr> </th> <th _v-5aac1bbb=""> <nobr _v-5aac1bbb="">联系电话</nobr> </th> <th _v-5aac1bbb=""> <nobr _v-5aac1bbb="">地址</nobr> </th> <th _v-5aac1bbb=""> <nobr _v-5aac1bbb="">操作</nobr> </th> </tr> </template> <template partial=body> <tr _v-5aac1bbb=""> <td _v-5aac1bbb=""> <nobr _v-5aac1bbb="">{{$index+1}}</nobr> </td> <td _v-5aac1bbb=""> <nobr _v-5aac1bbb="">{{row.f_status}}</nobr> </td> <td _v-5aac1bbb=""> <nobr _v-5aac1bbb="">{{row.f_date}}</nobr> </td> <td _v-5aac1bbb=""> <nobr _v-5aac1bbb="">{{row.f_billnumber}}</nobr> </td> <td _v-5aac1bbb=""> <nobr _v-5aac1bbb="">{{row.f_phone}}</nobr> </td> <td _v-5aac1bbb=""> <nobr _v-5aac1bbb="">{{row.f_address}}</nobr> </td> <td _v-5aac1bbb=""> <a href=# @click=$parent.$parent.$parent.details(row) _v-5aac1bbb="">查看详情</a> </td> </tr> </template> </data-grid> </criteria-paged> </div> <modal :show.sync=show v-ref:modal="" backdrop=false _v-5aac1bbb=""> <header slot=modal-header class=modal-header _v-5aac1bbb=""> <button type=button class=close @click=close _v-5aac1bbb=""><span _v-5aac1bbb="">×</span></button> </header> <article slot=modal-body class=modal-body _v-5aac1bbb=""> <div style="width:auto;height: auto" _v-5aac1bbb=""> <criteria-paged v-ref:page1="" :model=model1 :pager=false _v-5aac1bbb=""> <criteria v-ref:xiaoshoudan="" partial=criteria @condition-changed=search _v-5aac1bbb=""> <div novalidate="" class="form-inline auto" partial="" _v-5aac1bbb=""> <div class=form-group _v-5aac1bbb=""> </div> </div> </criteria> <div partial=list id=shexianss1 _v-5aac1bbb=""> <table class=tablesty style="margin: 0px auto" border=1 _v-5aac1bbb=""> <tbody _v-5aac1bbb=""><tr _v-5aac1bbb=""> <th colspan=4 style="font-weight: normal" _v-5aac1bbb=""> {{{ model.data.substring(26,model.data.length-8) }}} </th> </tr> </tbody></table> <div class=col-sm-12 style="margin-top: 2px" _v-5aac1bbb=""> <div class=col-sm-2 _v-5aac1bbb=""> <label _v-5aac1bbb=""> <nobr _v-5aac1bbb=""> 补打原因:</nobr> </label> </div> <div class=col-sm-6 _v-5aac1bbb=""> <input style="width: 100%" v-model=model.f_again_reason :value.sync=model.f_again_reason _v-5aac1bbb=""> </div> <div class=col-sm-2 _v-5aac1bbb=""> <report-print v-if=model.f_again_reason @click=$parent.$parent.updateNumber() id=shexianss1 top=1cm left=1cm width=100% height=100% _v-5aac1bbb=""></report-print> </div> </div> </div> </criteria-paged> </div> </article> <footer slot=modal-footer class=modal-footer _v-5aac1bbb=""> </footer> </modal> </div> '},901:function(a,e,t){var b,o,r={};t(594),b=t(350),o=t(790),a.exports=b||{},a.exports.__esModule&&(a.exports=a.exports.default);var c="function"==typeof a.exports?a.exports.options||(a.exports.options={}):a.exports;o&&(c.template=o),c.computed||(c.computed={}),Object.keys(r).forEach(function(a){var e=r[a];c.computed[a]=function(){return e}})}});
|
|
2
|
-
//# sourceMappingURL=39.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"sources":["webpack:///39.js","webpack:///BillJLBRecordInfo.vue","webpack:///./src/components/product/Bill/BillJLBRecordInfo.vue?cf87","webpack:///./src/components/product/Bill/BillJLBRecordInfo.vue?b611","webpack:///./src/components/product/Bill/BillJLBRecordInfo.vue?9d9c","webpack:///./src/components/product/Bill/BillJLBRecordInfo.vue"],"names":["webpackJsonp","350","module","exports","__webpack_require__","_interopRequireDefault","obj","__esModule","default","Object","defineProperty","value","_regenerator","_regenerator2","_asyncToGenerator2","_asyncToGenerator3","_vueClient","title","props","data","show","model","PagedList","f_process_id","this","billselect","fengongsi","$login","f","f_fengongsi","f_bill_type","selectone","model1","DataModel","selectid","selectdata","ready","$refs","cp","cri","search","methods","details","row","console","log","id","paramSource","page1","xiaoshoudan","close","updateNumber","_ref","apply","arguments","mark","_callee","http","billinfo","wrap","_context","prev","next","HttpResetClass","f_status","load","resolveMsg","rejectMsg","stop","511","push","version","sources","names","mappings","file","sourceRoot","594","content","locals","790","901","__vue_script__","__vue_template__","__vue_styles__","__vue_options__","options","template","computed","keys","forEach","key"],"mappings":"AAAAA,cAAc,KAERC,IACA,SAAUC,EAAQC,EAASC,GAEhC,YAgBA,SAASC,GAAuBC,GAAO,MAAOA,IAAOA,EAAIC,WAAaD,GAAQE,QAASF,GAdvFG,OAAOC,eAAeP,EAAS,cAC7BQ,OAAO,GAGT,IAAIC,GAAeR,EAAoB,GAEnCS,EAAgBR,EAAuBO,GAEvCE,EAAqBV,EAAoB,GAEzCW,EAAqBV,EAAuBS,GAE5CE,EAAaZ,EAAoB,EAIrCD,GAAQK,SC6GTS,MAAA,YACAC,OAAA,0BACAC,KAHA,WAIA,OACAC,MAAA,EACAC,MAAA,GAAAL,GAAAM,UAAA,wBACAH,MACAI,aAAAC,KAAAC,WAAAF,aACAG,UAAAF,KAAAG,OAAAC,EAAAC,YACAC,YAAAN,KAAAO,aAGAC,OAAA,GAAAhB,GAAAiB,UAAA,kCACAd,MACAe,SAAAV,KAAAU,YAGAA,SAAA,KACAC,WAAA,OAGAC,MAtBA,WAuBAZ,KAAAa,MAAAC,GAAAD,MAAAE,IAAAC,UAEAC,SACAC,QADA,SACAC,GACAC,QAAAC,IAAA,SAAAF,EAAAG,IACAtB,KAAAU,SAAAS,EAAAG,GACAtB,KAAAW,WAAAQ,EACAnB,KAAAJ,MAAA,EACAI,KAAAQ,OAAAe,YAAA5B,KAAAe,SAAAV,KAAAU,SACAV,KAAAa,MAAAW,MAAAX,MAAAY,YAAAT,UAEAU,MATA,WAUA1B,KAAAJ,MAAA,GAEA+B,aAZA,mBAAAA,KAAA,MAAAC,GAAAC,MAAA7B,KAAA8B,WAAA,GAAAF,IAAA,EAAArC,EAAAP,SAAAK,EAAAL,QAAA+C,KAAA,QAAAC,KAAA,GAAAC,GAAAC,EAAAvC,CAAA,OAAAN,GAAAL,QAAAmD,KAAA,SAAAC,GAAA,cAAAA,EAAAC,KAAAD,EAAAE,MAAA,aAaAL,GAAA,GAAAzC,GAAA+C,eACAL,EAAAlC,KAAAW,iBACAuB,GAAAZ,GAEAY,EAAA5B,YAAAN,KAAAO,UACA2B,EAAAM,SAAA,KACA7C,GACAuC,YApBAE,EAAAE,KAAA,EAsBAL,EAAAQ,KAAA,kCAAA9C,SAAA+C,WAAA,KAAAC,UAAA,aAtBA,wBAAAP,GAAAQ,SAAAZ,EAAAhC,QAAA,OAAA2B,SDxDMkB,IACA,SAAUnE,EAAQC,EAASC,GErGjCD,EAAAD,EAAAC,QAAAC,EAAA,KAKAD,EAAAmE,MAAApE,EAAA4C,GAAA,OAAkCyB,QAAA,EAAAC,WAAAC,SAAAC,SAAA,GAAAC,KAAA,wBAAAC,WAAA,iBF8G5BC,IACA,SAAU3E,EAAQC,EAASC,GGjHjC,GAAA0E,GAAA1E,EAAA,IACA,iBAAA0E,SAAA5E,EAAA4C,GAAAgC,EAAA,KAEA1E,GAAA,GAAA0E,KACAA,GAAAC,SAAA7E,EAAAC,QAAA2E,EAAAC,SHuIMC,IACA,SAAU9E,EAAQC,GI/IxBD,EAAAC,QAAA,q5GJqJM8E,IACA,SAAU/E,EAAQC,EAASC,GKtJjC,GAAA8E,GAAAC,EACAC,IACAhF,GAAA,KACA8E,EAAA9E,EAAA,KACA+E,EAAA/E,EAAA,KACAF,EAAAC,QAAA+E,MACAhF,EAAAC,QAAAI,aAAAL,EAAAC,QAAAD,EAAAC,QAAAK,QACA,IAAA6E,GAAA,kBAAAnF,GAAAC,QAAAD,EAAAC,QAAAmF,UAAApF,EAAAC,QAAAmF,YAAoHpF,EAAAC,OACpHgF,KACAE,EAAAE,SAAAJ,GAEAE,EAAAG,WAAAH,EAAAG,aACA/E,OAAAgF,KAAAL,GAAAM,QAAA,SAAAC,GACA,GAAAzF,GAAAkF,EAAAO,EACAN,GAAAG,SAAAG,GAAA,WAA6C,MAAAzF","file":"39.js","sourcesContent":["webpackJsonp([39],{\n\n/***/ 350:\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t\n\tObject.defineProperty(exports, \"__esModule\", {\n\t value: true\n\t});\n\t\n\tvar _regenerator = __webpack_require__(2);\n\t\n\tvar _regenerator2 = _interopRequireDefault(_regenerator);\n\t\n\tvar _asyncToGenerator2 = __webpack_require__(7);\n\t\n\tvar _asyncToGenerator3 = _interopRequireDefault(_asyncToGenerator2);\n\t\n\tvar _vueClient = __webpack_require__(3);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\texports.default = {\n\t title: \"销售记录表历史记录\",\n\t props: ['billselect', 'selectone'],\n\t data: function data() {\n\t return {\n\t show: false,\n\t model: new _vueClient.PagedList('rs/sql/billrecord', 20, {\n\t data: {\n\t f_process_id: this.billselect.f_process_id,\n\t fengongsi: this.$login.f.f_fengongsi,\n\t f_bill_type: this.selectone\n\t }\n\t }),\n\t model1: new _vueClient.DataModel('rs/report/yanshoujilubiaolishi', {\n\t data: {\n\t selectid: this.selectid\n\t }\n\t }),\n\t selectid: null,\n\t selectdata: null\n\t };\n\t },\n\t ready: function ready() {\n\t this.$refs.cp.$refs.cri.search();\n\t },\n\t\n\t methods: {\n\t details: function details(row) {\n\t console.log('选中的id:' + row.id);\n\t this.selectid = row.id;\n\t this.selectdata = row;\n\t this.show = true;\n\t this.model1.paramSource.data.selectid = this.selectid;\n\t this.$refs.page1.$refs.xiaoshoudan.search();\n\t },\n\t close: function close() {\n\t this.show = false;\n\t },\n\t updateNumber: function () {\n\t var _ref = (0, _asyncToGenerator3.default)(_regenerator2.default.mark(function _callee() {\n\t var http, billinfo, data;\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 billinfo = this.selectdata;\n\t\n\t delete billinfo.id;\n\t\n\t billinfo.f_bill_type = this.selectone;\n\t billinfo.f_status = '补打';\n\t data = {\n\t billinfo: billinfo\n\t };\n\t _context.next = 8;\n\t return http.load('POST', 'rs/logic/makebillrecord', { data: data }, { resolveMsg: null, rejectMsg: \"开通卡记录存储失败\" });\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 updateNumber() {\n\t return _ref.apply(this, arguments);\n\t }\n\t\n\t return updateNumber;\n\t }()\n\t }\n\t};\n\n/***/ }),\n\n/***/ 511:\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\":\"BillJLBRecordInfo.vue\",\"sourceRoot\":\"webpack://\"}]);\n\t\n\t// exports\n\n\n/***/ }),\n\n/***/ 594:\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__(511);\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-5aac1bbb&scoped=true!../../../../node_modules/vue-loader/lib/selector.js?type=style&index=0!./BillJLBRecordInfo.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-5aac1bbb&scoped=true!../../../../node_modules/vue-loader/lib/selector.js?type=style&index=0!./BillJLBRecordInfo.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/***/ 790:\n/***/ (function(module, exports) {\n\n\tmodule.exports = \" <div class=\\\"d1 flex\\\" _v-5aac1bbb=\\\"\\\"> <div class=\\\"left col-sm-12\\\" _v-5aac1bbb=\\\"\\\"> <criteria-paged :model=model v-ref:cp=\\\"\\\" _v-5aac1bbb=\\\"\\\"> <criteria partial=criteria @condition-changed=search v-ref:cri=\\\"\\\" _v-5aac1bbb=\\\"\\\"> <form novalidate=\\\"\\\" class=\\\"\\\" partial=\\\"\\\" _v-5aac1bbb=\\\"\\\"> <div class=col-sm-2 _v-5aac1bbb=\\\"\\\"> <div class=col-sm-6 _v-5aac1bbb=\\\"\\\"> <input type=hidden class=form-control v-model=model.id v-on:keyup.enter=search condition=\\\"id like '{}%'\\\" _v-5aac1bbb=\\\"\\\"> </div> </div> <div class=col-sm-1 _v-5aac1bbb=\\\"\\\"> <button type=hidden @click=search(),$parent.$parent.close() _v-5aac1bbb=\\\"\\\"> </button> </div> </form> </criteria> <data-grid :model=model partial=list v-ref:grid=\\\"\\\" class=data-grid is-fixed=false style=overflow-x:auto _v-5aac1bbb=\\\"\\\"> <template partial=head> <tr class=title _v-5aac1bbb=\\\"\\\"> <th _v-5aac1bbb=\\\"\\\"> <nobr _v-5aac1bbb=\\\"\\\">序号</nobr> </th> <th _v-5aac1bbb=\\\"\\\"> <nobr _v-5aac1bbb=\\\"\\\">状态</nobr> </th> <th _v-5aac1bbb=\\\"\\\"> <nobr _v-5aac1bbb=\\\"\\\">日期</nobr> </th> <th _v-5aac1bbb=\\\"\\\"> <nobr _v-5aac1bbb=\\\"\\\">用户姓名</nobr> </th> <th _v-5aac1bbb=\\\"\\\"> <nobr _v-5aac1bbb=\\\"\\\">联系电话</nobr> </th> <th _v-5aac1bbb=\\\"\\\"> <nobr _v-5aac1bbb=\\\"\\\">地址</nobr> </th> <th _v-5aac1bbb=\\\"\\\"> <nobr _v-5aac1bbb=\\\"\\\">操作</nobr> </th> </tr> </template> <template partial=body> <tr _v-5aac1bbb=\\\"\\\"> <td _v-5aac1bbb=\\\"\\\"> <nobr _v-5aac1bbb=\\\"\\\">{{$index+1}}</nobr> </td> <td _v-5aac1bbb=\\\"\\\"> <nobr _v-5aac1bbb=\\\"\\\">{{row.f_status}}</nobr> </td> <td _v-5aac1bbb=\\\"\\\"> <nobr _v-5aac1bbb=\\\"\\\">{{row.f_date}}</nobr> </td> <td _v-5aac1bbb=\\\"\\\"> <nobr _v-5aac1bbb=\\\"\\\">{{row.f_billnumber}}</nobr> </td> <td _v-5aac1bbb=\\\"\\\"> <nobr _v-5aac1bbb=\\\"\\\">{{row.f_phone}}</nobr> </td> <td _v-5aac1bbb=\\\"\\\"> <nobr _v-5aac1bbb=\\\"\\\">{{row.f_address}}</nobr> </td> <td _v-5aac1bbb=\\\"\\\"> <a href=# @click=$parent.$parent.$parent.details(row) _v-5aac1bbb=\\\"\\\">查看详情</a> </td> </tr> </template> </data-grid> </criteria-paged> </div> <modal :show.sync=show v-ref:modal=\\\"\\\" backdrop=false _v-5aac1bbb=\\\"\\\"> <header slot=modal-header class=modal-header _v-5aac1bbb=\\\"\\\"> <button type=button class=close @click=close _v-5aac1bbb=\\\"\\\"><span _v-5aac1bbb=\\\"\\\">×</span></button> </header> <article slot=modal-body class=modal-body _v-5aac1bbb=\\\"\\\"> <div style=\\\"width:auto;height: auto\\\" _v-5aac1bbb=\\\"\\\"> <criteria-paged v-ref:page1=\\\"\\\" :model=model1 :pager=false _v-5aac1bbb=\\\"\\\"> <criteria v-ref:xiaoshoudan=\\\"\\\" partial=criteria @condition-changed=search _v-5aac1bbb=\\\"\\\"> <div novalidate=\\\"\\\" class=\\\"form-inline auto\\\" partial=\\\"\\\" _v-5aac1bbb=\\\"\\\"> <div class=form-group _v-5aac1bbb=\\\"\\\"> </div> </div> </criteria> <div partial=list id=shexianss1 _v-5aac1bbb=\\\"\\\"> <table class=tablesty style=\\\"margin: 0px auto\\\" border=1 _v-5aac1bbb=\\\"\\\"> <tbody _v-5aac1bbb=\\\"\\\"><tr _v-5aac1bbb=\\\"\\\"> <th colspan=4 style=\\\"font-weight: normal\\\" _v-5aac1bbb=\\\"\\\"> {{{ model.data.substring(26,model.data.length-8) }}} </th> </tr> </tbody></table> <div class=col-sm-12 style=\\\"margin-top: 2px\\\" _v-5aac1bbb=\\\"\\\"> <div class=col-sm-2 _v-5aac1bbb=\\\"\\\"> <label _v-5aac1bbb=\\\"\\\"> <nobr _v-5aac1bbb=\\\"\\\"> 补打原因:</nobr> </label> </div> <div class=col-sm-6 _v-5aac1bbb=\\\"\\\"> <input style=\\\"width: 100%\\\" v-model=model.f_again_reason :value.sync=model.f_again_reason _v-5aac1bbb=\\\"\\\"> </div> <div class=col-sm-2 _v-5aac1bbb=\\\"\\\"> <report-print v-if=model.f_again_reason @click=$parent.$parent.updateNumber() id=shexianss1 top=1cm left=1cm width=100% height=100% _v-5aac1bbb=\\\"\\\"></report-print> </div> </div> </div> </criteria-paged> </div> </article> <footer slot=modal-footer class=modal-footer _v-5aac1bbb=\\\"\\\"> </footer> </modal> </div> \";\n\n/***/ }),\n\n/***/ 901:\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar __vue_script__, __vue_template__\n\tvar __vue_styles__ = {}\n\t__webpack_require__(594)\n\t__vue_script__ = __webpack_require__(350)\n\t__vue_template__ = __webpack_require__(790)\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// 39.js","<template>\r\n <div class=\"d1 flex\">\r\n <div class=\"left col-sm-12\">\r\n <criteria-paged :model=\"model\" v-ref:cp>\r\n <criteria partial='criteria' @condition-changed='search' v-ref:cri>\r\n <form novalidate class=\"\" partial>\r\n <div class=\"col-sm-2\">\r\n <div class=\"col-sm-6\">\r\n <input type=\"hidden\" class=\"form-control\" v-model=\"model.id\"\r\n v-on:keyup.enter=\"search\"\r\n condition=\"id like '{}%'\">\r\n </div>\r\n </div>\r\n <div class=\"col-sm-1\">\r\n <button type=\"hidden\" @click=\"search(),$parent.$parent.close()\">\r\n </button>\r\n </div>\r\n </form>\r\n </criteria>\r\n <data-grid :model=\"model\" partial='list' v-ref:grid class=\"data-grid\" is-fixed='false' style=\"overflow-x:auto\">\r\n <template partial='head'>\r\n <tr class=\"title\">\r\n <th>\r\n <nobr>序号</nobr>\r\n </th>\r\n <th>\r\n <nobr>状态</nobr>\r\n </th>\r\n <th>\r\n <nobr>日期</nobr>\r\n </th>\r\n <th>\r\n <nobr>用户姓名</nobr>\r\n </th>\r\n <th>\r\n <nobr>联系电话</nobr>\r\n </th>\r\n <th>\r\n <nobr>地址</nobr>\r\n </th>\r\n <th>\r\n <nobr>操作</nobr>\r\n </th>\r\n </tr>\r\n </template>\r\n <template partial='body'>\r\n <tr>\r\n <td>\r\n <nobr>{{$index+1}}</nobr>\r\n </td>\r\n <td>\r\n <nobr>{{row.f_status}}</nobr>\r\n </td>\r\n <td>\r\n <nobr>{{row.f_date}}</nobr>\r\n </td>\r\n <td>\r\n <nobr>{{row.f_billnumber}}</nobr>\r\n </td>\r\n <td>\r\n <nobr>{{row.f_phone}}</nobr>\r\n </td>\r\n <td>\r\n <nobr>{{row.f_address}}</nobr>\r\n </td>\r\n <td>\r\n <a href=\"#\" @click=\"$parent.$parent.$parent.details(row)\">查看详情</a>\r\n </td>\r\n </tr>\r\n </template>\r\n </data-grid>\r\n </criteria-paged>\r\n </div>\r\n <modal :show.sync=\"show\" v-ref:modal backdrop=\"false\">\r\n <header slot=\"modal-header\" class=\"modal-header\">\r\n <button type=\"button\" class=\"close\" @click=\"close\"><span>×</span></button>\r\n </header>\r\n <article slot=\"modal-body\" class=\"modal-body\">\r\n <div style=\"width:auto;height: auto\">\r\n <criteria-paged v-ref:page1 :model=\"model1\" :pager='false'>\r\n <criteria v-ref:xiaoshoudan 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>\r\n </div>\r\n </criteria>\r\n <div partial='list' id='shexianss1'>\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 class=\"col-sm-12\" style=\"margin-top: 2px\">\r\n <div class=\"col-sm-2\">\r\n <label>\r\n <nobr> 补打原因:</nobr>\r\n </label>\r\n </div>\r\n <div class=\"col-sm-6\">\r\n <input style=\"width: 100%\" v-model=\"model.f_again_reason\" :value.sync=\"model.f_again_reason\"/>\r\n </div>\r\n <div class=\"col-sm-2\">\r\n <report-print v-if=\"model.f_again_reason\" @click=\"$parent.$parent.updateNumber()\" id='shexianss1' top='1cm' left='1cm'\r\n width='100%' height='100%'></report-print>\r\n </div>\r\n </div>\r\n </div>\r\n\r\n </criteria-paged>\r\n </div>\r\n </article>\r\n <footer slot=\"modal-footer\" class=\"modal-footer\">\r\n <!--<button v-show=\"show\" type=\"button\" class=\"btn btn-default\" @click='close'>取消</button>-->\r\n <!--<button v-show=\"show\" type=\"button\" class=\"btn btn-success\" @click='confirm'>确认</button>-->\r\n </footer>\r\n </modal>\r\n </div>\r\n</template>\r\n\r\n<script>\r\n import {HttpResetClass} from 'vue-client'\r\n import {DataModel} from 'vue-client'\r\n import {\r\n PagedList\r\n } from 'vue-client'\r\n\r\n export default {\r\n title: \"销售记录表历史记录\",\r\n props:['billselect', 'selectone'],\r\n data(){\r\n return{\r\n show: false, // 详情显示控制(模态框)\r\n model: new PagedList('rs/sql/billrecord', 20, {\r\n data: {\r\n f_process_id: this.billselect.f_process_id,\r\n fengongsi: this.$login.f.f_fengongsi,\r\n f_bill_type: this.selectone\r\n }\r\n }),\r\n model1: new DataModel('rs/report/yanshoujilubiaolishi', {\r\n data: {\r\n selectid: this.selectid\r\n }\r\n }),\r\n selectid: null,\r\n selectdata: null\r\n }\r\n },\r\n ready() {\r\n this.$refs.cp.$refs.cri.search()\r\n },\r\n methods:{\r\n details(row) {\r\n console.log('选中的id:' + row.id)\r\n this.selectid = row.id\r\n this.selectdata = row\r\n this.show = true\r\n this.model1.paramSource.data.selectid = this.selectid\r\n this.$refs.page1.$refs.xiaoshoudan.search()\r\n },\r\n close() {\r\n this.show = false\r\n },\r\n async updateNumber(){\r\n let http = new HttpResetClass()\r\n let billinfo = this.selectdata\r\n delete billinfo.id\r\n // 票据类型\r\n billinfo.f_bill_type = this.selectone\r\n billinfo.f_status = '补打'\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// BillJLBRecordInfo.vue?57d35eac","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\":\"BillJLBRecordInfo.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-5aac1bbb&scoped=true!./~/vue-loader/lib/selector.js?type=style&index=0!./src/components/product/Bill/BillJLBRecordInfo.vue\n// module id = 511\n// module chunks = 39","// 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-5aac1bbb&scoped=true!../../../../node_modules/vue-loader/lib/selector.js?type=style&index=0!./BillJLBRecordInfo.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-5aac1bbb&scoped=true!../../../../node_modules/vue-loader/lib/selector.js?type=style&index=0!./BillJLBRecordInfo.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-5aac1bbb&scoped=true!../../../../node_modules/vue-loader/lib/selector.js?type=style&index=0!./BillJLBRecordInfo.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-5aac1bbb&scoped=true!./~/vue-loader/lib/selector.js?type=style&index=0!./src/components/product/Bill/BillJLBRecordInfo.vue\n// module id = 594\n// module chunks = 39","module.exports = \" <div class=\\\"d1 flex\\\" _v-5aac1bbb=\\\"\\\"> <div class=\\\"left col-sm-12\\\" _v-5aac1bbb=\\\"\\\"> <criteria-paged :model=model v-ref:cp=\\\"\\\" _v-5aac1bbb=\\\"\\\"> <criteria partial=criteria @condition-changed=search v-ref:cri=\\\"\\\" _v-5aac1bbb=\\\"\\\"> <form novalidate=\\\"\\\" class=\\\"\\\" partial=\\\"\\\" _v-5aac1bbb=\\\"\\\"> <div class=col-sm-2 _v-5aac1bbb=\\\"\\\"> <div class=col-sm-6 _v-5aac1bbb=\\\"\\\"> <input type=hidden class=form-control v-model=model.id v-on:keyup.enter=search condition=\\\"id like '{}%'\\\" _v-5aac1bbb=\\\"\\\"> </div> </div> <div class=col-sm-1 _v-5aac1bbb=\\\"\\\"> <button type=hidden @click=search(),$parent.$parent.close() _v-5aac1bbb=\\\"\\\"> </button> </div> </form> </criteria> <data-grid :model=model partial=list v-ref:grid=\\\"\\\" class=data-grid is-fixed=false style=overflow-x:auto _v-5aac1bbb=\\\"\\\"> <template partial=head> <tr class=title _v-5aac1bbb=\\\"\\\"> <th _v-5aac1bbb=\\\"\\\"> <nobr _v-5aac1bbb=\\\"\\\">序号</nobr> </th> <th _v-5aac1bbb=\\\"\\\"> <nobr _v-5aac1bbb=\\\"\\\">状态</nobr> </th> <th _v-5aac1bbb=\\\"\\\"> <nobr _v-5aac1bbb=\\\"\\\">日期</nobr> </th> <th _v-5aac1bbb=\\\"\\\"> <nobr _v-5aac1bbb=\\\"\\\">用户姓名</nobr> </th> <th _v-5aac1bbb=\\\"\\\"> <nobr _v-5aac1bbb=\\\"\\\">联系电话</nobr> </th> <th _v-5aac1bbb=\\\"\\\"> <nobr _v-5aac1bbb=\\\"\\\">地址</nobr> </th> <th _v-5aac1bbb=\\\"\\\"> <nobr _v-5aac1bbb=\\\"\\\">操作</nobr> </th> </tr> </template> <template partial=body> <tr _v-5aac1bbb=\\\"\\\"> <td _v-5aac1bbb=\\\"\\\"> <nobr _v-5aac1bbb=\\\"\\\">{{$index+1}}</nobr> </td> <td _v-5aac1bbb=\\\"\\\"> <nobr _v-5aac1bbb=\\\"\\\">{{row.f_status}}</nobr> </td> <td _v-5aac1bbb=\\\"\\\"> <nobr _v-5aac1bbb=\\\"\\\">{{row.f_date}}</nobr> </td> <td _v-5aac1bbb=\\\"\\\"> <nobr _v-5aac1bbb=\\\"\\\">{{row.f_billnumber}}</nobr> </td> <td _v-5aac1bbb=\\\"\\\"> <nobr _v-5aac1bbb=\\\"\\\">{{row.f_phone}}</nobr> </td> <td _v-5aac1bbb=\\\"\\\"> <nobr _v-5aac1bbb=\\\"\\\">{{row.f_address}}</nobr> </td> <td _v-5aac1bbb=\\\"\\\"> <a href=# @click=$parent.$parent.$parent.details(row) _v-5aac1bbb=\\\"\\\">查看详情</a> </td> </tr> </template> </data-grid> </criteria-paged> </div> <modal :show.sync=show v-ref:modal=\\\"\\\" backdrop=false _v-5aac1bbb=\\\"\\\"> <header slot=modal-header class=modal-header _v-5aac1bbb=\\\"\\\"> <button type=button class=close @click=close _v-5aac1bbb=\\\"\\\"><span _v-5aac1bbb=\\\"\\\">×</span></button> </header> <article slot=modal-body class=modal-body _v-5aac1bbb=\\\"\\\"> <div style=\\\"width:auto;height: auto\\\" _v-5aac1bbb=\\\"\\\"> <criteria-paged v-ref:page1=\\\"\\\" :model=model1 :pager=false _v-5aac1bbb=\\\"\\\"> <criteria v-ref:xiaoshoudan=\\\"\\\" partial=criteria @condition-changed=search _v-5aac1bbb=\\\"\\\"> <div novalidate=\\\"\\\" class=\\\"form-inline auto\\\" partial=\\\"\\\" _v-5aac1bbb=\\\"\\\"> <div class=form-group _v-5aac1bbb=\\\"\\\"> </div> </div> </criteria> <div partial=list id=shexianss1 _v-5aac1bbb=\\\"\\\"> <table class=tablesty style=\\\"margin: 0px auto\\\" border=1 _v-5aac1bbb=\\\"\\\"> <tbody _v-5aac1bbb=\\\"\\\"><tr _v-5aac1bbb=\\\"\\\"> <th colspan=4 style=\\\"font-weight: normal\\\" _v-5aac1bbb=\\\"\\\"> {{{ model.data.substring(26,model.data.length-8) }}} </th> </tr> </tbody></table> <div class=col-sm-12 style=\\\"margin-top: 2px\\\" _v-5aac1bbb=\\\"\\\"> <div class=col-sm-2 _v-5aac1bbb=\\\"\\\"> <label _v-5aac1bbb=\\\"\\\"> <nobr _v-5aac1bbb=\\\"\\\"> 补打原因:</nobr> </label> </div> <div class=col-sm-6 _v-5aac1bbb=\\\"\\\"> <input style=\\\"width: 100%\\\" v-model=model.f_again_reason :value.sync=model.f_again_reason _v-5aac1bbb=\\\"\\\"> </div> <div class=col-sm-2 _v-5aac1bbb=\\\"\\\"> <report-print v-if=model.f_again_reason @click=$parent.$parent.updateNumber() id=shexianss1 top=1cm left=1cm width=100% height=100% _v-5aac1bbb=\\\"\\\"></report-print> </div> </div> </div> </criteria-paged> </div> </article> <footer slot=modal-footer class=modal-footer _v-5aac1bbb=\\\"\\\"> </footer> </modal> </div> \";\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./~/vue-html-loader!./~/vue-loader/lib/template-rewriter.js?id=_v-5aac1bbb!./~/vue-loader/lib/selector.js?type=template&index=0!./src/components/product/Bill/BillJLBRecordInfo.vue\n// module id = 790\n// module chunks = 39","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-5aac1bbb&scoped=true!../../../../node_modules/vue-loader/lib/selector.js?type=style&index=0!./BillJLBRecordInfo.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!./BillJLBRecordInfo.vue\")\n__vue_template__ = require(\"!!vue-html-loader!../../../../node_modules/vue-loader/lib/template-rewriter.js?id=_v-5aac1bbb!../../../../node_modules/vue-loader/lib/selector.js?type=template&index=0!./BillJLBRecordInfo.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/BillJLBRecordInfo.vue\n// module id = 901\n// module chunks = 39"],"sourceRoot":""}
|
package/dist-android/static/4.js
DELETED
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
webpackJsonp([4],{175:function(n,o,t){var e,s,a={};t(530),e=t(231),s=t(648),n.exports=e||{},n.exports.__esModule&&(n.exports=n.exports.default);var i="function"==typeof n.exports?n.exports.options||(n.exports.options={}):n.exports;s&&(i.template=s),i.computed||(i.computed={}),Object.keys(a).forEach(function(n){var o=a[n];i.computed[n]=function(){return o}})},231:function(n,o){"use strict";Object.defineProperty(o,"__esModule",{value:!0}),o.default={title:"加载参数",data:function(){return{msg:"",show:!1}},ready:function(){var n=this;this.$appdata.load().then(function(){n.$emit("ready")})}}},483:function(n,o,t){o=n.exports=t(4)(),o.push([n.id,".loadingdata{position:fixed;background:#fff;opacity:.6;top:0;width:100%}.loaderror{opacity:1}.loadsuccess{display:none}","",{version:3,sources:["/./node_modules/system-phone/src/components/LoadAppdata.vue"],names:[],mappings:"AAwBA,aACE,eAAgB,AAChB,gBAAiB,AACjB,WAAa,AACb,MAAO,AACP,UAAY,CACb,AACD,WACE,SAAW,CACZ,AACD,aACE,YAAc,CACf",file:"LoadAppdata.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.loadingdata {\n position: fixed;\n background: #fff;\n opacity: 0.6;\n top: 0;\n width: 100%;\n}\n.loaderror {\n opacity: 1;\n}\n.loadsuccess {\n display: none;\n}\n"],sourceRoot:"webpack://"}])},530:function(n,o,t){var e=t(483);"string"==typeof e&&(e=[[n.id,e,""]]);t(5)(e,{});e.locals&&(n.exports=e.locals)},648:function(n,o){n.exports=" <div class=loadingdata :class=\"{'loaderror': show, 'loadsuccess': !show}\"> <h2 style=\"margin: 0\" v-if=show>参数加载失败,请检查网络状态和服务状态...</h2> </div> "}});
|
|
2
|
-
//# sourceMappingURL=4.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"sources":["webpack:///4.js","webpack:///./~/system-phone/src/components/LoadAppdata.vue","webpack:///LoadAppdata.vue","webpack:///./~/system-phone/src/components/LoadAppdata.vue?6b40","webpack:///./~/system-phone/src/components/LoadAppdata.vue?9080","webpack:///./~/system-phone/src/components/LoadAppdata.vue?f490"],"names":["webpackJsonp","175","module","exports","__webpack_require__","__vue_script__","__vue_template__","__vue_styles__","__esModule","default","__vue_options__","options","template","computed","Object","keys","forEach","key","231","defineProperty","value","title","data","msg","show","ready","_this","this","$appdata","load","then","$emit","483","push","id","version","sources","names","mappings","file","sourcesContent","sourceRoot","530","content","locals","648"],"mappings":"AAAAA,cAAc,IAERC,IACA,SAAUC,EAAQC,EAASC,GCHjC,GAAAC,GAAAC,EACAC,IACAH,GAAA,KACAC,EAAAD,EAAA,KACAE,EAAAF,EAAA,KACAF,EAAAC,QAAAE,MACAH,EAAAC,QAAAK,aAAAN,EAAAC,QAAAD,EAAAC,QAAAM,QACA,IAAAC,GAAA,kBAAAR,GAAAC,QAAAD,EAAAC,QAAAQ,UAAAT,EAAAC,QAAAQ,YAAoHT,EAAAC,OACpHG,KACAI,EAAAE,SAAAN,GAEAI,EAAAG,WAAAH,EAAAG,aACAC,OAAAC,KAAAR,GAAAS,QAAA,SAAAC,GACA,GAAAf,GAAAK,EAAAU,EACAP,GAAAG,SAAAI,GAAA,WAA6C,MAAAf,ODWvCgB,IACA,SAAUhB,EAAQC,GAEvB,YAEAW,QAAOK,eAAehB,EAAS,cAC7BiB,OAAO,IAETjB,EAAQM,SExBTY,MAAA,OACAC,KAFA,WAGA,OACAC,IAAA,GACAC,MAAA,IAGAC,MARA,WAQA,GAAAC,GAAAC,IACAA,MAAAC,SAAAC,OAAAC,KAAA,WACAJ,EAAAK,MAAA,cFkCMC,IACA,SAAU9B,EAAQC,EAASC,GGrDjCD,EAAAD,EAAAC,QAAAC,EAAA,KAKAD,EAAA8B,MAAA/B,EAAAgC,GAAA,0HAAiJ,IAAQC,QAAA,EAAAC,SAAA,+DAAAC,SAAAC,SAAA,4GAAAC,KAAA,kBAAAC,gBAAA,iOAA+dC,WAAA,iBH8DlnBC,IACA,SAAUxC,EAAQC,EAASC,GIjEjC,GAAAuC,GAAAvC,EAAA,IACA,iBAAAuC,SAAAzC,EAAAgC,GAAAS,EAAA,KAEAvC,GAAA,GAAAuC,KACAA,GAAAC,SAAA1C,EAAAC,QAAAwC,EAAAC,SJuFMC,IACA,SAAU3C,EAAQC,GK/FxBD,EAAAC,QAAA","file":"4.js","sourcesContent":["webpackJsonp([4],{\n\n/***/ 175:\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar __vue_script__, __vue_template__\n\tvar __vue_styles__ = {}\n\t__webpack_require__(530)\n\t__vue_script__ = __webpack_require__(231)\n\t__vue_template__ = __webpack_require__(648)\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/***/ 231:\n/***/ (function(module, exports) {\n\n\t'use strict';\n\t\n\tObject.defineProperty(exports, \"__esModule\", {\n\t value: true\n\t});\n\texports.default = {\n\t title: '加载参数',\n\t data: function data() {\n\t return {\n\t msg: '',\n\t show: false\n\t };\n\t },\n\t ready: function ready() {\n\t var _this = this;\n\t\n\t this.$appdata.load().then(function () {\n\t _this.$emit('ready');\n\t });\n\t }\n\t};\n\n/***/ }),\n\n/***/ 483:\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, \".loadingdata{position:fixed;background:#fff;opacity:.6;top:0;width:100%}.loaderror{opacity:1}.loadsuccess{display:none}\", \"\", {\"version\":3,\"sources\":[\"/./node_modules/system-phone/src/components/LoadAppdata.vue\"],\"names\":[],\"mappings\":\"AAwBA,aACE,eAAgB,AAChB,gBAAiB,AACjB,WAAa,AACb,MAAO,AACP,UAAY,CACb,AACD,WACE,SAAW,CACZ,AACD,aACE,YAAc,CACf\",\"file\":\"LoadAppdata.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.loadingdata {\\n position: fixed;\\n background: #fff;\\n opacity: 0.6;\\n top: 0;\\n width: 100%;\\n}\\n.loaderror {\\n opacity: 1;\\n}\\n.loadsuccess {\\n display: none;\\n}\\n\"],\"sourceRoot\":\"webpack://\"}]);\n\t\n\t// exports\n\n\n/***/ }),\n\n/***/ 530:\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__(483);\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!./LoadAppdata.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!./LoadAppdata.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/***/ 648:\n/***/ (function(module, exports) {\n\n\tmodule.exports = \" <div class=loadingdata :class=\\\"{'loaderror': show, 'loadsuccess': !show}\\\"> <h2 style=\\\"margin: 0\\\" v-if=show>参数加载失败,请检查网络状态和服务状态...</h2> </div> \";\n\n/***/ })\n\n});\n\n\n// WEBPACK FOOTER //\n// 4.js","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!./LoadAppdata.vue\")\n__vue_script__ = require(\"!!babel-loader?presets[]=es2015&plugins[]=transform-runtime&comments=false!../../../vue-loader/lib/selector.js?type=script&index=0!./LoadAppdata.vue\")\n__vue_template__ = require(\"!!vue-html-loader!../../../vue-loader/lib/selector.js?type=template&index=0!./LoadAppdata.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/LoadAppdata.vue\n// module id = 175\n// module chunks = 4","<template>\n <div class=\"loadingdata\" :class=\"{'loaderror': show, 'loadsuccess': !show}\">\n <!-- <h2 style=\"margin: 0\" v-if=\"show\">{{msg}}</h2> -->\n <h2 style=\"margin: 0\" v-if=\"show\">参数加载失败,请检查网络状态和服务状态...</h2>\n </div>\n</template>\n\n<script>\n export default {\n title: '加载参数',\n data () {\n return {\n msg: '',\n show: false\n }\n },\n ready () {\n this.$appdata.load().then(() => {\n this.$emit('ready')\n })\n }\n }\n</script>\n<style media=\"screen\">\n .loadingdata {\n position: fixed;\n background: #fff;\n opacity: 0.6;\n top: 0;\n width: 100%;\n }\n .loaderror {\n opacity: 1;\n }\n .loadsuccess {\n display: none;\n }\n</style>\n\n\n\n// WEBPACK FOOTER //\n// LoadAppdata.vue?59d8456d","exports = module.exports = require(\"../../../css-loader/lib/css-base.js\")();\n// imports\n\n\n// module\nexports.push([module.id, \".loadingdata{position:fixed;background:#fff;opacity:.6;top:0;width:100%}.loaderror{opacity:1}.loadsuccess{display:none}\", \"\", {\"version\":3,\"sources\":[\"/./node_modules/system-phone/src/components/LoadAppdata.vue\"],\"names\":[],\"mappings\":\"AAwBA,aACE,eAAgB,AAChB,gBAAiB,AACjB,WAAa,AACb,MAAO,AACP,UAAY,CACb,AACD,WACE,SAAW,CACZ,AACD,aACE,YAAc,CACf\",\"file\":\"LoadAppdata.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.loadingdata {\\n position: fixed;\\n background: #fff;\\n opacity: 0.6;\\n top: 0;\\n width: 100%;\\n}\\n.loaderror {\\n opacity: 1;\\n}\\n.loadsuccess {\\n display: none;\\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/LoadAppdata.vue\n// module id = 483\n// module chunks = 4","// 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!./LoadAppdata.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!./LoadAppdata.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!./LoadAppdata.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/LoadAppdata.vue\n// module id = 530\n// module chunks = 4","module.exports = \" <div class=loadingdata :class=\\\"{'loaderror': show, 'loadsuccess': !show}\\\"> <h2 style=\\\"margin: 0\\\" v-if=show>参数加载失败,请检查网络状态和服务状态...</h2> </div> \";\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./~/vue-html-loader!./~/vue-loader/lib/selector.js?type=template&index=0!./~/system-phone/src/components/LoadAppdata.vue\n// module id = 648\n// module chunks = 4"],"sourceRoot":""}
|
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
webpackJsonp([40],{349:function(e,t,l){"use strict";function o(e){return e&&e.__esModule?e:{default:e}}Object.defineProperty(t,"__esModule",{value:!0});var n=l(2),r=o(n),i=l(11),s=o(i),u=l(7),c=o(u),a=l(3);t.default={title:"销售记录表信息",props:["billselect","selectone"],data:function(){return{billinfo:{f_billnumber:null},number:null}},ready:function(){},methods:{updateNumber:function(){function e(){return t.apply(this,arguments)}var t=(0,c.default)(r.default.mark(function e(){var t,l,o;return r.default.wrap(function(e){for(;;)switch(e.prev=e.next){case 0:return t=new a.HttpResetClass,l=(0,s.default)({},this.billselect,this.billinfo),delete l.id,l.f_bill_type=this.selectone,o={billinfo:l},e.next=7,t.load("POST","rs/logic/makebillrecord",{data:o},{resolveMsg:null,rejectMsg:"开通卡保存记录失败"});case 7:case"end":return e.stop()}},e,this)}));return e}()}}},522:function(e,t,l){t=e.exports=l(4)(),t.push([e.id,"","",{version:3,sources:[],names:[],mappings:"",file:"BillJLBMakeInfo.vue",sourceRoot:"webpack://"}])},614:function(e,t,l){var o=l(522);"string"==typeof o&&(o=[[e.id,o,""]]);l(5)(o,{});o.locals&&(e.exports=o.locals)},810:function(e,t){e.exports=' <billjlb v-ref:billktk="" :billselect=billselect :billinfo=billinfo _v-e1f20d50=""></billjlb> '},900:function(e,t,l){var o,n,r={};l(614),o=l(349),n=l(810),e.exports=o||{},e.exports.__esModule&&(e.exports=e.exports.default);var i="function"==typeof e.exports?e.exports.options||(e.exports.options={}):e.exports;n&&(i.template=n),i.computed||(i.computed={}),Object.keys(r).forEach(function(e){var t=r[e];i.computed[e]=function(){return t}})}});
|
|
2
|
-
//# sourceMappingURL=40.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"sources":["webpack:///40.js","webpack:///BillJLBMakeInfo.vue","webpack:///./src/components/product/Bill/BillJLBMakeInfo.vue?ebc9","webpack:///./src/components/product/Bill/BillJLBMakeInfo.vue?3a69","webpack:///./src/components/product/Bill/BillJLBMakeInfo.vue?22fa","webpack:///./src/components/product/Bill/BillJLBMakeInfo.vue"],"names":["webpackJsonp","349","module","exports","__webpack_require__","_interopRequireDefault","obj","__esModule","default","Object","defineProperty","value","_regenerator","_regenerator2","_assign","_assign2","_asyncToGenerator2","_asyncToGenerator3","_vueClient","title","props","data","billinfo","f_billnumber","number","ready","methods","updateNumber","_ref","apply","this","arguments","mark","_callee","http","wrap","_context","prev","next","HttpResetClass","billselect","id","f_bill_type","selectone","load","resolveMsg","rejectMsg","stop","522","push","version","sources","names","mappings","file","sourceRoot","614","content","locals","810","900","__vue_script__","__vue_template__","__vue_styles__","__vue_options__","options","template","computed","keys","forEach","key"],"mappings":"AAAAA,cAAc,KAERC,IACA,SAAUC,EAAQC,EAASC,GAEhC,YAoBA,SAASC,GAAuBC,GAAO,MAAOA,IAAOA,EAAIC,WAAaD,GAAQE,QAASF,GAlBvFG,OAAOC,eAAeP,EAAS,cAC7BQ,OAAO,GAGT,IAAIC,GAAeR,EAAoB,GAEnCS,EAAgBR,EAAuBO,GAEvCE,EAAUV,EAAoB,IAE9BW,EAAWV,EAAuBS,GAElCE,EAAqBZ,EAAoB,GAEzCa,EAAqBZ,EAAuBW,GAE5CE,EAAad,EAAoB,EAIrCD,GAAQK,SCpBTW,MAAA,UACAC,OAAA,0BACAC,KAHA,WAIA,OACAC,UAAAC,aAAA,MACAC,OAAA,OAGAC,MATA,aAWAC,SAEAC,aAFA,mBAAAA,KAAA,MAAAC,GAAAC,MAAAC,KAAAC,WAAA,GAAAH,IAAA,EAAAX,EAAAT,SAAAK,EAAAL,QAAAwB,KAAA,QAAAC,KAAA,GAAAC,GAAAZ,EAAAD,CAAA,OAAAR,GAAAL,QAAA2B,KAAA,SAAAC,GAAA,cAAAA,EAAAC,KAAAD,EAAAE,MAAA,aAGAJ,GAAA,GAAAhB,GAAAqB,eACAjB,GAAA,EAAAP,EAAAP,YAAAsB,KAAAU,WAAAV,KAAAR,gBACAA,GAAAmB,GAEAnB,EAAAoB,YAAAZ,KAAAa,UACAtB,GACAC,YATAc,EAAAE,KAAA,EAWAJ,EAAAU,KAAA,kCAAAvB,SAAAwB,WAAA,KAAAC,UAAA,aAXA,wBAAAV,GAAAW,SAAAd,EAAAH,QAAA,OAAAH,SD4DMqB,IACA,SAAU9C,EAAQC,EAASC,GE9EjCD,EAAAD,EAAAC,QAAAC,EAAA,KAKAD,EAAA8C,MAAA/C,EAAAuC,GAAA,OAAkCS,QAAA,EAAAC,WAAAC,SAAAC,SAAA,GAAAC,KAAA,sBAAAC,WAAA,iBFuF5BC,IACA,SAAUtD,EAAQC,EAASC,GG1FjC,GAAAqD,GAAArD,EAAA,IACA,iBAAAqD,SAAAvD,EAAAuC,GAAAgB,EAAA,KAEArD,GAAA,GAAAqD,KACAA,GAAAC,SAAAxD,EAAAC,QAAAsD,EAAAC,SHgHMC,IACA,SAAUzD,EAAQC,GIxHxBD,EAAAC,QAAA,mGJ8HMyD,IACA,SAAU1D,EAAQC,EAASC,GK/HjC,GAAAyD,GAAAC,EACAC,IACA3D,GAAA,KACAyD,EAAAzD,EAAA,KACA0D,EAAA1D,EAAA,KACAF,EAAAC,QAAA0D,MACA3D,EAAAC,QAAAI,aAAAL,EAAAC,QAAAD,EAAAC,QAAAK,QACA,IAAAwD,GAAA,kBAAA9D,GAAAC,QAAAD,EAAAC,QAAA8D,UAAA/D,EAAAC,QAAA8D,YAAoH/D,EAAAC,OACpH2D,KACAE,EAAAE,SAAAJ,GAEAE,EAAAG,WAAAH,EAAAG,aACA1D,OAAA2D,KAAAL,GAAAM,QAAA,SAAAC,GACA,GAAApE,GAAA6D,EAAAO,EACAN,GAAAG,SAAAG,GAAA,WAA6C,MAAApE","file":"40.js","sourcesContent":["webpackJsonp([40],{\n\n/***/ 349:\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t\n\tObject.defineProperty(exports, \"__esModule\", {\n\t value: true\n\t});\n\t\n\tvar _regenerator = __webpack_require__(2);\n\t\n\tvar _regenerator2 = _interopRequireDefault(_regenerator);\n\t\n\tvar _assign = __webpack_require__(11);\n\t\n\tvar _assign2 = _interopRequireDefault(_assign);\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 ready() {},\n\t\n\t methods: {\n\t updateNumber: function () {\n\t var _ref = (0, _asyncToGenerator3.default)(_regenerator2.default.mark(function _callee() {\n\t var http, billinfo, data;\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 billinfo = (0, _assign2.default)({}, this.billselect, this.billinfo);\n\t\n\t delete billinfo.id;\n\t\n\t billinfo.f_bill_type = this.selectone;\n\t data = {\n\t billinfo: billinfo\n\t };\n\t _context.next = 7;\n\t return http.load('POST', 'rs/logic/makebillrecord', { data: data }, { resolveMsg: null, rejectMsg: \"开通卡保存记录失败\" });\n\t\n\t case 7:\n\t case 'end':\n\t return _context.stop();\n\t }\n\t }\n\t }, _callee, this);\n\t }));\n\t\n\t function updateNumber() {\n\t return _ref.apply(this, arguments);\n\t }\n\t\n\t return updateNumber;\n\t }()\n\t }\n\t};\n\n/***/ }),\n\n/***/ 522:\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\":\"BillJLBMakeInfo.vue\",\"sourceRoot\":\"webpack://\"}]);\n\t\n\t// exports\n\n\n/***/ }),\n\n/***/ 614:\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__(522);\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-e1f20d50&scoped=true!../../../../node_modules/vue-loader/lib/selector.js?type=style&index=0!./BillJLBMakeInfo.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-e1f20d50&scoped=true!../../../../node_modules/vue-loader/lib/selector.js?type=style&index=0!./BillJLBMakeInfo.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/***/ 810:\n/***/ (function(module, exports) {\n\n\tmodule.exports = \" <billjlb v-ref:billktk=\\\"\\\" :billselect=billselect :billinfo=billinfo _v-e1f20d50=\\\"\\\"></billjlb> \";\n\n/***/ }),\n\n/***/ 900:\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar __vue_script__, __vue_template__\n\tvar __vue_styles__ = {}\n\t__webpack_require__(614)\n\t__vue_script__ = __webpack_require__(349)\n\t__vue_template__ = __webpack_require__(810)\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// 40.js","<template>\r\n <billjlb v-ref:billktk :billselect=\"billselect\" :billinfo=\"billinfo\"></billjlb>\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 ready() {\r\n },\r\n methods: {\r\n // 更新 确认卡编号\r\n async updateNumber() {\r\n let 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 = this.selectone\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// BillJLBMakeInfo.vue?3aa1ae88","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\":\"BillJLBMakeInfo.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-e1f20d50&scoped=true!./~/vue-loader/lib/selector.js?type=style&index=0!./src/components/product/Bill/BillJLBMakeInfo.vue\n// module id = 522\n// module chunks = 40","// 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-e1f20d50&scoped=true!../../../../node_modules/vue-loader/lib/selector.js?type=style&index=0!./BillJLBMakeInfo.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-e1f20d50&scoped=true!../../../../node_modules/vue-loader/lib/selector.js?type=style&index=0!./BillJLBMakeInfo.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-e1f20d50&scoped=true!../../../../node_modules/vue-loader/lib/selector.js?type=style&index=0!./BillJLBMakeInfo.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-e1f20d50&scoped=true!./~/vue-loader/lib/selector.js?type=style&index=0!./src/components/product/Bill/BillJLBMakeInfo.vue\n// module id = 614\n// module chunks = 40","module.exports = \" <billjlb v-ref:billktk=\\\"\\\" :billselect=billselect :billinfo=billinfo _v-e1f20d50=\\\"\\\"></billjlb> \";\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./~/vue-html-loader!./~/vue-loader/lib/template-rewriter.js?id=_v-e1f20d50!./~/vue-loader/lib/selector.js?type=template&index=0!./src/components/product/Bill/BillJLBMakeInfo.vue\n// module id = 810\n// module chunks = 40","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-e1f20d50&scoped=true!../../../../node_modules/vue-loader/lib/selector.js?type=style&index=0!./BillJLBMakeInfo.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!./BillJLBMakeInfo.vue\")\n__vue_template__ = require(\"!!vue-html-loader!../../../../node_modules/vue-loader/lib/template-rewriter.js?id=_v-e1f20d50!../../../../node_modules/vue-loader/lib/selector.js?type=template&index=0!./BillJLBMakeInfo.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/BillJLBMakeInfo.vue\n// module id = 900\n// module chunks = 40"],"sourceRoot":""}
|
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
webpackJsonp([41],{348:function(e,t,i){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var c=i(3);t.default={title:"记录单",props:["billselect"],data:function(){return{model3:new c.DataModel("rs/report/yanshoujilubiao",{data:{processid:this.billselect.f_process_id}})}},ready:function(){this.$refs.page3.$refs.jilubiao.search()},watch:{billselect:function(){this.$refs.page3.$refs.jilubiao.search()}}}},499:function(e,t,i){t=e.exports=i(4)(),t.push([e.id,"","",{version:3,sources:[],names:[],mappings:"",file:"BillJLB.vue",sourceRoot:"webpack://"}])},574:function(e,t,i){var c=i(499);"string"==typeof c&&(c=[[e.id,c,""]]);i(5)(c,{});c.locals&&(e.exports=c.locals)},771:function(e,t){e.exports=' <div style="width:800px;height: auto" _v-15d9cf7c=""> <criteria-paged v-ref:page3="" :model=model3 :pager=false _v-15d9cf7c=""> <criteria v-ref:jilubiao="" partial=criteria @condition-changed=search _v-15d9cf7c=""> <div novalidate="" class="form-inline auto" partial="" _v-15d9cf7c=""> <div class=form-group _v-15d9cf7c=""> <div class=col-sm-12 _v-15d9cf7c=""> <div class=col-sm-10 _v-15d9cf7c=""></div> <div class=col-sm-2 _v-15d9cf7c=""> <report-print @click=$parent.$parent.$parent.updateNumber() id=shexianss3 top=1cm left=1cm width=100% height=100% _v-15d9cf7c=""></report-print> </div> </div> </div> </div> </criteria> <div partial=list id=shexianss3 _v-15d9cf7c=""> <table class=tablesty style="margin: 0px auto" border=1 _v-15d9cf7c=""> <tbody _v-15d9cf7c=""><tr _v-15d9cf7c=""> <th colspan=4 style="font-weight: normal" _v-15d9cf7c=""> {{{ model.data.substring(26,model.data.length-8) }}} </th> </tr> </tbody></table> </div> </criteria-paged> </div> '},899:function(e,t,i){var c,o,s={};i(574),c=i(348),o=i(771),e.exports=c||{},e.exports.__esModule&&(e.exports=e.exports.default);var a="function"==typeof e.exports?e.exports.options||(e.exports.options={}):e.exports;o&&(a.template=o),a.computed||(a.computed={}),Object.keys(s).forEach(function(e){var t=s[e];a.computed[e]=function(){return t}})}});
|
|
2
|
-
//# sourceMappingURL=41.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"sources":["webpack:///41.js","webpack:///BillJLB.vue","webpack:///./src/components/product/Bill/BillJLB.vue?f431","webpack:///./src/components/product/Bill/BillJLB.vue?719e","webpack:///./src/components/product/Bill/BillJLB.vue?dfb7","webpack:///./src/components/product/Bill/BillJLB.vue"],"names":["webpackJsonp","348","module","exports","__webpack_require__","Object","defineProperty","value","_vueClient","default","title","props","data","model3","DataModel","processid","this","billselect","f_process_id","ready","$refs","page3","jilubiao","search","watch","499","push","id","version","sources","names","mappings","file","sourceRoot","574","content","locals","771","899","__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,cACAC,KAHA,WAIA,OACAC,OAAA,GAAAL,GAAAM,UAAA,6BAAAF,MAAAG,UAAAC,KAAAC,WAAAC,kBAGAC,MARA,WASAH,KAAAI,MAAAC,MAAAD,MAAAE,SAAAC,UAEAC,OACAP,WADA,WAEAD,KAAAI,MAAAC,MAAAD,MAAAE,SAAAC,aDdME,IACA,SAAUvB,EAAQC,EAASC,GEnCjCD,EAAAD,EAAAC,QAAAC,EAAA,KAKAD,EAAAuB,MAAAxB,EAAAyB,GAAA,OAAkCC,QAAA,EAAAC,WAAAC,SAAAC,SAAA,GAAAC,KAAA,cAAAC,WAAA,iBF4C5BC,IACA,SAAUhC,EAAQC,EAASC,GG/CjC,GAAA+B,GAAA/B,EAAA,IACA,iBAAA+B,SAAAjC,EAAAyB,GAAAQ,EAAA,KAEA/B,GAAA,GAAA+B,KACAA,GAAAC,SAAAlC,EAAAC,QAAAgC,EAAAC,SHqEMC,IACA,SAAUnC,EAAQC,GI7ExBD,EAAAC,QAAA,o8BJmFMmC,IACA,SAAUpC,EAAQC,EAASC,GKpFjC,GAAAmC,GAAAC,EACAC,IACArC,GAAA,KACAmC,EAAAnC,EAAA,KACAoC,EAAApC,EAAA,KACAF,EAAAC,QAAAoC,MACArC,EAAAC,QAAAuC,aAAAxC,EAAAC,QAAAD,EAAAC,QAAAM,QACA,IAAAkC,GAAA,kBAAAzC,GAAAC,QAAAD,EAAAC,QAAAyC,UAAA1C,EAAAC,QAAAyC,YAAoH1C,EAAAC,OACpHqC,KACAG,EAAAE,SAAAL,GAEAG,EAAAG,WAAAH,EAAAG,aACAzC,OAAA0C,KAAAN,GAAAO,QAAA,SAAAC,GACA,GAAA/C,GAAAuC,EAAAQ,EACAN,GAAAG,SAAAG,GAAA,WAA6C,MAAA/C","file":"41.js","sourcesContent":["webpackJsonp([41],{\n\n/***/ 348:\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'],\n\t data: function data() {\n\t return {\n\t model3: new _vueClient.DataModel('rs/report/yanshoujilubiao', { data: { processid: this.billselect.f_process_id } })\n\t };\n\t },\n\t ready: function ready() {\n\t this.$refs.page3.$refs.jilubiao.search();\n\t },\n\t\n\t watch: {\n\t 'billselect': function billselect() {\n\t this.$refs.page3.$refs.jilubiao.search();\n\t }\n\t }\n\t};\n\n/***/ }),\n\n/***/ 499:\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\":\"BillJLB.vue\",\"sourceRoot\":\"webpack://\"}]);\n\t\n\t// exports\n\n\n/***/ }),\n\n/***/ 574:\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__(499);\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-15d9cf7c&scoped=true!../../../../node_modules/vue-loader/lib/selector.js?type=style&index=0!./BillJLB.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-15d9cf7c&scoped=true!../../../../node_modules/vue-loader/lib/selector.js?type=style&index=0!./BillJLB.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/***/ 771:\n/***/ (function(module, exports) {\n\n\tmodule.exports = \" <div style=\\\"width:800px;height: auto\\\" _v-15d9cf7c=\\\"\\\"> <criteria-paged v-ref:page3=\\\"\\\" :model=model3 :pager=false _v-15d9cf7c=\\\"\\\"> <criteria v-ref:jilubiao=\\\"\\\" partial=criteria @condition-changed=search _v-15d9cf7c=\\\"\\\"> <div novalidate=\\\"\\\" class=\\\"form-inline auto\\\" partial=\\\"\\\" _v-15d9cf7c=\\\"\\\"> <div class=form-group _v-15d9cf7c=\\\"\\\"> <div class=col-sm-12 _v-15d9cf7c=\\\"\\\"> <div class=col-sm-10 _v-15d9cf7c=\\\"\\\"></div> <div class=col-sm-2 _v-15d9cf7c=\\\"\\\"> <report-print @click=$parent.$parent.$parent.updateNumber() id=shexianss3 top=1cm left=1cm width=100% height=100% _v-15d9cf7c=\\\"\\\"></report-print> </div> </div> </div> </div> </criteria> <div partial=list id=shexianss3 _v-15d9cf7c=\\\"\\\"> <table class=tablesty style=\\\"margin: 0px auto\\\" border=1 _v-15d9cf7c=\\\"\\\"> <tbody _v-15d9cf7c=\\\"\\\"><tr _v-15d9cf7c=\\\"\\\"> <th colspan=4 style=\\\"font-weight: normal\\\" _v-15d9cf7c=\\\"\\\"> {{{ model.data.substring(26,model.data.length-8) }}} </th> </tr> </tbody></table> </div> </criteria-paged> </div> \";\n\n/***/ }),\n\n/***/ 899:\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar __vue_script__, __vue_template__\n\tvar __vue_styles__ = {}\n\t__webpack_require__(574)\n\t__vue_script__ = __webpack_require__(348)\n\t__vue_template__ = __webpack_require__(771)\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// 41.js","<template>\r\n <div style=\"width:800px;height: auto\">\r\n <criteria-paged v-ref:page3 :model=\"model3\" :pager='false'>\r\n <criteria v-ref:jilubiao 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='shexianss3' top='1cm' left='1cm' width='100%' height='100%'></report-print>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </criteria>\r\n <div partial='list' id='shexianss3'>\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\r\n </div>\r\n\r\n </criteria-paged>\r\n </div>\r\n</template>\r\n\r\n<script>\r\n import {DataModel} from 'vue-client'\r\n export default {\r\n title: \"记录单\",\r\n props:['billselect'],\r\n data(){\r\n return{\r\n model3: new DataModel('rs/report/yanshoujilubiao', {data:{processid:this.billselect.f_process_id}})\r\n }\r\n },\r\n ready(){\r\n this.$refs.page3.$refs.jilubiao.search()\r\n },\r\n watch: {\r\n 'billselect'(){\r\n this.$refs.page3.$refs.jilubiao.search()\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// BillJLB.vue?e93ce7de","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\":\"BillJLB.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-15d9cf7c&scoped=true!./~/vue-loader/lib/selector.js?type=style&index=0!./src/components/product/Bill/BillJLB.vue\n// module id = 499\n// module chunks = 41","// 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-15d9cf7c&scoped=true!../../../../node_modules/vue-loader/lib/selector.js?type=style&index=0!./BillJLB.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-15d9cf7c&scoped=true!../../../../node_modules/vue-loader/lib/selector.js?type=style&index=0!./BillJLB.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-15d9cf7c&scoped=true!../../../../node_modules/vue-loader/lib/selector.js?type=style&index=0!./BillJLB.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-15d9cf7c&scoped=true!./~/vue-loader/lib/selector.js?type=style&index=0!./src/components/product/Bill/BillJLB.vue\n// module id = 574\n// module chunks = 41","module.exports = \" <div style=\\\"width:800px;height: auto\\\" _v-15d9cf7c=\\\"\\\"> <criteria-paged v-ref:page3=\\\"\\\" :model=model3 :pager=false _v-15d9cf7c=\\\"\\\"> <criteria v-ref:jilubiao=\\\"\\\" partial=criteria @condition-changed=search _v-15d9cf7c=\\\"\\\"> <div novalidate=\\\"\\\" class=\\\"form-inline auto\\\" partial=\\\"\\\" _v-15d9cf7c=\\\"\\\"> <div class=form-group _v-15d9cf7c=\\\"\\\"> <div class=col-sm-12 _v-15d9cf7c=\\\"\\\"> <div class=col-sm-10 _v-15d9cf7c=\\\"\\\"></div> <div class=col-sm-2 _v-15d9cf7c=\\\"\\\"> <report-print @click=$parent.$parent.$parent.updateNumber() id=shexianss3 top=1cm left=1cm width=100% height=100% _v-15d9cf7c=\\\"\\\"></report-print> </div> </div> </div> </div> </criteria> <div partial=list id=shexianss3 _v-15d9cf7c=\\\"\\\"> <table class=tablesty style=\\\"margin: 0px auto\\\" border=1 _v-15d9cf7c=\\\"\\\"> <tbody _v-15d9cf7c=\\\"\\\"><tr _v-15d9cf7c=\\\"\\\"> <th colspan=4 style=\\\"font-weight: normal\\\" _v-15d9cf7c=\\\"\\\"> {{{ 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-15d9cf7c!./~/vue-loader/lib/selector.js?type=template&index=0!./src/components/product/Bill/BillJLB.vue\n// module id = 771\n// module chunks = 41","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-15d9cf7c&scoped=true!../../../../node_modules/vue-loader/lib/selector.js?type=style&index=0!./BillJLB.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!./BillJLB.vue\")\n__vue_template__ = require(\"!!vue-html-loader!../../../../node_modules/vue-loader/lib/template-rewriter.js?id=_v-15d9cf7c!../../../../node_modules/vue-loader/lib/selector.js?type=template&index=0!./BillJLB.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/BillJLB.vue\n// module id = 899\n// module chunks = 41"],"sourceRoot":""}
|
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
webpackJsonp([42],{347:function(a,t,e){"use strict";function o(a){return a&&a.__esModule?a:{default:a}}Object.defineProperty(t,"__esModule",{value:!0});var r=e(2),s=o(r),i=e(7),l=o(i),d=e(3);t.default={title:"改装卡历史记录",props:["billselect","selectone"],data:function(){return{show:!1,model:new d.PagedList("rs/sql/billrecord",20,{data:{f_process_id:this.billselect.f_process_id,fengongsi:this.$login.f.f_fengongsi,f_bill_type:this.selectone}}),model1:new d.DataModel("rs/report/gaizhuangkalishi",{data:{selectid:this.selectid}}),selectid:null,selectdata:null}},ready:function(){this.$refs.cp.$refs.cri.search()},methods:{details:function(a){console.log("选中的id:"+a),this.selectid=a.id,this.selectdata=a,this.show=!0,this.model1.paramSource.data.selectid=this.selectid,this.$refs.page1.$refs.xiaoshoudan.search()},close:function(){this.show=!1},updateNumber:function(){function a(){return t.apply(this,arguments)}var t=(0,l.default)(s.default.mark(function a(){var t,e,o;return s.default.wrap(function(a){for(;;)switch(a.prev=a.next){case 0:return t=new d.HttpResetClass,e=this.selectdata,delete e.id,e.f_bill_type=this.selectone,e.f_status="补打",o={billinfo:e},a.next=8,t.load("POST","rs/logic/makebillrecord",{data:o},{resolveMsg:null,rejectMsg:"改装卡编号存储失败"});case 8:case"end":return a.stop()}},a,this)}));return a}()}}},502:function(a,t,e){t=a.exports=e(4)(),t.push([a.id,"","",{version:3,sources:[],names:[],mappings:"",file:"BillGZKRecordInfo.vue",sourceRoot:"webpack://"}])},582:function(a,t,e){var o=e(502);"string"==typeof o&&(o=[[a.id,o,""]]);e(5)(o,{});o.locals&&(a.exports=o.locals)},778:function(a,t){a.exports=' <div class="d1 flex" _v-31413f9a=""> <div class="left col-sm-12" _v-31413f9a=""> <criteria-paged :model=model v-ref:cp="" _v-31413f9a=""> <criteria partial=criteria @condition-changed=search v-ref:cri="" _v-31413f9a=""> <form novalidate="" class="" partial="" _v-31413f9a=""> <div class=col-sm-2 _v-31413f9a=""> <div class=col-sm-6 _v-31413f9a=""> <input type=hidden class=form-control v-model=model.id v-on:keyup.enter=search condition="id like \'{}%\'" _v-31413f9a=""> </div> </div> <div class=col-sm-1 _v-31413f9a=""> <button type=hidden @click=search(),$parent.$parent.close() _v-31413f9a=""> </button> </div> </form> </criteria> <data-grid :model=model partial=list v-ref:grid="" class=data-grid is-fixed=false style=overflow-x:auto _v-31413f9a=""> <template partial=head> <tr class=title _v-31413f9a=""> <th _v-31413f9a=""> <nobr _v-31413f9a="">序号</nobr> </th> <th _v-31413f9a=""> <nobr _v-31413f9a="">状态</nobr> </th> <th _v-31413f9a=""> <nobr _v-31413f9a="">录单日期</nobr> </th> <th _v-31413f9a=""> <nobr _v-31413f9a="">单据编号</nobr> </th> <th _v-31413f9a=""> <nobr _v-31413f9a="">用户名</nobr> </th> <th _v-31413f9a=""> <nobr _v-31413f9a="">联系电话</nobr> </th> <th _v-31413f9a=""> <nobr _v-31413f9a="">协议号</nobr> </th> <th _v-31413f9a=""> <nobr _v-31413f9a="">安装地址</nobr> </th> <th _v-31413f9a=""> <nobr _v-31413f9a="">操作</nobr> </th> </tr> </template> <template partial=body> <tr _v-31413f9a=""> <td _v-31413f9a=""> <nobr _v-31413f9a="">{{$index+1}}</nobr> </td> <td _v-31413f9a=""> <nobr _v-31413f9a="">{{row.f_status}}</nobr> </td> <td _v-31413f9a=""> <nobr _v-31413f9a="">{{row.f_date}}</nobr> </td> <td _v-31413f9a=""> <nobr _v-31413f9a="">{{row.f_billnumber}}</nobr> </td> <td _v-31413f9a=""> <nobr _v-31413f9a="">{{row.f_user_name}}</nobr> </td> <td _v-31413f9a=""> <nobr _v-31413f9a="">{{row.f_phone}}</nobr> </td> <td _v-31413f9a=""> <nobr _v-31413f9a="">{{row.f_contract_number}}</nobr> </td> <td _v-31413f9a=""> <nobr _v-31413f9a="">{{row.f_address}}</nobr> </td> <td _v-31413f9a=""> <a href=# @click=$parent.$parent.$parent.details(row) _v-31413f9a="">查看详情</a> </td> </tr> </template> </data-grid> </criteria-paged> </div> <modal :show.sync=show v-ref:modal="" backdrop=false _v-31413f9a=""> <header slot=modal-header class=modal-header _v-31413f9a=""> <button type=button class=close @click=close _v-31413f9a=""><span _v-31413f9a="">×</span></button> </header> <article slot=modal-body class=modal-body _v-31413f9a=""> <div style="width:auto;height: auto" _v-31413f9a=""> <criteria-paged v-ref:page1="" :model=model1 :pager=false _v-31413f9a=""> <criteria v-ref:xiaoshoudan="" partial=criteria @condition-changed=search _v-31413f9a=""> <div novalidate="" class="form-inline auto" partial="" _v-31413f9a=""> <div class=form-group _v-31413f9a=""> </div> </div> </criteria> <div partial=list id=shexianss1 _v-31413f9a=""> <table class=tablesty style="margin: 0px auto" border=1 _v-31413f9a=""> <tbody _v-31413f9a=""><tr _v-31413f9a=""> <th colspan=4 style="font-weight: normal" _v-31413f9a=""> {{{ model.data.substring(26,model.data.length-8) }}} </th> </tr> </tbody></table> <div class=col-sm-12 style="margin-top: 2px" _v-31413f9a=""> <div class=col-sm-2 _v-31413f9a=""> <label _v-31413f9a=""> <nobr _v-31413f9a=""> 补打原因:</nobr> </label> </div> <div class=col-sm-6 _v-31413f9a=""> <input style="width: 100%" v-model=model.f_again_reason :value.sync=model.f_again_reason _v-31413f9a=""> </div> <div class=col-sm-2 _v-31413f9a=""> <report-print v-if=model.f_again_reason @click=$parent.$parent.updateNumber() id=shexianss1 top=1cm left=1cm width=100% height=100% _v-31413f9a=""></report-print> </div> </div> </div> </criteria-paged> </div> </article> <footer slot=modal-footer class=modal-footer _v-31413f9a=""> </footer> </modal> </div> '},898:function(a,t,e){var o,r,s={};e(582),o=e(347),r=e(778),a.exports=o||{},a.exports.__esModule&&(a.exports=a.exports.default);var i="function"==typeof a.exports?a.exports.options||(a.exports.options={}):a.exports;r&&(i.template=r),i.computed||(i.computed={}),Object.keys(s).forEach(function(a){var t=s[a];i.computed[a]=function(){return t}})}});
|
|
2
|
-
//# sourceMappingURL=42.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"sources":["webpack:///42.js","webpack:///BillGZKRecordInfo.vue","webpack:///./src/components/product/Bill/BillGZKRecordInfo.vue?2460","webpack:///./src/components/product/Bill/BillGZKRecordInfo.vue?794e","webpack:///./src/components/product/Bill/BillGZKRecordInfo.vue?fe38","webpack:///./src/components/product/Bill/BillGZKRecordInfo.vue"],"names":["webpackJsonp","347","module","exports","__webpack_require__","_interopRequireDefault","obj","__esModule","default","Object","defineProperty","value","_regenerator","_regenerator2","_asyncToGenerator2","_asyncToGenerator3","_vueClient","title","props","data","show","model","PagedList","f_process_id","this","billselect","fengongsi","$login","f","f_fengongsi","f_bill_type","selectone","model1","DataModel","selectid","selectdata","ready","$refs","cp","cri","search","methods","details","row","console","log","id","paramSource","page1","xiaoshoudan","close","updateNumber","_ref","apply","arguments","mark","_callee","http","billinfo","wrap","_context","prev","next","HttpResetClass","f_status","load","resolveMsg","rejectMsg","stop","502","push","version","sources","names","mappings","file","sourceRoot","582","content","locals","778","898","__vue_script__","__vue_template__","__vue_styles__","__vue_options__","options","template","computed","keys","forEach","key"],"mappings":"AAAAA,cAAc,KAERC,IACA,SAAUC,EAAQC,EAASC,GAEhC,YAgBA,SAASC,GAAuBC,GAAO,MAAOA,IAAOA,EAAIC,WAAaD,GAAQE,QAASF,GAdvFG,OAAOC,eAAeP,EAAS,cAC7BQ,OAAO,GAGT,IAAIC,GAAeR,EAAoB,GAEnCS,EAAgBR,EAAuBO,GAEvCE,EAAqBV,EAAoB,GAEzCW,EAAqBV,EAAuBS,GAE5CE,EAAaZ,EAAoB,EAIrCD,GAAQK,SCyHTS,MAAA,UACAC,OAAA,0BACAC,KAHA,WAIA,OACAC,MAAA,EACAC,MAAA,GAAAL,GAAAM,UAAA,wBACAH,MACAI,aAAAC,KAAAC,WAAAF,aACAG,UAAAF,KAAAG,OAAAC,EAAAC,YACAC,YAAAN,KAAAO,aAGAC,OAAA,GAAAhB,GAAAiB,UAAA,8BACAd,MACAe,SAAAV,KAAAU,YAGAA,SAAA,KACAC,WAAA,OAGAC,MAtBA,WAuBAZ,KAAAa,MAAAC,GAAAD,MAAAE,IAAAC,UAEAC,SACAC,QADA,SACAC,GACAC,QAAAC,IAAA,SAAAF,GACAnB,KAAAU,SAAAS,EAAAG,GACAtB,KAAAW,WAAAQ,EACAnB,KAAAJ,MAAA,EACAI,KAAAQ,OAAAe,YAAA5B,KAAAe,SAAAV,KAAAU,SACAV,KAAAa,MAAAW,MAAAX,MAAAY,YAAAT,UAEAU,MATA,WAUA1B,KAAAJ,MAAA,GAEA+B,aAZA,mBAAAA,KAAA,MAAAC,GAAAC,MAAA7B,KAAA8B,WAAA,GAAAF,IAAA,EAAArC,EAAAP,SAAAK,EAAAL,QAAA+C,KAAA,QAAAC,KAAA,GAAAC,GAAAC,EAAAvC,CAAA,OAAAN,GAAAL,QAAAmD,KAAA,SAAAC,GAAA,cAAAA,EAAAC,KAAAD,EAAAE,MAAA,aAaAL,GAAA,GAAAzC,GAAA+C,eACAL,EAAAlC,KAAAW,iBACAuB,GAAAZ,GAEAY,EAAA5B,YAAAN,KAAAO,UACA2B,EAAAM,SAAA,KACA7C,GACAuC,YApBAE,EAAAE,KAAA,EAsBAL,EAAAQ,KAAA,kCAAA9C,SAAA+C,WAAA,KAAAC,UAAA,aAtBA,wBAAAP,GAAAQ,SAAAZ,EAAAhC,QAAA,OAAA2B,SDpEMkB,IACA,SAAUnE,EAAQC,EAASC,GErGjCD,EAAAD,EAAAC,QAAAC,EAAA,KAKAD,EAAAmE,MAAApE,EAAA4C,GAAA,OAAkCyB,QAAA,EAAAC,WAAAC,SAAAC,SAAA,GAAAC,KAAA,wBAAAC,WAAA,iBF8G5BC,IACA,SAAU3E,EAAQC,EAASC,GGjHjC,GAAA0E,GAAA1E,EAAA,IACA,iBAAA0E,SAAA5E,EAAA4C,GAAAgC,EAAA,KAEA1E,GAAA,GAAA0E,KACAA,GAAAC,SAAA7E,EAAAC,QAAA2E,EAAAC,SHuIMC,IACA,SAAU9E,EAAQC,GI/IxBD,EAAAC,QAAA,uqHJqJM8E,IACA,SAAU/E,EAAQC,EAASC,GKtJjC,GAAA8E,GAAAC,EACAC,IACAhF,GAAA,KACA8E,EAAA9E,EAAA,KACA+E,EAAA/E,EAAA,KACAF,EAAAC,QAAA+E,MACAhF,EAAAC,QAAAI,aAAAL,EAAAC,QAAAD,EAAAC,QAAAK,QACA,IAAA6E,GAAA,kBAAAnF,GAAAC,QAAAD,EAAAC,QAAAmF,UAAApF,EAAAC,QAAAmF,YAAoHpF,EAAAC,OACpHgF,KACAE,EAAAE,SAAAJ,GAEAE,EAAAG,WAAAH,EAAAG,aACA/E,OAAAgF,KAAAL,GAAAM,QAAA,SAAAC,GACA,GAAAzF,GAAAkF,EAAAO,EACAN,GAAAG,SAAAG,GAAA,WAA6C,MAAAzF","file":"42.js","sourcesContent":["webpackJsonp([42],{\n\n/***/ 347:\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t\n\tObject.defineProperty(exports, \"__esModule\", {\n\t value: true\n\t});\n\t\n\tvar _regenerator = __webpack_require__(2);\n\t\n\tvar _regenerator2 = _interopRequireDefault(_regenerator);\n\t\n\tvar _asyncToGenerator2 = __webpack_require__(7);\n\t\n\tvar _asyncToGenerator3 = _interopRequireDefault(_asyncToGenerator2);\n\t\n\tvar _vueClient = __webpack_require__(3);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\texports.default = {\n\t title: \"改装卡历史记录\",\n\t props: ['billselect', 'selectone'],\n\t data: function data() {\n\t return {\n\t show: false,\n\t model: new _vueClient.PagedList('rs/sql/billrecord', 20, {\n\t data: {\n\t f_process_id: this.billselect.f_process_id,\n\t fengongsi: this.$login.f.f_fengongsi,\n\t f_bill_type: this.selectone\n\t }\n\t }),\n\t model1: new _vueClient.DataModel('rs/report/gaizhuangkalishi', {\n\t data: {\n\t selectid: this.selectid\n\t }\n\t }),\n\t selectid: null,\n\t selectdata: null\n\t };\n\t },\n\t ready: function ready() {\n\t this.$refs.cp.$refs.cri.search();\n\t },\n\t\n\t methods: {\n\t details: function details(row) {\n\t console.log('选中的id:' + row);\n\t this.selectid = row.id;\n\t this.selectdata = row;\n\t this.show = true;\n\t this.model1.paramSource.data.selectid = this.selectid;\n\t this.$refs.page1.$refs.xiaoshoudan.search();\n\t },\n\t close: function close() {\n\t this.show = false;\n\t },\n\t updateNumber: function () {\n\t var _ref = (0, _asyncToGenerator3.default)(_regenerator2.default.mark(function _callee() {\n\t var http, billinfo, data;\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 billinfo = this.selectdata;\n\t\n\t delete billinfo.id;\n\t\n\t billinfo.f_bill_type = this.selectone;\n\t billinfo.f_status = '补打';\n\t data = {\n\t billinfo: billinfo\n\t };\n\t _context.next = 8;\n\t return http.load('POST', 'rs/logic/makebillrecord', { data: data }, { resolveMsg: null, rejectMsg: \"改装卡编号存储失败\" });\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 updateNumber() {\n\t return _ref.apply(this, arguments);\n\t }\n\t\n\t return updateNumber;\n\t }()\n\t }\n\t};\n\n/***/ }),\n\n/***/ 502:\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\":\"BillGZKRecordInfo.vue\",\"sourceRoot\":\"webpack://\"}]);\n\t\n\t// exports\n\n\n/***/ }),\n\n/***/ 582:\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__(502);\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-31413f9a&scoped=true!../../../../node_modules/vue-loader/lib/selector.js?type=style&index=0!./BillGZKRecordInfo.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-31413f9a&scoped=true!../../../../node_modules/vue-loader/lib/selector.js?type=style&index=0!./BillGZKRecordInfo.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/***/ 778:\n/***/ (function(module, exports) {\n\n\tmodule.exports = \" <div class=\\\"d1 flex\\\" _v-31413f9a=\\\"\\\"> <div class=\\\"left col-sm-12\\\" _v-31413f9a=\\\"\\\"> <criteria-paged :model=model v-ref:cp=\\\"\\\" _v-31413f9a=\\\"\\\"> <criteria partial=criteria @condition-changed=search v-ref:cri=\\\"\\\" _v-31413f9a=\\\"\\\"> <form novalidate=\\\"\\\" class=\\\"\\\" partial=\\\"\\\" _v-31413f9a=\\\"\\\"> <div class=col-sm-2 _v-31413f9a=\\\"\\\"> <div class=col-sm-6 _v-31413f9a=\\\"\\\"> <input type=hidden class=form-control v-model=model.id v-on:keyup.enter=search condition=\\\"id like '{}%'\\\" _v-31413f9a=\\\"\\\"> </div> </div> <div class=col-sm-1 _v-31413f9a=\\\"\\\"> <button type=hidden @click=search(),$parent.$parent.close() _v-31413f9a=\\\"\\\"> </button> </div> </form> </criteria> <data-grid :model=model partial=list v-ref:grid=\\\"\\\" class=data-grid is-fixed=false style=overflow-x:auto _v-31413f9a=\\\"\\\"> <template partial=head> <tr class=title _v-31413f9a=\\\"\\\"> <th _v-31413f9a=\\\"\\\"> <nobr _v-31413f9a=\\\"\\\">序号</nobr> </th> <th _v-31413f9a=\\\"\\\"> <nobr _v-31413f9a=\\\"\\\">状态</nobr> </th> <th _v-31413f9a=\\\"\\\"> <nobr _v-31413f9a=\\\"\\\">录单日期</nobr> </th> <th _v-31413f9a=\\\"\\\"> <nobr _v-31413f9a=\\\"\\\">单据编号</nobr> </th> <th _v-31413f9a=\\\"\\\"> <nobr _v-31413f9a=\\\"\\\">用户名</nobr> </th> <th _v-31413f9a=\\\"\\\"> <nobr _v-31413f9a=\\\"\\\">联系电话</nobr> </th> <th _v-31413f9a=\\\"\\\"> <nobr _v-31413f9a=\\\"\\\">协议号</nobr> </th> <th _v-31413f9a=\\\"\\\"> <nobr _v-31413f9a=\\\"\\\">安装地址</nobr> </th> <th _v-31413f9a=\\\"\\\"> <nobr _v-31413f9a=\\\"\\\">操作</nobr> </th> </tr> </template> <template partial=body> <tr _v-31413f9a=\\\"\\\"> <td _v-31413f9a=\\\"\\\"> <nobr _v-31413f9a=\\\"\\\">{{$index+1}}</nobr> </td> <td _v-31413f9a=\\\"\\\"> <nobr _v-31413f9a=\\\"\\\">{{row.f_status}}</nobr> </td> <td _v-31413f9a=\\\"\\\"> <nobr _v-31413f9a=\\\"\\\">{{row.f_date}}</nobr> </td> <td _v-31413f9a=\\\"\\\"> <nobr _v-31413f9a=\\\"\\\">{{row.f_billnumber}}</nobr> </td> <td _v-31413f9a=\\\"\\\"> <nobr _v-31413f9a=\\\"\\\">{{row.f_user_name}}</nobr> </td> <td _v-31413f9a=\\\"\\\"> <nobr _v-31413f9a=\\\"\\\">{{row.f_phone}}</nobr> </td> <td _v-31413f9a=\\\"\\\"> <nobr _v-31413f9a=\\\"\\\">{{row.f_contract_number}}</nobr> </td> <td _v-31413f9a=\\\"\\\"> <nobr _v-31413f9a=\\\"\\\">{{row.f_address}}</nobr> </td> <td _v-31413f9a=\\\"\\\"> <a href=# @click=$parent.$parent.$parent.details(row) _v-31413f9a=\\\"\\\">查看详情</a> </td> </tr> </template> </data-grid> </criteria-paged> </div> <modal :show.sync=show v-ref:modal=\\\"\\\" backdrop=false _v-31413f9a=\\\"\\\"> <header slot=modal-header class=modal-header _v-31413f9a=\\\"\\\"> <button type=button class=close @click=close _v-31413f9a=\\\"\\\"><span _v-31413f9a=\\\"\\\">×</span></button> </header> <article slot=modal-body class=modal-body _v-31413f9a=\\\"\\\"> <div style=\\\"width:auto;height: auto\\\" _v-31413f9a=\\\"\\\"> <criteria-paged v-ref:page1=\\\"\\\" :model=model1 :pager=false _v-31413f9a=\\\"\\\"> <criteria v-ref:xiaoshoudan=\\\"\\\" partial=criteria @condition-changed=search _v-31413f9a=\\\"\\\"> <div novalidate=\\\"\\\" class=\\\"form-inline auto\\\" partial=\\\"\\\" _v-31413f9a=\\\"\\\"> <div class=form-group _v-31413f9a=\\\"\\\"> </div> </div> </criteria> <div partial=list id=shexianss1 _v-31413f9a=\\\"\\\"> <table class=tablesty style=\\\"margin: 0px auto\\\" border=1 _v-31413f9a=\\\"\\\"> <tbody _v-31413f9a=\\\"\\\"><tr _v-31413f9a=\\\"\\\"> <th colspan=4 style=\\\"font-weight: normal\\\" _v-31413f9a=\\\"\\\"> {{{ model.data.substring(26,model.data.length-8) }}} </th> </tr> </tbody></table> <div class=col-sm-12 style=\\\"margin-top: 2px\\\" _v-31413f9a=\\\"\\\"> <div class=col-sm-2 _v-31413f9a=\\\"\\\"> <label _v-31413f9a=\\\"\\\"> <nobr _v-31413f9a=\\\"\\\"> 补打原因:</nobr> </label> </div> <div class=col-sm-6 _v-31413f9a=\\\"\\\"> <input style=\\\"width: 100%\\\" v-model=model.f_again_reason :value.sync=model.f_again_reason _v-31413f9a=\\\"\\\"> </div> <div class=col-sm-2 _v-31413f9a=\\\"\\\"> <report-print v-if=model.f_again_reason @click=$parent.$parent.updateNumber() id=shexianss1 top=1cm left=1cm width=100% height=100% _v-31413f9a=\\\"\\\"></report-print> </div> </div> </div> </criteria-paged> </div> </article> <footer slot=modal-footer class=modal-footer _v-31413f9a=\\\"\\\"> </footer> </modal> </div> \";\n\n/***/ }),\n\n/***/ 898:\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar __vue_script__, __vue_template__\n\tvar __vue_styles__ = {}\n\t__webpack_require__(582)\n\t__vue_script__ = __webpack_require__(347)\n\t__vue_template__ = __webpack_require__(778)\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// 42.js","<template>\r\n <div class=\"d1 flex\">\r\n <div class=\"left col-sm-12\">\r\n <criteria-paged :model=\"model\" v-ref:cp>\r\n <criteria partial='criteria' @condition-changed='search' v-ref:cri>\r\n <form novalidate class=\"\" partial>\r\n <div class=\"col-sm-2\">\r\n <div class=\"col-sm-6\">\r\n <input type=\"hidden\" class=\"form-control\" v-model=\"model.id\"\r\n v-on:keyup.enter=\"search\"\r\n condition=\"id like '{}%'\">\r\n </div>\r\n </div>\r\n <div class=\"col-sm-1\">\r\n <button type=\"hidden\" @click=\"search(),$parent.$parent.close()\">\r\n </button>\r\n </div>\r\n </form>\r\n </criteria>\r\n <data-grid :model=\"model\" partial='list' v-ref:grid class=\"data-grid\" is-fixed='false' style=\"overflow-x:auto\">\r\n <template partial='head'>\r\n <tr class=\"title\">\r\n <th>\r\n <nobr>序号</nobr>\r\n </th>\r\n <th>\r\n <nobr>状态</nobr>\r\n </th>\r\n <th>\r\n <nobr>录单日期</nobr>\r\n </th>\r\n <th>\r\n <nobr>单据编号</nobr>\r\n </th>\r\n <th>\r\n <nobr>用户名</nobr>\r\n </th>\r\n <th>\r\n <nobr>联系电话</nobr>\r\n </th>\r\n <th>\r\n <nobr>协议号</nobr>\r\n </th>\r\n <th>\r\n <nobr>安装地址</nobr>\r\n </th>\r\n <th>\r\n <nobr>操作</nobr>\r\n </th>\r\n </tr>\r\n </template>\r\n <template partial='body'>\r\n <tr>\r\n <td>\r\n <nobr>{{$index+1}}</nobr>\r\n </td>\r\n <td>\r\n <nobr>{{row.f_status}}</nobr>\r\n </td>\r\n <td>\r\n <nobr>{{row.f_date}}</nobr>\r\n </td>\r\n <td>\r\n <nobr>{{row.f_billnumber}}</nobr>\r\n </td>\r\n <td>\r\n <nobr>{{row.f_user_name}}</nobr>\r\n </td>\r\n <td>\r\n <nobr>{{row.f_phone}}</nobr>\r\n </td>\r\n <td>\r\n <nobr>{{row.f_contract_number}}</nobr>\r\n </td>\r\n <td>\r\n <nobr>{{row.f_address}}</nobr>\r\n </td>\r\n <td>\r\n <a href=\"#\" @click=\"$parent.$parent.$parent.details(row)\">查看详情</a>\r\n </td>\r\n </tr>\r\n </template>\r\n </data-grid>\r\n </criteria-paged>\r\n </div>\r\n <modal :show.sync=\"show\" v-ref:modal backdrop=\"false\">\r\n <header slot=\"modal-header\" class=\"modal-header\">\r\n <button type=\"button\" class=\"close\" @click=\"close\"><span>×</span></button>\r\n </header>\r\n <article slot=\"modal-body\" class=\"modal-body\">\r\n <div style=\"width:auto;height: auto\">\r\n <criteria-paged v-ref:page1 :model=\"model1\" :pager='false'>\r\n <criteria v-ref:xiaoshoudan 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>\r\n </div>\r\n </criteria>\r\n <div partial='list' id='shexianss1'>\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 class=\"col-sm-12\" style=\"margin-top: 2px\">\r\n <div class=\"col-sm-2\">\r\n <label>\r\n <nobr> 补打原因:</nobr>\r\n </label>\r\n </div>\r\n <div class=\"col-sm-6\">\r\n <input style=\"width: 100%\" v-model=\"model.f_again_reason\" :value.sync=\"model.f_again_reason\"/>\r\n </div>\r\n <div class=\"col-sm-2\">\r\n <report-print v-if=\"model.f_again_reason\" @click=\"$parent.$parent.updateNumber()\" id='shexianss1' top='1cm' left='1cm'\r\n width='100%' height='100%'></report-print>\r\n </div>\r\n </div>\r\n </div>\r\n\r\n </criteria-paged>\r\n </div>\r\n </article>\r\n <footer slot=\"modal-footer\" class=\"modal-footer\">\r\n <!--<button v-show=\"show\" type=\"button\" class=\"btn btn-default\" @click='close'>取消</button>-->\r\n <!--<button v-show=\"show\" type=\"button\" class=\"btn btn-success\" @click='confirm'>确认</button>-->\r\n </footer>\r\n </modal>\r\n </div>\r\n</template>\r\n\r\n<script>\r\n import {HttpResetClass} from 'vue-client'\r\n import {DataModel} from 'vue-client'\r\n import {\r\n PagedList\r\n } from 'vue-client'\r\n\r\n export default {\r\n title: \"改装卡历史记录\",\r\n props: ['billselect', 'selectone'],\r\n data() {\r\n return {\r\n show: false, // 详情显示控制(模态框)\r\n model: new PagedList('rs/sql/billrecord', 20, {\r\n data: {\r\n f_process_id: this.billselect.f_process_id,\r\n fengongsi: this.$login.f.f_fengongsi,\r\n f_bill_type: this.selectone\r\n }\r\n }),\r\n model1: new DataModel('rs/report/gaizhuangkalishi', {\r\n data: {\r\n selectid: this.selectid\r\n }\r\n }),\r\n selectid: null,\r\n selectdata: null\r\n }\r\n },\r\n ready() {\r\n this.$refs.cp.$refs.cri.search()\r\n },\r\n methods: {\r\n details(row) {\r\n console.log('选中的id:' + row)\r\n this.selectid = row.id\r\n this.selectdata = row\r\n this.show = true\r\n this.model1.paramSource.data.selectid = this.selectid\r\n this.$refs.page1.$refs.xiaoshoudan.search()\r\n },\r\n close() {\r\n this.show = false\r\n },\r\n async updateNumber(){\r\n let http = new HttpResetClass()\r\n let billinfo = this.selectdata\r\n delete billinfo.id\r\n // 票据类型\r\n billinfo.f_bill_type = this.selectone\r\n billinfo.f_status = '补打'\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// BillGZKRecordInfo.vue?1cedf98b","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\":\"BillGZKRecordInfo.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-31413f9a&scoped=true!./~/vue-loader/lib/selector.js?type=style&index=0!./src/components/product/Bill/BillGZKRecordInfo.vue\n// module id = 502\n// module chunks = 42","// 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-31413f9a&scoped=true!../../../../node_modules/vue-loader/lib/selector.js?type=style&index=0!./BillGZKRecordInfo.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-31413f9a&scoped=true!../../../../node_modules/vue-loader/lib/selector.js?type=style&index=0!./BillGZKRecordInfo.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-31413f9a&scoped=true!../../../../node_modules/vue-loader/lib/selector.js?type=style&index=0!./BillGZKRecordInfo.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-31413f9a&scoped=true!./~/vue-loader/lib/selector.js?type=style&index=0!./src/components/product/Bill/BillGZKRecordInfo.vue\n// module id = 582\n// module chunks = 42","module.exports = \" <div class=\\\"d1 flex\\\" _v-31413f9a=\\\"\\\"> <div class=\\\"left col-sm-12\\\" _v-31413f9a=\\\"\\\"> <criteria-paged :model=model v-ref:cp=\\\"\\\" _v-31413f9a=\\\"\\\"> <criteria partial=criteria @condition-changed=search v-ref:cri=\\\"\\\" _v-31413f9a=\\\"\\\"> <form novalidate=\\\"\\\" class=\\\"\\\" partial=\\\"\\\" _v-31413f9a=\\\"\\\"> <div class=col-sm-2 _v-31413f9a=\\\"\\\"> <div class=col-sm-6 _v-31413f9a=\\\"\\\"> <input type=hidden class=form-control v-model=model.id v-on:keyup.enter=search condition=\\\"id like '{}%'\\\" _v-31413f9a=\\\"\\\"> </div> </div> <div class=col-sm-1 _v-31413f9a=\\\"\\\"> <button type=hidden @click=search(),$parent.$parent.close() _v-31413f9a=\\\"\\\"> </button> </div> </form> </criteria> <data-grid :model=model partial=list v-ref:grid=\\\"\\\" class=data-grid is-fixed=false style=overflow-x:auto _v-31413f9a=\\\"\\\"> <template partial=head> <tr class=title _v-31413f9a=\\\"\\\"> <th _v-31413f9a=\\\"\\\"> <nobr _v-31413f9a=\\\"\\\">序号</nobr> </th> <th _v-31413f9a=\\\"\\\"> <nobr _v-31413f9a=\\\"\\\">状态</nobr> </th> <th _v-31413f9a=\\\"\\\"> <nobr _v-31413f9a=\\\"\\\">录单日期</nobr> </th> <th _v-31413f9a=\\\"\\\"> <nobr _v-31413f9a=\\\"\\\">单据编号</nobr> </th> <th _v-31413f9a=\\\"\\\"> <nobr _v-31413f9a=\\\"\\\">用户名</nobr> </th> <th _v-31413f9a=\\\"\\\"> <nobr _v-31413f9a=\\\"\\\">联系电话</nobr> </th> <th _v-31413f9a=\\\"\\\"> <nobr _v-31413f9a=\\\"\\\">协议号</nobr> </th> <th _v-31413f9a=\\\"\\\"> <nobr _v-31413f9a=\\\"\\\">安装地址</nobr> </th> <th _v-31413f9a=\\\"\\\"> <nobr _v-31413f9a=\\\"\\\">操作</nobr> </th> </tr> </template> <template partial=body> <tr _v-31413f9a=\\\"\\\"> <td _v-31413f9a=\\\"\\\"> <nobr _v-31413f9a=\\\"\\\">{{$index+1}}</nobr> </td> <td _v-31413f9a=\\\"\\\"> <nobr _v-31413f9a=\\\"\\\">{{row.f_status}}</nobr> </td> <td _v-31413f9a=\\\"\\\"> <nobr _v-31413f9a=\\\"\\\">{{row.f_date}}</nobr> </td> <td _v-31413f9a=\\\"\\\"> <nobr _v-31413f9a=\\\"\\\">{{row.f_billnumber}}</nobr> </td> <td _v-31413f9a=\\\"\\\"> <nobr _v-31413f9a=\\\"\\\">{{row.f_user_name}}</nobr> </td> <td _v-31413f9a=\\\"\\\"> <nobr _v-31413f9a=\\\"\\\">{{row.f_phone}}</nobr> </td> <td _v-31413f9a=\\\"\\\"> <nobr _v-31413f9a=\\\"\\\">{{row.f_contract_number}}</nobr> </td> <td _v-31413f9a=\\\"\\\"> <nobr _v-31413f9a=\\\"\\\">{{row.f_address}}</nobr> </td> <td _v-31413f9a=\\\"\\\"> <a href=# @click=$parent.$parent.$parent.details(row) _v-31413f9a=\\\"\\\">查看详情</a> </td> </tr> </template> </data-grid> </criteria-paged> </div> <modal :show.sync=show v-ref:modal=\\\"\\\" backdrop=false _v-31413f9a=\\\"\\\"> <header slot=modal-header class=modal-header _v-31413f9a=\\\"\\\"> <button type=button class=close @click=close _v-31413f9a=\\\"\\\"><span _v-31413f9a=\\\"\\\">×</span></button> </header> <article slot=modal-body class=modal-body _v-31413f9a=\\\"\\\"> <div style=\\\"width:auto;height: auto\\\" _v-31413f9a=\\\"\\\"> <criteria-paged v-ref:page1=\\\"\\\" :model=model1 :pager=false _v-31413f9a=\\\"\\\"> <criteria v-ref:xiaoshoudan=\\\"\\\" partial=criteria @condition-changed=search _v-31413f9a=\\\"\\\"> <div novalidate=\\\"\\\" class=\\\"form-inline auto\\\" partial=\\\"\\\" _v-31413f9a=\\\"\\\"> <div class=form-group _v-31413f9a=\\\"\\\"> </div> </div> </criteria> <div partial=list id=shexianss1 _v-31413f9a=\\\"\\\"> <table class=tablesty style=\\\"margin: 0px auto\\\" border=1 _v-31413f9a=\\\"\\\"> <tbody _v-31413f9a=\\\"\\\"><tr _v-31413f9a=\\\"\\\"> <th colspan=4 style=\\\"font-weight: normal\\\" _v-31413f9a=\\\"\\\"> {{{ model.data.substring(26,model.data.length-8) }}} </th> </tr> </tbody></table> <div class=col-sm-12 style=\\\"margin-top: 2px\\\" _v-31413f9a=\\\"\\\"> <div class=col-sm-2 _v-31413f9a=\\\"\\\"> <label _v-31413f9a=\\\"\\\"> <nobr _v-31413f9a=\\\"\\\"> 补打原因:</nobr> </label> </div> <div class=col-sm-6 _v-31413f9a=\\\"\\\"> <input style=\\\"width: 100%\\\" v-model=model.f_again_reason :value.sync=model.f_again_reason _v-31413f9a=\\\"\\\"> </div> <div class=col-sm-2 _v-31413f9a=\\\"\\\"> <report-print v-if=model.f_again_reason @click=$parent.$parent.updateNumber() id=shexianss1 top=1cm left=1cm width=100% height=100% _v-31413f9a=\\\"\\\"></report-print> </div> </div> </div> </criteria-paged> </div> </article> <footer slot=modal-footer class=modal-footer _v-31413f9a=\\\"\\\"> </footer> </modal> </div> \";\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./~/vue-html-loader!./~/vue-loader/lib/template-rewriter.js?id=_v-31413f9a!./~/vue-loader/lib/selector.js?type=template&index=0!./src/components/product/Bill/BillGZKRecordInfo.vue\n// module id = 778\n// module chunks = 42","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-31413f9a&scoped=true!../../../../node_modules/vue-loader/lib/selector.js?type=style&index=0!./BillGZKRecordInfo.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!./BillGZKRecordInfo.vue\")\n__vue_template__ = require(\"!!vue-html-loader!../../../../node_modules/vue-loader/lib/template-rewriter.js?id=_v-31413f9a!../../../../node_modules/vue-loader/lib/selector.js?type=template&index=0!./BillGZKRecordInfo.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/BillGZKRecordInfo.vue\n// module id = 898\n// module chunks = 42"],"sourceRoot":""}
|