apply-clients 7.1.35 → 7.1.36
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- 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 +4 -1
- 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 +85 -69
- 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 +53 -69
- package/src/components/product/Function/InstallInfoSelect.vue +118 -105
- 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 +374 -347
- package/src/components/product/Process/ExplorationUser.vue +151 -138
- 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 +823 -484
- 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 +59 -113
- package/src/components/product/Process/Processes/chargeManagement.vue +546 -562
- 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 +1417 -856
- package/src/components/product/Process/Service/ShowBackReason.vue +33 -0
- package/src/components/product/ServiceView.vue +557 -680
- 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 +22 -33
- package/src/components/product/Supervisory/SupervisoryList.vue +258 -208
- package/src/components/product/Supervisory/SupervisoryhCart.vue +52 -36
- 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,562 +1,546 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<div class="col-sm-12" style="margin: 20px 0px;">
|
|
3
|
-
<data-grid :model="model" v-ref:grid class="list_area table_sy" style="padding: 0px">
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
<
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
<
|
|
125
|
-
|
|
126
|
-
<
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
:
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
<div class="col-sm-
|
|
188
|
-
<
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
</
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
}
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
let
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
this
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
this
|
|
445
|
-
}
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
},
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
this.showCharge =
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
this.
|
|
522
|
-
},
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
this.
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
}
|
|
548
|
-
}
|
|
549
|
-
</script>
|
|
550
|
-
<style scoped>
|
|
551
|
-
.textNoLineBreak {
|
|
552
|
-
white-space: nowrap;
|
|
553
|
-
}
|
|
554
|
-
.head-but{
|
|
555
|
-
margin-left: 5px;
|
|
556
|
-
height: 34px;
|
|
557
|
-
/*background-color: #6aa6e2;*/
|
|
558
|
-
border-radius: 4px;
|
|
559
|
-
font-family: PingFang;
|
|
560
|
-
color: #ffffff;
|
|
561
|
-
}
|
|
562
|
-
</style>
|
|
1
|
+
<template>
|
|
2
|
+
<div class="col-sm-12" style="margin: 20px 0px;">
|
|
3
|
+
<data-grid :model="model" v-ref:grid class="list_area table_sy" style="padding: 0px">
|
|
4
|
+
<template partial='head'>
|
|
5
|
+
<tr>
|
|
6
|
+
<th class="textNoLineBreak">序号</th>
|
|
7
|
+
<th class="textNoLineBreak">收费金额</th>
|
|
8
|
+
<th class="textNoLineBreak">金额大写</th>
|
|
9
|
+
<th class="textNoLineBreak">付款方式</th>
|
|
10
|
+
<th class="textNoLineBreak">收费人员</th>
|
|
11
|
+
<th class="textNoLineBreak">收费日期</th>
|
|
12
|
+
<th class="textNoLineBreak">备注</th>
|
|
13
|
+
<th class="textNoLineBreak">缴费状态</th>
|
|
14
|
+
<th class="textNoLineBreak">作废人员</th>
|
|
15
|
+
<th class="textNoLineBreak">作废时间</th>
|
|
16
|
+
<th class="textNoLineBreak">作废原因</th>
|
|
17
|
+
<th class="textNoLineBreak">票据类型</th>
|
|
18
|
+
<th class="textNoLineBreak">票据状态</th>
|
|
19
|
+
<th class="textNoLineBreak">
|
|
20
|
+
<button
|
|
21
|
+
type="button"
|
|
22
|
+
class="btn btn-info head-but"
|
|
23
|
+
@click="$parent.$parent.showChargeModal()"
|
|
24
|
+
:disabled="$parent.$parent.mark === 1 || ($parent.$parent.selectdata.f_cumulative_payment_money >= $parent.$parent.selectdata.f_due_money || $parent.$parent.selectdata.f_surplus_money === 0)"
|
|
25
|
+
>新增收费</button>
|
|
26
|
+
</th>
|
|
27
|
+
</tr>
|
|
28
|
+
</template>
|
|
29
|
+
<template partial='body'>
|
|
30
|
+
<tr>
|
|
31
|
+
<td style="text-align: center;">
|
|
32
|
+
<nobr>{{$index+1}}</nobr>
|
|
33
|
+
</td>
|
|
34
|
+
<td style="text-align: center;">
|
|
35
|
+
<nobr>{{row.f_charge_money}}</nobr>
|
|
36
|
+
</td>
|
|
37
|
+
<td style="text-align: center;">
|
|
38
|
+
<nobr>{{row.f_amount_words}}</nobr>
|
|
39
|
+
</td>
|
|
40
|
+
<td style="text-align: center;">
|
|
41
|
+
<nobr>{{row.f_payment_method}}</nobr>
|
|
42
|
+
</td>
|
|
43
|
+
<td style="text-align: center;">
|
|
44
|
+
<nobr>{{row.f_charge_collectors}}</nobr>
|
|
45
|
+
</td>
|
|
46
|
+
<td style="text-align: center;">
|
|
47
|
+
<nobr>{{row.f_charge_date}}</nobr>
|
|
48
|
+
</td>
|
|
49
|
+
<td style="text-align: center;">
|
|
50
|
+
<nobr>{{row.f_charge_remarks}}</nobr>
|
|
51
|
+
</td>
|
|
52
|
+
<td style="text-align: center;">
|
|
53
|
+
<nobr>{{row.f_charge_status}}</nobr>
|
|
54
|
+
</td>
|
|
55
|
+
<td style="text-align: center;">
|
|
56
|
+
<nobr>{{row.f_void_staff}}</nobr>
|
|
57
|
+
</td>
|
|
58
|
+
<td style="text-align: center;">
|
|
59
|
+
<nobr>{{row.f_void_date}}</nobr>
|
|
60
|
+
</td>
|
|
61
|
+
<td style="text-align: center;">
|
|
62
|
+
<nobr>{{row.f_void_remarks}}</nobr>
|
|
63
|
+
</td>
|
|
64
|
+
<td style="text-align: center;">
|
|
65
|
+
<nobr>{{row.f_bill_style}}</nobr>
|
|
66
|
+
</td>
|
|
67
|
+
<td style="text-align: center;">
|
|
68
|
+
<nobr>{{row.f_bill_state}}</nobr>
|
|
69
|
+
</td>
|
|
70
|
+
<td style="text-align: center;">
|
|
71
|
+
<nobr v-if="row.f_charge_status !== '退款'">
|
|
72
|
+
<button
|
|
73
|
+
type="button"
|
|
74
|
+
name="button"
|
|
75
|
+
class="btn btn-link"
|
|
76
|
+
:disabled="$parent.$parent.mark === 1 || row.f_charge_status === '作废'"
|
|
77
|
+
@click="$parent.$parent.showInvalidModal(row)"
|
|
78
|
+
>作废</button>
|
|
79
|
+
|
|
80
|
+
<button
|
|
81
|
+
type="button" name="button" class="btn btn-link"
|
|
82
|
+
v-if="row.f_bill_state !== '开票成功'"
|
|
83
|
+
@click="$parent.$parent.openBill(row)"
|
|
84
|
+
>开票</button>
|
|
85
|
+
|
|
86
|
+
<button
|
|
87
|
+
type="button" name="button" class="btn btn-link"
|
|
88
|
+
v-else
|
|
89
|
+
@click="$parent.$parent.showPrintModal(row)"
|
|
90
|
+
>查看发票</button>
|
|
91
|
+
</nobr>
|
|
92
|
+
</td>
|
|
93
|
+
</tr>
|
|
94
|
+
</template>
|
|
95
|
+
</data-grid>
|
|
96
|
+
|
|
97
|
+
<validator name="v">
|
|
98
|
+
<modal v-if="showCharge" :show.sync="showCharge" v-ref:modal :large="true" :backdrop="false" title="收费明细">
|
|
99
|
+
<header slot="modal-header" class="modal-header">
|
|
100
|
+
<button type="button" class="close" @click="closeModal"><span>×</span></button>
|
|
101
|
+
<h4 class="modal-title">收费明细</h4>
|
|
102
|
+
</header>
|
|
103
|
+
<article slot="modal-body" class="modal-body clearfix">
|
|
104
|
+
<div class="form-group col-sm-6" :class="[$v.f_charge_money.required ? 'has-error' : '']">
|
|
105
|
+
<label class="col-sm-4 control-label">收费金额:</label>
|
|
106
|
+
<div class="col-sm-8">
|
|
107
|
+
<input type="number"
|
|
108
|
+
class="form-control input_view"
|
|
109
|
+
style="width: 100%"
|
|
110
|
+
placeholder="0.00"
|
|
111
|
+
@keyup="handleInput"
|
|
112
|
+
@change="moneyChange"
|
|
113
|
+
v-validate:f_charge_money = "['required']"
|
|
114
|
+
v-model="charge.f_charge_money" />
|
|
115
|
+
</div>
|
|
116
|
+
</div>
|
|
117
|
+
<div class="form-group col-sm-6">
|
|
118
|
+
<label class="col-sm-4 control-label">金额大写:</label>
|
|
119
|
+
<div class="col-sm-8">
|
|
120
|
+
<input type="text" class="form-control input_view" style="width: 100%" readonly
|
|
121
|
+
:value="smalltoBIG(0)" v-model.sync="charge.f_amount_words"/>
|
|
122
|
+
</div>
|
|
123
|
+
</div>
|
|
124
|
+
<div class="form-group col-sm-6" :class="[$v.f_payment_method.required ? 'has-error' : '']">
|
|
125
|
+
<label class="col-sm-4 control-label">付款方式:</label>
|
|
126
|
+
<div class="col-sm-8">
|
|
127
|
+
<input type="text" v-show="false" v-model="charge.f_payment_method" v-validate:f_payment_method = "['required']" >
|
|
128
|
+
<input-select
|
|
129
|
+
placeholder='请选择' width="100%"
|
|
130
|
+
v-model="charge.f_payment_method"
|
|
131
|
+
:value.sync="charge.f_payment_method"
|
|
132
|
+
:options='paymentMethod'
|
|
133
|
+
class="select select_list"
|
|
134
|
+
:value-single="true"
|
|
135
|
+
close-on-select ></input-select>
|
|
136
|
+
</div>
|
|
137
|
+
</div>
|
|
138
|
+
<div class="form-group col-sm-6" :class="[$v.f_bill_style.required ? 'has-error' : '']">
|
|
139
|
+
<label class="col-sm-4 control-label">票据类型:</label>
|
|
140
|
+
<div class="col-sm-8">
|
|
141
|
+
<input type="text" v-show="false" v-model="charge.f_bill_style" :value.sync="selectdata.f_paper_type" v-validate:f_bill_style = "['required']" >
|
|
142
|
+
<input-select
|
|
143
|
+
placeholder='请选择' width="100%"
|
|
144
|
+
v-model="charge.f_bill_style"
|
|
145
|
+
:value.sync="selectdata.f_paper_type"
|
|
146
|
+
:options='billStyleList'
|
|
147
|
+
class="select select_list"
|
|
148
|
+
:value-single="true"
|
|
149
|
+
close-on-select ></input-select>
|
|
150
|
+
</div>
|
|
151
|
+
</div>
|
|
152
|
+
<div class="form-group col-sm-6">
|
|
153
|
+
<label class="col-sm-4 control-label">应交总金额:</label>
|
|
154
|
+
<div class="col-sm-8">
|
|
155
|
+
<input type="text" class="form-control input_view" style="width: 100%" readonly
|
|
156
|
+
v-model="selectdata.f_due_money" />
|
|
157
|
+
</div>
|
|
158
|
+
</div>
|
|
159
|
+
<div class="form-group col-sm-6">
|
|
160
|
+
<label class="col-sm-4 control-label">未结总金额:</label>
|
|
161
|
+
<div class="col-sm-8">
|
|
162
|
+
<input type="text" class="form-control input_view" style="width: 100%" readonly
|
|
163
|
+
v-model="selectdata.f_surplus_money" />
|
|
164
|
+
</div>
|
|
165
|
+
</div>
|
|
166
|
+
<div class="form-group col-sm-6">
|
|
167
|
+
<label class="col-sm-4 control-label">累计缴费总金额:</label>
|
|
168
|
+
<div class="col-sm-8">
|
|
169
|
+
<input type="text" class="form-control input_view" style="width: 100%" readonly
|
|
170
|
+
v-model="selectdata.f_cumulative_payment_money" />
|
|
171
|
+
</div>
|
|
172
|
+
</div>
|
|
173
|
+
<div class="form-group col-sm-12">
|
|
174
|
+
<label class="col-sm-2 control-label">备注:</label>
|
|
175
|
+
<div class="col-sm-10">
|
|
176
|
+
<input type="text" class="form-control input_view" style="width: 100%"
|
|
177
|
+
v-model="charge.f_charge_remarks" />
|
|
178
|
+
</div>
|
|
179
|
+
</div>
|
|
180
|
+
<div class="form-group col-sm-6">
|
|
181
|
+
<label class="col-sm-4 control-label">购货单位识别号:</label>
|
|
182
|
+
<div class="col-sm-8">
|
|
183
|
+
<input type="text" class="form-control input_view" style="width: 100%"
|
|
184
|
+
v-model="charge.f_taxpayer_id" :value="selectdata.f_taxpayer_id" />
|
|
185
|
+
</div>
|
|
186
|
+
</div>
|
|
187
|
+
<div class="form-group col-sm-6" :class="[$v.f_paper_name.required ? 'has-error' : '']">
|
|
188
|
+
<label class="col-sm-4 control-label">购货单位名称:</label>
|
|
189
|
+
<div class="col-sm-8">
|
|
190
|
+
<input type="text" class="form-control input_view" style="width: 100%"
|
|
191
|
+
v-validate:f_paper_name = "['required']"
|
|
192
|
+
v-model="charge.f_paper_name" :value="selectdata.f_paper_name" />
|
|
193
|
+
</div>
|
|
194
|
+
</div>
|
|
195
|
+
<div class="form-group col-sm-6">
|
|
196
|
+
<label class="col-sm-4 control-label">购货单位银行账号:</label>
|
|
197
|
+
<div class="col-sm-8">
|
|
198
|
+
<input type="text" class="form-control input_view" style="width: 100%"
|
|
199
|
+
v-model="charge.f_paper_account" :value="selectdata.f_paper_account" />
|
|
200
|
+
</div>
|
|
201
|
+
</div>
|
|
202
|
+
<div class="form-group col-sm-6">
|
|
203
|
+
<label class="col-sm-4 control-label">购货单位地址电话:</label>
|
|
204
|
+
<div class="col-sm-8">
|
|
205
|
+
<input type="text" class="form-control input_view" style="width: 100%"
|
|
206
|
+
v-model="charge.f_address_phone" :value="selectdata.f_address_phone" />
|
|
207
|
+
</div>
|
|
208
|
+
</div>
|
|
209
|
+
<div class="form-group col-sm-12">
|
|
210
|
+
<label class="col-sm-2 control-label">发票备注:</label>
|
|
211
|
+
<div class="col-sm-10">
|
|
212
|
+
<input type="text" class="form-control input_view" style="width: 100%"
|
|
213
|
+
v-model="charge.f_bill_remarks" />
|
|
214
|
+
</div>
|
|
215
|
+
</div>
|
|
216
|
+
|
|
217
|
+
|
|
218
|
+
</article>
|
|
219
|
+
<footer slot="modal-footer" class="modal-footer">
|
|
220
|
+
<button type="button" class="btn btn-primary" :disabled='!$v.valid' @click="saveCharge()">新增收费</button>
|
|
221
|
+
</footer>
|
|
222
|
+
</modal>
|
|
223
|
+
</validator>
|
|
224
|
+
|
|
225
|
+
<modal v-if="showInvalid" :show.sync="showInvalid" v-ref:modal :backdrop="false" title="作废收费">
|
|
226
|
+
<header slot="modal-header" class="modal-header">
|
|
227
|
+
<button type="button" class="close" @click="closeModal"><span>×</span></button>
|
|
228
|
+
<h4 class="modal-title">作废收费</h4>
|
|
229
|
+
</header>
|
|
230
|
+
<article slot="modal-body" class="modal-body clearfix">
|
|
231
|
+
<div class="form-group col-sm-12" v-if="false">
|
|
232
|
+
<label class="col-sm-2 control-label">缴费地址:</label>
|
|
233
|
+
<div class="col-sm-10">
|
|
234
|
+
<input type="text"
|
|
235
|
+
class="form-control input_view"
|
|
236
|
+
style="width: 100%"
|
|
237
|
+
readonly
|
|
238
|
+
v-model="charge.f_useraddres" />
|
|
239
|
+
</div>
|
|
240
|
+
</div>
|
|
241
|
+
<div class="form-group col-sm-12">
|
|
242
|
+
<label class="col-sm-2 control-label">收费金额:</label>
|
|
243
|
+
<div class="col-sm-10">
|
|
244
|
+
<input type="text"
|
|
245
|
+
class="form-control input_view"
|
|
246
|
+
style="width: 100%"
|
|
247
|
+
readonly
|
|
248
|
+
v-model="charge.f_charge_money" />
|
|
249
|
+
</div>
|
|
250
|
+
</div>
|
|
251
|
+
<div class="form-group col-sm-12">
|
|
252
|
+
<label class="col-sm-2 control-label">付款方式:</label>
|
|
253
|
+
<div class="col-sm-10">
|
|
254
|
+
<input type="text"
|
|
255
|
+
class="form-control input_view"
|
|
256
|
+
style="width: 100%"
|
|
257
|
+
readonly
|
|
258
|
+
v-model="charge.f_payment_method" />
|
|
259
|
+
</div>
|
|
260
|
+
</div>
|
|
261
|
+
<div class="form-group col-sm-12">
|
|
262
|
+
<label class="col-sm-2 control-label">金额大写:</label>
|
|
263
|
+
<div class="col-sm-10">
|
|
264
|
+
<input type="text"
|
|
265
|
+
class="form-control input_view"
|
|
266
|
+
style="width: 100%"
|
|
267
|
+
readonly
|
|
268
|
+
v-model="charge.f_amount_words" />
|
|
269
|
+
</div>
|
|
270
|
+
</div>
|
|
271
|
+
<div class="form-group col-sm-12">
|
|
272
|
+
<label class="col-sm-2 control-label">收费人员:</label>
|
|
273
|
+
<div class="col-sm-10">
|
|
274
|
+
<input type="text"
|
|
275
|
+
class="form-control input_view"
|
|
276
|
+
style="width: 100%"
|
|
277
|
+
readonly
|
|
278
|
+
v-model="charge.f_charge_collectors" />
|
|
279
|
+
</div>
|
|
280
|
+
</div>
|
|
281
|
+
<div class="form-group col-sm-12" :class="charge.f_void_remarks ? '':'has-error'">
|
|
282
|
+
<label class="col-sm-2 control-label">作废原因:</label>
|
|
283
|
+
<div class="col-sm-10">
|
|
284
|
+
<input type="text"
|
|
285
|
+
class="form-control input_view"
|
|
286
|
+
style="width: 100%"
|
|
287
|
+
v-model="charge.f_void_remarks" />
|
|
288
|
+
</div>
|
|
289
|
+
</div>
|
|
290
|
+
</article>
|
|
291
|
+
<footer slot="modal-footer" class="modal-footer">
|
|
292
|
+
<button type="button" class="btn btn-primary" :disabled="!charge.f_void_remarks" @click="invalidApplyCharge()">确认作废</button>
|
|
293
|
+
</footer>
|
|
294
|
+
</modal>
|
|
295
|
+
|
|
296
|
+
<modal v-if="showPrint" :show.sync="showPrint" v-ref:modal :large="true" :backdrop="false">
|
|
297
|
+
<header slot="modal-header" class="modal-header">
|
|
298
|
+
<button type="button" class="close" @click="$dispatch('breakControl', this.selectdata)"><span>×</span></button>
|
|
299
|
+
<h4 class="modal-title">票据信息</h4>
|
|
300
|
+
</header>
|
|
301
|
+
<article slot="modal-body" class="modal-body clearfix">
|
|
302
|
+
<iframe width="100%" height="500px" :src="charge.f_bill_url" v-if="charge.f_bill_url"></iframe>
|
|
303
|
+
</article>
|
|
304
|
+
<footer slot="modal-footer" class="modal-footer">
|
|
305
|
+
</footer>
|
|
306
|
+
</modal>
|
|
307
|
+
</div>
|
|
308
|
+
</template>
|
|
309
|
+
<script>
|
|
310
|
+
import {PagedList} from 'vue-client'
|
|
311
|
+
import {HttpResetClass} from 'vue-client'
|
|
312
|
+
import Vue from 'vue'
|
|
313
|
+
import {isEmpty} from '../../../Util'
|
|
314
|
+
|
|
315
|
+
export default {
|
|
316
|
+
title: '收费管理',
|
|
317
|
+
props: {
|
|
318
|
+
selectdata: {
|
|
319
|
+
type: Object
|
|
320
|
+
},
|
|
321
|
+
mark: {
|
|
322
|
+
type: Number,
|
|
323
|
+
default: 0
|
|
324
|
+
}
|
|
325
|
+
},
|
|
326
|
+
data () {
|
|
327
|
+
return {
|
|
328
|
+
showCharge: false, // 收费明细
|
|
329
|
+
showInvalid: false, // 作废
|
|
330
|
+
showPrint: false, // 打印
|
|
331
|
+
model: {
|
|
332
|
+
data: null
|
|
333
|
+
}, // 记录
|
|
334
|
+
charge: {
|
|
335
|
+
|
|
336
|
+
}
|
|
337
|
+
}
|
|
338
|
+
},
|
|
339
|
+
ready () {
|
|
340
|
+
this.search()
|
|
341
|
+
},
|
|
342
|
+
methods: {
|
|
343
|
+
|
|
344
|
+
async invalidApplyCharge() {
|
|
345
|
+
|
|
346
|
+
let http = new HttpResetClass()
|
|
347
|
+
let data = {
|
|
348
|
+
apply: this.selectdata,
|
|
349
|
+
user: this.$login.f,
|
|
350
|
+
charge: this.charge
|
|
351
|
+
}
|
|
352
|
+
let res = await http.load('POST', 'rs/logic/invalidApplyCharge', {data:data}, {
|
|
353
|
+
resolveMsg: null,
|
|
354
|
+
rejectMsg: '作废失败!!!'
|
|
355
|
+
})
|
|
356
|
+
this.selectdata = res.data
|
|
357
|
+
|
|
358
|
+
this.$dispatch('breakControl', this.selectdata)
|
|
359
|
+
},
|
|
360
|
+
// 打开作废收费
|
|
361
|
+
showInvalidModal(row) {
|
|
362
|
+
this.charge = row
|
|
363
|
+
this.showInvalid = true
|
|
364
|
+
},
|
|
365
|
+
// 查看发票
|
|
366
|
+
showPrintModal(row, type) {
|
|
367
|
+
this.charge = row
|
|
368
|
+
|
|
369
|
+
this.showPrint = true
|
|
370
|
+
},
|
|
371
|
+
// 开票
|
|
372
|
+
async openBill (charge) {
|
|
373
|
+
this.charge = charge
|
|
374
|
+
let data = null
|
|
375
|
+
let res = null
|
|
376
|
+
|
|
377
|
+
let http = new HttpResetClass()
|
|
378
|
+
|
|
379
|
+
if (isEmpty(this.charge.f_bill_id)) {
|
|
380
|
+
data = {
|
|
381
|
+
id: this.charge.id,
|
|
382
|
+
charge_type: '报装收费'
|
|
383
|
+
}
|
|
384
|
+
res = await http.load('POST', 'rs/logic/bjEticketCharge', {data:data}, {
|
|
385
|
+
resolveMsg: null,
|
|
386
|
+
rejectMsg: '开票失败!!!'
|
|
387
|
+
})
|
|
388
|
+
this.charge.f_bill_id = res.data
|
|
389
|
+
}
|
|
390
|
+
|
|
391
|
+
data = {
|
|
392
|
+
id: this.charge.f_bill_id,
|
|
393
|
+
f_sell_id: this.charge.id
|
|
394
|
+
}
|
|
395
|
+
try {
|
|
396
|
+
res = await http.load('POST', 'rs/logic/bjOpenEticket', {data:data}, {
|
|
397
|
+
resolveMsg: null,
|
|
398
|
+
rejectMsg: '开票失败!!!'
|
|
399
|
+
})
|
|
400
|
+
|
|
401
|
+
// res.data.f_bill_url = 'https://dlj.51fapiao.cn/dlj/v7/de4c9b985021111ef1c722c2914e34d9273291'
|
|
402
|
+
|
|
403
|
+
if (res.data.f_bill_state !== '开票成功') {
|
|
404
|
+
throw '开票失败!!!'
|
|
405
|
+
}
|
|
406
|
+
this.charge.f_bill_state = res.data.f_bill_state
|
|
407
|
+
this.charge.f_bill_url = res.data.f_bill_url
|
|
408
|
+
|
|
409
|
+
this.showPrint = true
|
|
410
|
+
} catch (e) {
|
|
411
|
+
console.error(e)
|
|
412
|
+
this.charge.f_bill_state = '开票失败'
|
|
413
|
+
|
|
414
|
+
data = {
|
|
415
|
+
id: this.charge.id
|
|
416
|
+
}
|
|
417
|
+
res = await http.load('POST', 'rs/logic/updateChargeBill', {data:data}, {
|
|
418
|
+
resolveMsg: null,
|
|
419
|
+
rejectMsg: '收费信息更新失败!!!'
|
|
420
|
+
})
|
|
421
|
+
|
|
422
|
+
throw e
|
|
423
|
+
}
|
|
424
|
+
},
|
|
425
|
+
// 新增收费
|
|
426
|
+
async saveCharge() {
|
|
427
|
+
let http = new HttpResetClass()
|
|
428
|
+
let data = {
|
|
429
|
+
apply: this.selectdata,
|
|
430
|
+
user: this.$login.f,
|
|
431
|
+
charge: this.charge
|
|
432
|
+
}
|
|
433
|
+
|
|
434
|
+
let res = await http.load('POST', 'rs/logic/addApplyChargeRecord', {data:data}, {
|
|
435
|
+
resolveMsg: null,
|
|
436
|
+
rejectMsg: '缴费失败!!!'
|
|
437
|
+
})
|
|
438
|
+
|
|
439
|
+
this.charge = res.data
|
|
440
|
+
|
|
441
|
+
this.showCharge = false
|
|
442
|
+
|
|
443
|
+
try {
|
|
444
|
+
await this.openBill(this.charge)
|
|
445
|
+
} catch (e) {
|
|
446
|
+
this.$dispatch('breakControl', this.selectdata)
|
|
447
|
+
}
|
|
448
|
+
|
|
449
|
+
},
|
|
450
|
+
moneyChange () {
|
|
451
|
+
if (isEmpty(this.charge.f_charge_money) || Number(this.charge.f_charge_money) === 0) {
|
|
452
|
+
this.$showAlert('单笔收费不能为0元!!!', 'warning', 3000)
|
|
453
|
+
this.charge.f_charge_money = null
|
|
454
|
+
return
|
|
455
|
+
}
|
|
456
|
+
if (Number(this.charge.f_charge_money) > Number(this.selectdata.f_surplus_money)) {
|
|
457
|
+
this.$showAlert('单笔收费不能超过未交总金额!!!', 'warning', 3000)
|
|
458
|
+
this.charge.f_charge_money = null
|
|
459
|
+
return
|
|
460
|
+
}
|
|
461
|
+
},
|
|
462
|
+
// 金额转大写
|
|
463
|
+
handleInput(e) {
|
|
464
|
+
// 通过正则过滤小数点后两位
|
|
465
|
+
e.target.value = (e.target.value.match(/^\d*(\.?\d{0,2})/g)[0]) || null
|
|
466
|
+
this.charge.f_amount_words = this.smalltoBIG(e.target.value)
|
|
467
|
+
},
|
|
468
|
+
// 金额转大写
|
|
469
|
+
smalltoBIG(n) {
|
|
470
|
+
let fraction = ['角', '分'];
|
|
471
|
+
let digit = ['零', '壹', '贰', '叁', '肆', '伍', '陆', '柒', '捌', '玖'];
|
|
472
|
+
let unit = [['元', '万', '亿'], ['', '拾', '佰', '仟']];
|
|
473
|
+
let head = n < 0 ? '欠' : '';
|
|
474
|
+
n = Math.abs(n);
|
|
475
|
+
|
|
476
|
+
let s = '';
|
|
477
|
+
|
|
478
|
+
for (var i = 0; i < fraction.length; i++) {
|
|
479
|
+
s += (digit[Math.floor(n * 10 * Math.pow(10, i)) % 10] + fraction[i]).replace(/零./, '');
|
|
480
|
+
}
|
|
481
|
+
s = s || '整';
|
|
482
|
+
n = Math.floor(n);
|
|
483
|
+
|
|
484
|
+
for (var i = 0; i < unit[0].length && n > 0; i++) {
|
|
485
|
+
let p = '';
|
|
486
|
+
for (var j = 0; j < unit[1].length && n > 0; j++) {
|
|
487
|
+
p = digit[n % 10] + unit[1][j] + p;
|
|
488
|
+
n = Math.floor(n / 10);
|
|
489
|
+
}
|
|
490
|
+
s = p.replace(/(零.)*零$/, '').replace(/^$/, '零') + unit[0][i] + s;
|
|
491
|
+
}
|
|
492
|
+
return head + s.replace(/(零.)*零元/, '元').replace(/(零.)+/g, '零').replace(/^整$/, '零元整')
|
|
493
|
+
},
|
|
494
|
+
async showChargeModal() {
|
|
495
|
+
this.showCharge = true
|
|
496
|
+
},
|
|
497
|
+
async search () {
|
|
498
|
+
let http = new HttpResetClass()
|
|
499
|
+
let data = {
|
|
500
|
+
f_process_id: this.selectdata.f_process_id
|
|
501
|
+
}
|
|
502
|
+
let res = await http.load('POST', 'rs/sql/getApplyChargeRecord', {data:data}, {
|
|
503
|
+
resolveMsg: null,
|
|
504
|
+
rejectMsg: '收费记录查询失败!!!'
|
|
505
|
+
})
|
|
506
|
+
this.model.data = res.data
|
|
507
|
+
},
|
|
508
|
+
// 关闭对话框
|
|
509
|
+
closeModal() {
|
|
510
|
+
this.showCharge = false
|
|
511
|
+
this.showInvalid = false
|
|
512
|
+
this.showPrint = false
|
|
513
|
+
this.charge = {}
|
|
514
|
+
this.search()
|
|
515
|
+
}
|
|
516
|
+
},
|
|
517
|
+
events: {
|
|
518
|
+
},
|
|
519
|
+
computed: {
|
|
520
|
+
billStyleList () {
|
|
521
|
+
return this.$appdata.getParam("打印格式")
|
|
522
|
+
},
|
|
523
|
+
paymentMethod() {
|
|
524
|
+
return this.$appdata.getParam("付款方式")
|
|
525
|
+
},
|
|
526
|
+
paymentTerm() {
|
|
527
|
+
return this.$appdata.getParam("收费项目")
|
|
528
|
+
}
|
|
529
|
+
},
|
|
530
|
+
watch: {
|
|
531
|
+
}
|
|
532
|
+
}
|
|
533
|
+
</script>
|
|
534
|
+
<style scoped>
|
|
535
|
+
.textNoLineBreak {
|
|
536
|
+
white-space: nowrap;
|
|
537
|
+
}
|
|
538
|
+
.head-but{
|
|
539
|
+
margin-left: 5px;
|
|
540
|
+
height: 34px;
|
|
541
|
+
/*background-color: #6aa6e2;*/
|
|
542
|
+
border-radius: 4px;
|
|
543
|
+
font-family: PingFang;
|
|
544
|
+
color: #ffffff;
|
|
545
|
+
}
|
|
546
|
+
</style>
|