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
|
@@ -0,0 +1,360 @@
|
|
|
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">
|
|
10
|
+
<button
|
|
11
|
+
type="button"
|
|
12
|
+
class="btn btn-info head-but"
|
|
13
|
+
@click="$parent.$parent.openDevicesModal()"
|
|
14
|
+
:disabled="$parent.$parent.mark === 1"
|
|
15
|
+
>添加</button>
|
|
16
|
+
</th>
|
|
17
|
+
</tr>
|
|
18
|
+
</template>
|
|
19
|
+
<template partial='body'>
|
|
20
|
+
<tr>
|
|
21
|
+
<td style="text-align: center;">
|
|
22
|
+
<nobr>{{$index+1}}</nobr>
|
|
23
|
+
</td>
|
|
24
|
+
<td style="text-align: center;">
|
|
25
|
+
<nobr>{{row.f_userinfo_id}}</nobr>
|
|
26
|
+
</td>
|
|
27
|
+
<td style="text-align: center;">
|
|
28
|
+
<nobr>{{row.amount}}</nobr>
|
|
29
|
+
</td>
|
|
30
|
+
<td style="text-align: center;">
|
|
31
|
+
<nobr>
|
|
32
|
+
<button
|
|
33
|
+
type="button"
|
|
34
|
+
name="button"
|
|
35
|
+
class="btn btn-link"
|
|
36
|
+
@click="$parent.$parent.openDevicesModal(row)"
|
|
37
|
+
>
|
|
38
|
+
{{$parent.$parent.mark === 1 ? '查看' : '修正'}}
|
|
39
|
+
</button>
|
|
40
|
+
<!-- <button-->
|
|
41
|
+
<!-- type="button" name="button" class="btn btn-link"-->
|
|
42
|
+
<!-- @click="$parent.$parent.deleteUserinfo(row)"-->
|
|
43
|
+
<!-- v-if="$parent.$parent.showDeleteUserInfo"-->
|
|
44
|
+
<!-- :disabled="$parent.$parent.mark === 1"-->
|
|
45
|
+
<!-- >-->
|
|
46
|
+
<!-- 删除-->
|
|
47
|
+
<!-- </button>-->
|
|
48
|
+
</nobr>
|
|
49
|
+
</td>
|
|
50
|
+
</tr>
|
|
51
|
+
</template>
|
|
52
|
+
</data-grid>
|
|
53
|
+
|
|
54
|
+
|
|
55
|
+
<modal v-if="showDevices" :show.sync="showDevices" v-ref:modal :large="true" :backdrop="false" title="表具设备信息">
|
|
56
|
+
<header slot="modal-header" class="modal-header">
|
|
57
|
+
<button type="button" class="close" @click="closeDevices"><span>×</span></button>
|
|
58
|
+
<h4 class="modal-title">表具设备信息</h4>
|
|
59
|
+
</header>
|
|
60
|
+
<article slot="modal-body" class="modal-body clearfix">
|
|
61
|
+
<div v-for="(i, item) in devicesinfo" class="form-group col-sm-12 panel panel-info">
|
|
62
|
+
<div class="panel-heading head col-sm-12" style="background-color: #e8f4ff;margin-bottom: 10px">
|
|
63
|
+
<div class="col-sm-6 text-left">设备{{$index+1}}信息</div>
|
|
64
|
+
<div class="col-sm-6 text-right"><button
|
|
65
|
+
class="button_delete button_spacing"
|
|
66
|
+
v-if="!item.id"
|
|
67
|
+
@click.prevent="deleteDevicesinfo(i)"
|
|
68
|
+
>删除</button></div>
|
|
69
|
+
</div>
|
|
70
|
+
<div class="form-group col-sm-6" :class="[!item.f_devices_type ? 'has-error' : '']">
|
|
71
|
+
<label class="col-sm-4 control-label">设备类型:</label>
|
|
72
|
+
<div class="col-sm-8">
|
|
73
|
+
<input-select
|
|
74
|
+
class="select select_list"
|
|
75
|
+
:value.sync="item.f_devices_type"
|
|
76
|
+
v-model="item.f_devices_type"
|
|
77
|
+
:options="devicesType"
|
|
78
|
+
:disable="mark === 1"
|
|
79
|
+
:valueSingle="true"></input-select>
|
|
80
|
+
</div>
|
|
81
|
+
</div>
|
|
82
|
+
<div class="form-group col-sm-6">
|
|
83
|
+
<label class="col-sm-4 control-label">设备编号:</label>
|
|
84
|
+
<div class="col-sm-8">
|
|
85
|
+
<input class="form-control input_view" style=""
|
|
86
|
+
placeholder="设备编号"
|
|
87
|
+
v-model="item.f_devices_no"
|
|
88
|
+
:value="item.f_devices_no"
|
|
89
|
+
:readonly="mark === 1"/>
|
|
90
|
+
</div>
|
|
91
|
+
</div>
|
|
92
|
+
<div class="form-group col-sm-6">
|
|
93
|
+
<label class="col-sm-4 control-label">设备品牌:</label>
|
|
94
|
+
<div class="col-sm-8">
|
|
95
|
+
<input class="form-control input_view" style=""
|
|
96
|
+
placeholder="设备品牌"
|
|
97
|
+
v-model="item.f_brand"
|
|
98
|
+
:value="item.f_brand"
|
|
99
|
+
:readonly="mark === 1"/>
|
|
100
|
+
</div>
|
|
101
|
+
</div>
|
|
102
|
+
<div class="form-group col-sm-6">
|
|
103
|
+
<label class="col-sm-4 control-label">设备型号:</label>
|
|
104
|
+
<div class="col-sm-8">
|
|
105
|
+
<input class="form-control input_view" style=""
|
|
106
|
+
placeholder="设备型号"
|
|
107
|
+
v-model="item.f_devices_model"
|
|
108
|
+
:value="item.f_devices_model"
|
|
109
|
+
:readonly="mark === 1"/>
|
|
110
|
+
</div>
|
|
111
|
+
</div>
|
|
112
|
+
<div class="form-group col-sm-6" :class="[!item.f_devices_num ? 'has-error' : '']">
|
|
113
|
+
<label class="col-sm-4 control-label">设备数量:</label>
|
|
114
|
+
<div class="col-sm-8">
|
|
115
|
+
<input class="form-control input_view" style="" type="number"
|
|
116
|
+
placeholder="设备数量"
|
|
117
|
+
v-model="item.f_devices_num"
|
|
118
|
+
:value="item.f_devices_num"
|
|
119
|
+
:readonly="mark === 1"/>
|
|
120
|
+
</div>
|
|
121
|
+
</div>
|
|
122
|
+
<div class="form-group col-sm-6">
|
|
123
|
+
<label class="col-sm-4 control-label">设备功率:</label>
|
|
124
|
+
<div class="col-sm-8">
|
|
125
|
+
<input class="form-control input_view" style=""
|
|
126
|
+
placeholder="设备功率"
|
|
127
|
+
v-model="item.f_devices_tonnage"
|
|
128
|
+
:value="item.f_devices_tonnage"
|
|
129
|
+
:readonly="mark === 1"/>
|
|
130
|
+
</div>
|
|
131
|
+
</div>
|
|
132
|
+
<div class="form-group col-sm-6">
|
|
133
|
+
<label class="col-sm-4 control-label">安装日期:</label>
|
|
134
|
+
<div class="col-sm-8">
|
|
135
|
+
<input class="form-control input_view" style=""
|
|
136
|
+
placeholder="安装日期"
|
|
137
|
+
v-model="item.f_install_date"
|
|
138
|
+
:value="installdate(item.f_input_date)"
|
|
139
|
+
readonly/>
|
|
140
|
+
</div>
|
|
141
|
+
</div>
|
|
142
|
+
<div class="form-group col-sm-6" :class="[item.f_devices_tonnage && !item.f_devices_tonnage_unit ? 'has-error' : '']">
|
|
143
|
+
<label class="col-sm-4 control-label">功率单位:</label>
|
|
144
|
+
<div class="col-sm-8">
|
|
145
|
+
<input class="form-control input_view" style=""
|
|
146
|
+
placeholder="功率单位"
|
|
147
|
+
v-model="item.f_devices_tonnage_unit"
|
|
148
|
+
:value="item.f_devices_tonnage_unit"
|
|
149
|
+
:readonly="mark === 1"/>
|
|
150
|
+
</div>
|
|
151
|
+
</div>
|
|
152
|
+
</div>
|
|
153
|
+
|
|
154
|
+
</article>
|
|
155
|
+
<footer slot="modal-footer" class="modal-footer">
|
|
156
|
+
<template v-if="mark !== 1">
|
|
157
|
+
<button type="button" class="btn btn-primary" @click="pushDevice()">添加设备</button>
|
|
158
|
+
<button type="button" class="btn btn-primary" @click="addDevice(device)" :disabled="disabledBut">确认</button>
|
|
159
|
+
</template>
|
|
160
|
+
</footer>
|
|
161
|
+
</modal>
|
|
162
|
+
</div>
|
|
163
|
+
</template>
|
|
164
|
+
<script>
|
|
165
|
+
import {getNowDate,isEmpty} from '../../../Util'
|
|
166
|
+
import {PagedList} from 'vue-client'
|
|
167
|
+
import Vue from 'vue'
|
|
168
|
+
import {HttpResetClass} from 'vue-client'
|
|
169
|
+
// Date格式化
|
|
170
|
+
Date.prototype.Format = function (fmt) {
|
|
171
|
+
var o = {
|
|
172
|
+
'M+': this.getMonth() + 1, // 月份
|
|
173
|
+
'd+': this.getDate(), // 日
|
|
174
|
+
'H+': this.getHours(), // 小时
|
|
175
|
+
'm+': this.getMinutes(), // 分
|
|
176
|
+
's+': this.getSeconds(), // 秒
|
|
177
|
+
'q+': Math.floor((this.getMonth() + 3) / 3), // 季度
|
|
178
|
+
'S': this.getMilliseconds() // 毫秒
|
|
179
|
+
}
|
|
180
|
+
if (/(y+)/.test(fmt)) fmt = fmt.replace(RegExp.$1, (this.getFullYear() + '').substr(4 - RegExp.$1.length))
|
|
181
|
+
for (var k in o) {
|
|
182
|
+
if (new RegExp('(' + k + ')').test(fmt)) fmt = fmt.replace(RegExp.$1, (RegExp.$1.length === 1) ? (o[k]) : (('00' + o[k]).substr(('' + o[k]).length)))
|
|
183
|
+
}
|
|
184
|
+
return fmt
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
export default {
|
|
188
|
+
title: '设备管理',
|
|
189
|
+
props: {
|
|
190
|
+
selectdata: {
|
|
191
|
+
type: Object
|
|
192
|
+
},
|
|
193
|
+
mark: {
|
|
194
|
+
type: Number,
|
|
195
|
+
default: 0
|
|
196
|
+
}
|
|
197
|
+
},
|
|
198
|
+
data () {
|
|
199
|
+
return {
|
|
200
|
+
model: {
|
|
201
|
+
data: null
|
|
202
|
+
},
|
|
203
|
+
devicesinfo: [],
|
|
204
|
+
device: '',
|
|
205
|
+
showDevices: false
|
|
206
|
+
}
|
|
207
|
+
},
|
|
208
|
+
ready () {
|
|
209
|
+
this.search()
|
|
210
|
+
},
|
|
211
|
+
methods: {
|
|
212
|
+
async deleteUserinfo (row) {
|
|
213
|
+
let res = await this.$showMessage('此操作不可撤回,您确定要删除这条记录吗?')
|
|
214
|
+
if (res === 'cancel') {
|
|
215
|
+
return
|
|
216
|
+
}
|
|
217
|
+
let data = {
|
|
218
|
+
userinfo: row,
|
|
219
|
+
selectdata: this.selectdata
|
|
220
|
+
}
|
|
221
|
+
res = await this.$resetpost('rs/logic/applyDeleteUserinfo', {data:data}, {
|
|
222
|
+
resolveMsg: null,
|
|
223
|
+
rejectMsg: '删除失败!!!'
|
|
224
|
+
})
|
|
225
|
+
|
|
226
|
+
this.$dispatch('breakControl', this.selectdata)
|
|
227
|
+
},
|
|
228
|
+
deleteDevicesinfo (index) {
|
|
229
|
+
this.devicesinfo.splice(index, 1)
|
|
230
|
+
},
|
|
231
|
+
async addDevice (row) {
|
|
232
|
+
let data = {
|
|
233
|
+
selectdata: this.selectdata,
|
|
234
|
+
devicesinfo: this.devicesinfo,
|
|
235
|
+
user: this.$login.f,
|
|
236
|
+
f_userinfo_id:row ? row.f_userinfo_id : ''
|
|
237
|
+
}
|
|
238
|
+
let res = await this.$resetpost(
|
|
239
|
+
`rs/logic/applyAddDevice`,
|
|
240
|
+
{data: data},
|
|
241
|
+
{resolveMsg: null, rejectMsg: '设备添加失败!!!'}
|
|
242
|
+
)
|
|
243
|
+
|
|
244
|
+
this.closeDevices()
|
|
245
|
+
},
|
|
246
|
+
pushDevice () {
|
|
247
|
+
this.devicesinfo.push({})
|
|
248
|
+
},
|
|
249
|
+
async openDevicesModal (row) {
|
|
250
|
+
this.device = ''
|
|
251
|
+
if (row) {
|
|
252
|
+
this.device = row
|
|
253
|
+
let data = {
|
|
254
|
+
tablename: 't_devices',
|
|
255
|
+
condition: `f_userinfo_id = '${row.f_userinfo_id}'`
|
|
256
|
+
}
|
|
257
|
+
let http = new HttpResetClass()
|
|
258
|
+
let res = await http.load(
|
|
259
|
+
'POST',
|
|
260
|
+
`rs/sql/applySingleTable`,
|
|
261
|
+
{data: data},
|
|
262
|
+
{resolveMsg: null, rejectMsg: '设备查询失败!!!'}
|
|
263
|
+
)
|
|
264
|
+
this.devicesinfo = res.data
|
|
265
|
+
} else {
|
|
266
|
+
this.pushDevice()
|
|
267
|
+
}
|
|
268
|
+
|
|
269
|
+
this.showDevices = true
|
|
270
|
+
},
|
|
271
|
+
async search () {
|
|
272
|
+
let http = new HttpResetClass()
|
|
273
|
+
let data = {
|
|
274
|
+
condition: `ui.f_process_id = '${this.selectdata.f_process_id}'`
|
|
275
|
+
}
|
|
276
|
+
let res = await http.load('POST', 'rs/sql/getUserInfoDevicesAmount', {data:data}, {
|
|
277
|
+
resolveMsg: null,
|
|
278
|
+
rejectMsg: '获取设备失败!!!'
|
|
279
|
+
})
|
|
280
|
+
this.model.data = res.data
|
|
281
|
+
|
|
282
|
+
// 更改安装处数
|
|
283
|
+
for (const item of this.selectdata.fields) {
|
|
284
|
+
if (item.label === '安装处数') {
|
|
285
|
+
item.value = this.model.data.length
|
|
286
|
+
this.selectdata[item.field] = this.model.data.length
|
|
287
|
+
}
|
|
288
|
+
}
|
|
289
|
+
},
|
|
290
|
+
// 关闭对话框
|
|
291
|
+
closeDevices() {
|
|
292
|
+
this.showDevices = false
|
|
293
|
+
this.devicesinfo = []
|
|
294
|
+
|
|
295
|
+
this.search()
|
|
296
|
+
}
|
|
297
|
+
},
|
|
298
|
+
events: {
|
|
299
|
+
},
|
|
300
|
+
computed: {
|
|
301
|
+
showDeleteUserInfo () {
|
|
302
|
+
return this.selectdata.f_apply_type === '非民用报建' &&
|
|
303
|
+
(this.selectdata.defname === '报建受理' || this.selectdata.defname === '现场勘察')
|
|
304
|
+
},
|
|
305
|
+
disabledBut () {
|
|
306
|
+
let disabledBut = true
|
|
307
|
+
disabledBut = this.devicesinfo.every(item => {
|
|
308
|
+
if (isEmpty(item.f_devices_tonnage)) {
|
|
309
|
+
return !isEmpty(item.f_devices_type) && !isEmpty(item.f_devices_num)
|
|
310
|
+
}
|
|
311
|
+
return !isEmpty(item.f_devices_type) && !isEmpty(item.f_devices_num) && !isEmpty(item.f_devices_tonnage) && !isEmpty(item.f_devices_tonnage_unit)
|
|
312
|
+
})
|
|
313
|
+
return !disabledBut
|
|
314
|
+
},
|
|
315
|
+
// 安装人
|
|
316
|
+
installperson () {
|
|
317
|
+
return function (f_input_person) {
|
|
318
|
+
if (isEmpty(f_input_person)) {
|
|
319
|
+
return this.$login.f.name
|
|
320
|
+
}
|
|
321
|
+
return f_input_person
|
|
322
|
+
}
|
|
323
|
+
},
|
|
324
|
+
installdate() {
|
|
325
|
+
return function (f_install_date) {
|
|
326
|
+
if (isEmpty(f_install_date)) {
|
|
327
|
+
return new Date().Format('yyyy-MM-dd HH:mm:ss')
|
|
328
|
+
}
|
|
329
|
+
return f_install_date
|
|
330
|
+
}
|
|
331
|
+
},
|
|
332
|
+
devicesType() {
|
|
333
|
+
return this.$appdata.getParam("设备类型")
|
|
334
|
+
}
|
|
335
|
+
},
|
|
336
|
+
watch: {
|
|
337
|
+
}
|
|
338
|
+
}
|
|
339
|
+
</script>
|
|
340
|
+
<style scoped>
|
|
341
|
+
.textNoLineBreak {
|
|
342
|
+
white-space: nowrap;
|
|
343
|
+
}
|
|
344
|
+
.input_view{
|
|
345
|
+
background-color: #ffffff;
|
|
346
|
+
border-radius: 2px;
|
|
347
|
+
border: solid 1px #c7c7c7!important;
|
|
348
|
+
color: #333333!important;
|
|
349
|
+
font-size: 15px!important;
|
|
350
|
+
}
|
|
351
|
+
|
|
352
|
+
.input_view[readonly]{
|
|
353
|
+
border: 1px solid #DDD!important;
|
|
354
|
+
color:#ACA899!important;
|
|
355
|
+
}
|
|
356
|
+
.input_view:disabled{
|
|
357
|
+
border: 1px solid #DDD!important;
|
|
358
|
+
color:#ACA899!important;
|
|
359
|
+
}
|
|
360
|
+
</style>
|
|
@@ -0,0 +1,250 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div style="margin-bottom: 20px" class="form-group select-overspread">
|
|
3
|
+
<label class="control-label-justify control-label col-sm-3">选择项目</label>
|
|
4
|
+
<div class="col-sm-10" >
|
|
5
|
+
<button class="button_search button_spacing" type="button" style="width: max-content;position: absolute" @click="openSelect" :disabled="mark === 1">选择</button>
|
|
6
|
+
</div>
|
|
7
|
+
</div>
|
|
8
|
+
|
|
9
|
+
<modal v-if="showselect" :show.sync="showselect" width="80%" title="用户信息" v-ref:modal large backdrop="false">
|
|
10
|
+
<article slot="modal-body" class="modal-body" style="height: 600px!important;">
|
|
11
|
+
<criteria-paged :model="model" v-ref:cp>
|
|
12
|
+
<criteria partial='criteria' @condition-changed='$parent.$parent.searchCondition' v-ref:cri>
|
|
13
|
+
<div novalidate class="form-horizontal select-overspread container-fluid auto" partial>
|
|
14
|
+
<div class="row">
|
|
15
|
+
<div class="form-group col-sm-3">
|
|
16
|
+
<label class="font_normal_body">项目编号:</label>
|
|
17
|
+
<input type="text" style="width:60%" class="input_search" placeholder='项目编号' v-model="model.f_apply_num"
|
|
18
|
+
v-on:keyup.enter="search"
|
|
19
|
+
condition="u.f_apply_num = '{}'">
|
|
20
|
+
</div>
|
|
21
|
+
<div class="form-group col-sm-3">
|
|
22
|
+
<label class="font_normal_body">项目名称:</label>
|
|
23
|
+
<input type="text" style="width:60%" class="input_search" v-model="model.f_entry_name"
|
|
24
|
+
v-on:keyup.enter="search" condition="u.f_entry_name like '%{}%'" placeholder='项目名称'>
|
|
25
|
+
</div>
|
|
26
|
+
<div class="form-group col-sm-3">
|
|
27
|
+
<label class="font_normal_body">客户名称:</label>
|
|
28
|
+
<input type="text" style="width:60%" class="input_search" v-model="model.f_user_name"
|
|
29
|
+
v-on:keyup.enter="search" condition="u.f_user_name = '{}'" placeholder='客户名称'>
|
|
30
|
+
</div>
|
|
31
|
+
|
|
32
|
+
<div class="form-group col-sm-3 button-range">
|
|
33
|
+
<button class="button_search button_spacing" @click.prevent="search" v-el:cx>查询</button>
|
|
34
|
+
<button class="button_clear button_spacing" @click.prevent="$parent.$parent.$parent.clear()">清空</button>
|
|
35
|
+
<div
|
|
36
|
+
:class="{'button_shrink_top':$parent.$parent.$parent.criteriaShow,'button_shrink_bottom':!$parent.$parent.$parent.criteriaShow}"
|
|
37
|
+
@click="$parent.$parent.$parent.criteriaShow = !$parent.$parent.$parent.criteriaShow"
|
|
38
|
+
class="button_spacing"
|
|
39
|
+
style="float: right">
|
|
40
|
+
</div>
|
|
41
|
+
</div>
|
|
42
|
+
</div>
|
|
43
|
+
<div class="row" v-show="$parent.$parent.$parent.criteriaShow">
|
|
44
|
+
<div class="form-group col-sm-3">
|
|
45
|
+
<label class="font_normal_body">电  话:</label>
|
|
46
|
+
<input type="text" style="width:60%" class="input_search" v-model="model.f_phone"
|
|
47
|
+
v-on:keyup.enter="search" condition="u.f_phone like '%{}%'" placeholder='联系电话'>
|
|
48
|
+
</div>
|
|
49
|
+
<div class="form-group col-sm-3">
|
|
50
|
+
<label class="font_normal_body">地  址:</label>
|
|
51
|
+
<input type="text" style="width:60%" class="input_search" v-model="model.f_address"
|
|
52
|
+
v-on:keyup.enter="search" condition="u.f_address like '%{}%'" placeholder='详细地址'>
|
|
53
|
+
</div>
|
|
54
|
+
<div class="form-group col-sm-3">
|
|
55
|
+
<label class="font_normal_body">报建类型:</label>
|
|
56
|
+
<v-select
|
|
57
|
+
v-model="model.f_apply_type"
|
|
58
|
+
placeholder='报建类型'
|
|
59
|
+
condition="u.f_apply_type like '%{}%'"
|
|
60
|
+
:value.sync="model.f_apply_type"
|
|
61
|
+
:options='$parent.$parent.$parent.applyType'
|
|
62
|
+
class="select select_list"
|
|
63
|
+
:value-single="true"
|
|
64
|
+
@change="$parent.$parent.$parent.applyTypeChange()"
|
|
65
|
+
close-on-select ></v-select>
|
|
66
|
+
</div>
|
|
67
|
+
<div class="form-group col-sm-3">
|
|
68
|
+
<label class="font_normal_body">办理环节:</label>
|
|
69
|
+
<v-select
|
|
70
|
+
v-model="model.defname"
|
|
71
|
+
placeholder='办理环节'
|
|
72
|
+
condition="act.defname = '{}'"
|
|
73
|
+
:value.sync="model.defname"
|
|
74
|
+
:options='$parent.$parent.$parent.defnames'
|
|
75
|
+
class="select select_list"
|
|
76
|
+
:value-single="true"
|
|
77
|
+
close-on-select ></v-select>
|
|
78
|
+
</div>
|
|
79
|
+
</div>
|
|
80
|
+
</div>
|
|
81
|
+
</criteria>
|
|
82
|
+
<data-grid :model="model" partial='list' v-ref:grid class="list_area table_sy" style="height: 100%">
|
|
83
|
+
<template partial='head'>
|
|
84
|
+
<tr>
|
|
85
|
+
<th style="white-space: nowrap;">序号</th>
|
|
86
|
+
<th style="white-space: nowrap;">项目编号</th>
|
|
87
|
+
<th style="white-space: nowrap;">项目名称</th>
|
|
88
|
+
<th style="white-space: nowrap;">客户名称</th>
|
|
89
|
+
<th style="white-space: nowrap;">电话</th>
|
|
90
|
+
<th style="white-space: nowrap;">地址</th>
|
|
91
|
+
<th style="white-space: nowrap;">报建类型</th>
|
|
92
|
+
<th style="white-space: nowrap;">办理环节</th>
|
|
93
|
+
<th style="white-space: nowrap;">收费金额</th>
|
|
94
|
+
<th style="white-space: nowrap;">选择</th>
|
|
95
|
+
</tr>
|
|
96
|
+
</template>
|
|
97
|
+
<template partial='body'>
|
|
98
|
+
<tr >
|
|
99
|
+
<td style="text-align: center;">
|
|
100
|
+
<nobr><font>{{$index+1}}</font></nobr>
|
|
101
|
+
</td>
|
|
102
|
+
<td style="text-align: center;">
|
|
103
|
+
<nobr><font>{{ row.f_apply_num }}</font></nobr>
|
|
104
|
+
</td>
|
|
105
|
+
<td style="text-align: center;">
|
|
106
|
+
<nobr><font>{{ row.f_entry_name }}</font></nobr>
|
|
107
|
+
</td>
|
|
108
|
+
<td style="text-align: center;">
|
|
109
|
+
<nobr><font>{{ row.f_user_name }}</font></nobr>
|
|
110
|
+
</td>
|
|
111
|
+
<td style="text-align: center;">
|
|
112
|
+
<nobr><font>{{ row.f_phone }}</font></nobr>
|
|
113
|
+
</td>
|
|
114
|
+
<td style="text-align: center;">
|
|
115
|
+
<nobr><font>{{ row.f_address }}</font></nobr>
|
|
116
|
+
</td>
|
|
117
|
+
<td style="text-align: center;">
|
|
118
|
+
<nobr><font>{{ row.f_apply_type }}</font></nobr>
|
|
119
|
+
</td>
|
|
120
|
+
<td style="text-align: center;">
|
|
121
|
+
<nobr><font>{{ row.defname }}</font></nobr>
|
|
122
|
+
</td>
|
|
123
|
+
<td style="text-align: center;">
|
|
124
|
+
<nobr><font>{{ row.f_cumulative_payment_money }}</font></nobr>
|
|
125
|
+
</td>
|
|
126
|
+
<td style="text-align: center;">
|
|
127
|
+
<nobr><font>
|
|
128
|
+
<button type="button" name="button" class="button_export" @click.prevent="$parent.$parent.$parent.$parent.select(row)">确认选择</button>
|
|
129
|
+
</font></nobr>
|
|
130
|
+
</td>
|
|
131
|
+
</tr>
|
|
132
|
+
</template>
|
|
133
|
+
</data-grid>
|
|
134
|
+
</criteria-paged>
|
|
135
|
+
</article>
|
|
136
|
+
<footer slot="modal-footer" class="modal-footer">
|
|
137
|
+
</footer>
|
|
138
|
+
</modal>
|
|
139
|
+
</template>
|
|
140
|
+
<script>
|
|
141
|
+
import {PagedList} from 'vue-client'
|
|
142
|
+
import Vue from 'vue'
|
|
143
|
+
import {isEmpty} from "../../../Util";
|
|
144
|
+
|
|
145
|
+
export default {
|
|
146
|
+
title: '收费管理',
|
|
147
|
+
props: {
|
|
148
|
+
selectdata: {
|
|
149
|
+
type: Object
|
|
150
|
+
},
|
|
151
|
+
mark: {
|
|
152
|
+
type: Number,
|
|
153
|
+
default: 0
|
|
154
|
+
}
|
|
155
|
+
},
|
|
156
|
+
data () {
|
|
157
|
+
return {
|
|
158
|
+
showselect: false,
|
|
159
|
+
model: new PagedList('rs/sql/supervisory', 20, {
|
|
160
|
+
data: {
|
|
161
|
+
id: this.$login.f.id,
|
|
162
|
+
orgid: this.$login.f.orgid
|
|
163
|
+
}
|
|
164
|
+
}),
|
|
165
|
+
criteriaShow: false,
|
|
166
|
+
defnames: [{label: '全部', value: ''}]
|
|
167
|
+
}
|
|
168
|
+
},
|
|
169
|
+
ready () {
|
|
170
|
+
},
|
|
171
|
+
methods: {
|
|
172
|
+
async applyTypeChange () {
|
|
173
|
+
if (!isEmpty(this.$refs.cp.$refs.cri.model.f_apply_type)) {
|
|
174
|
+
let res = await this.$resetpost('rs/logic/getDefnameByType',
|
|
175
|
+
{ f_apply_type: this.$refs.cp.$refs.cri.model.f_apply_type },
|
|
176
|
+
{resolveMsg: null, rejectMsg: '节点信息获取失败!!!'}
|
|
177
|
+
)
|
|
178
|
+
|
|
179
|
+
this.defnames = [{label: '全部', value: ''}, ...res.data]
|
|
180
|
+
} else {
|
|
181
|
+
this.defnames = [{label: '全部', value: ''}]
|
|
182
|
+
}
|
|
183
|
+
},
|
|
184
|
+
select (row) {
|
|
185
|
+
this.$dispatch('selectApply', row)
|
|
186
|
+
|
|
187
|
+
this.showselect = false
|
|
188
|
+
},
|
|
189
|
+
searchCondition (args) {
|
|
190
|
+
args.condition = `${args.condition} and act.defname != '完工' and act.state = '开始活动' and u.f_apply_type != '退款报建' and u.f_cumulative_payment_money > 0`
|
|
191
|
+
|
|
192
|
+
this.model.search(args.condition, args.model)
|
|
193
|
+
},
|
|
194
|
+
clear () {
|
|
195
|
+
Object.keys(this.$refs.cp.$refs.cri.model).forEach((key) => {
|
|
196
|
+
this.$refs.cp.$refs.cri.model[key] = null
|
|
197
|
+
})
|
|
198
|
+
},
|
|
199
|
+
openSelect () {
|
|
200
|
+
this.showselect = true
|
|
201
|
+
setTimeout(() => {
|
|
202
|
+
this.$refs.cp.$refs.cri.search()
|
|
203
|
+
}, 100)
|
|
204
|
+
}
|
|
205
|
+
},
|
|
206
|
+
events: {
|
|
207
|
+
},
|
|
208
|
+
computed: {
|
|
209
|
+
applyType () {
|
|
210
|
+
return [{label: '全部', value: ''}, ...this.$appdata.getParam('报建类型')]
|
|
211
|
+
}
|
|
212
|
+
},
|
|
213
|
+
watch: {
|
|
214
|
+
}
|
|
215
|
+
}
|
|
216
|
+
</script>
|
|
217
|
+
<style scoped>
|
|
218
|
+
.control-label-justify {
|
|
219
|
+
display: inline-block;
|
|
220
|
+
vertical-align: top;
|
|
221
|
+
width: 110px;
|
|
222
|
+
text-align: justify;
|
|
223
|
+
font-family: PingFang-SC-Bold;
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
.control-label-justify::after {
|
|
227
|
+
content: "";
|
|
228
|
+
display: inline-block;
|
|
229
|
+
width: 100%;
|
|
230
|
+
overflow: hidden;
|
|
231
|
+
height: 0;
|
|
232
|
+
}
|
|
233
|
+
.input_view{
|
|
234
|
+
padding: 8px;
|
|
235
|
+
background-color: #ffffff;
|
|
236
|
+
border-radius: 2px;
|
|
237
|
+
border: solid 1px #c7c7c7!important;
|
|
238
|
+
color: #333333!important;
|
|
239
|
+
font-size: 15px!important;
|
|
240
|
+
}
|
|
241
|
+
|
|
242
|
+
.input_view[readonly]{
|
|
243
|
+
border: 1px solid #DDD!important;
|
|
244
|
+
color:#ACA899!important;
|
|
245
|
+
}
|
|
246
|
+
.input_view:disabled{
|
|
247
|
+
border: 1px solid #DDD!important;
|
|
248
|
+
color:#ACA899!important;
|
|
249
|
+
}
|
|
250
|
+
</style>
|