apply-clients 7.1.37 → 7.1.40
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 +154 -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 +86 -69
- package/src/applyAndroid.js +56 -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 +219 -0
- package/src/components/android/AppTakePic.vue +142 -0
- package/src/components/android/AppUpload.vue +232 -0
- package/src/components/android/Ignition/VentilationIgnition.vue +395 -0
- package/src/components/android/Ignition/VentilationIgnitionHandle.vue +432 -0
- package/src/components/android/Process/AppExplorationUser.vue +352 -0
- package/src/components/android/Process/AppServiceControl.vue +1051 -0
- package/src/components/android/Process/Processes/AppDevicesManagement.vue +336 -0
- package/src/components/android/Process/Processes/AppInstallationDetails.vue +776 -0
- package/src/components/android/Process/Processes/SurveyUserSign.vue +62 -0
- package/src/components/android/Sign/AppSignTask.vue +183 -0
- package/src/components/android/Sign/SignProcess.vue +103 -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/BuildIgnition/BuildIgnition.vue +114 -0
- package/src/components/android/Task/Survey/SurveyTsak.vue +112 -0
- package/src/components/android/Task/UpBuild/UpBuildTsak.vue +95 -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/product/ApplyCharge/ApplyChargeList.vue +141 -62
- package/src/components/product/ApplyCharge/ApplyChargeSearch.vue +2 -2
- package/src/components/product/Function/InstallFunction.vue +131 -147
- package/src/components/product/Function/InstallInfoSelect.vue +140 -105
- package/src/components/product/Function/Service/FunctionServiceControl.vue +323 -148
- package/src/components/product/Ignition/IgnitionDispatch.vue +348 -0
- package/src/components/product/Ignition/IgnitionRecord.vue +308 -0
- package/src/components/product/Onetomany.vue +377 -0
- package/src/components/product/Print/BuildOrder/buildOrderList.vue +288 -0
- package/src/components/product/Print/BuildOrder/printBuildOrder.vue +230 -0
- package/src/components/product/Process/ExplorationSelect.vue +395 -347
- package/src/components/product/Process/ExplorationUser.vue +151 -135
- 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 +619 -311
- 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/satisfactionShow.vue +202 -0
- package/src/components/product/Process/Processes/selectApply.vue +250 -0
- package/src/components/product/Process/Processes/selectUserinfo.vue +231 -0
- package/src/components/product/Process/Processes/supplementalAgreement.vue +182 -181
- package/src/components/product/Process/Service/ServiceControl.vue +1310 -639
- 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 +393 -199
- package/src/components/product/Supervisory/SupervisoryControl.vue +110 -121
- package/src/components/product/Supervisory/SupervisoryList.vue +280 -208
- package/src/components/product/Supervisory/SupervisoryhCart.vue +52 -36
- package/src/components/product/VueUtils/ApplyUpload.vue +67 -52
- 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.50054aa998577d450157.js +0 -2
- package/dist-android/static/0.js +0 -2
- package/dist-android/static/0.js.map +0 -1
- package/dist-android/static/1.0b685d8dcbf4f3a8a5b2.js +0 -1
- package/dist-android/static/1.js +0 -2
- package/dist-android/static/1.js.map +0 -1
- package/dist-android/static/10.2a698c421c0ff5f57336.js +0 -2
- 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.75a39568e320abbddcc2.js +0 -2
- package/dist-android/static/11.js +0 -2
- package/dist-android/static/11.js.map +0 -1
- package/dist-android/static/12.4ac0c584da492acc599d.js +0 -1
- package/dist-android/static/12.js +0 -2
- package/dist-android/static/12.js.map +0 -1
- package/dist-android/static/13.5471bac3b39798923a79.js +0 -1
- package/dist-android/static/13.js +0 -2
- package/dist-android/static/13.js.map +0 -1
- package/dist-android/static/14.ee274728fdeb5107c357.js +0 -1
- package/dist-android/static/14.js +0 -2
- package/dist-android/static/14.js.map +0 -1
- package/dist-android/static/15.a1dc233c1804ede2ba87.js +0 -1
- package/dist-android/static/15.js +0 -2
- package/dist-android/static/15.js.map +0 -1
- package/dist-android/static/16.5081ea8a90d0dacbc748.js +0 -1
- package/dist-android/static/16.js +0 -2
- package/dist-android/static/16.js.map +0 -1
- package/dist-android/static/17.5b5184c9a9337a88d4f9.js +0 -1
- package/dist-android/static/17.js +0 -2
- package/dist-android/static/17.js.map +0 -1
- package/dist-android/static/18.0c99e5cb0de0f76008f6.js +0 -1
- package/dist-android/static/18.js +0 -2
- package/dist-android/static/18.js.map +0 -1
- package/dist-android/static/19.b50c8bf85b8e7fb27e2a.js +0 -1
- package/dist-android/static/19.js +0 -2
- package/dist-android/static/19.js.map +0 -1
- package/dist-android/static/2.16718caad0da13b463a3.js +0 -1
- package/dist-android/static/2.js +0 -2
- package/dist-android/static/2.js.map +0 -1
- package/dist-android/static/20.8f6767f58df1fde18784.js +0 -1
- package/dist-android/static/20.js +0 -2
- package/dist-android/static/20.js.map +0 -1
- package/dist-android/static/21.026f5cbfd90d70d8dd3a.js +0 -1
- package/dist-android/static/21.js +0 -2
- package/dist-android/static/21.js.map +0 -1
- package/dist-android/static/22.4631f8885615e9b6ad6e.js +0 -1
- package/dist-android/static/22.js +0 -2
- package/dist-android/static/22.js.map +0 -1
- package/dist-android/static/23.437b569f91863452daeb.js +0 -1
- package/dist-android/static/23.js +0 -2
- package/dist-android/static/23.js.map +0 -1
- package/dist-android/static/24.f1310985a29496bc5fd8.js +0 -1
- package/dist-android/static/24.js +0 -2
- package/dist-android/static/24.js.map +0 -1
- package/dist-android/static/25.b6dcf8c6d26f44035506.js +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.2185c9e2e7116302e1e1.js +0 -13
- package/dist-android/static/27.js +0 -2
- package/dist-android/static/27.js.map +0 -1
- package/dist-android/static/28.b429eaf351968226c395.js +0 -3
- package/dist-android/static/28.js +0 -2
- package/dist-android/static/28.js.map +0 -1
- package/dist-android/static/29.aed6b18ccda9ca3748ce.js +0 -3
- package/dist-android/static/29.js +0 -2
- package/dist-android/static/29.js.map +0 -1
- package/dist-android/static/3.761de5413a2ed045ab10.js +0 -1
- package/dist-android/static/3.js +0 -2
- package/dist-android/static/3.js.map +0 -1
- package/dist-android/static/30.567f5fbffc0601227294.js +0 -2
- package/dist-android/static/30.js +0 -2
- package/dist-android/static/30.js.map +0 -1
- package/dist-android/static/31.179f87c71c11fd562feb.js +0 -1
- package/dist-android/static/31.js +0 -2
- package/dist-android/static/31.js.map +0 -1
- package/dist-android/static/32.8d45d3f6c5e874582cff.js +0 -1
- package/dist-android/static/32.js +0 -2
- package/dist-android/static/32.js.map +0 -1
- package/dist-android/static/33.32fd8d2f4e6e7b065a5c.js +0 -1
- package/dist-android/static/33.js +0 -2
- package/dist-android/static/33.js.map +0 -1
- package/dist-android/static/34.df47f9984baec20bdf5b.js +0 -1
- package/dist-android/static/34.js +0 -2
- package/dist-android/static/34.js.map +0 -1
- package/dist-android/static/35.5883200f073b546cb1a3.js +0 -1
- package/dist-android/static/35.js +0 -2
- package/dist-android/static/35.js.map +0 -1
- package/dist-android/static/36.477f89087e507526163f.js +0 -1
- package/dist-android/static/36.js +0 -2
- package/dist-android/static/36.js.map +0 -1
- package/dist-android/static/37.b82438692bca848519f6.js +0 -1
- package/dist-android/static/37.js +0 -2
- package/dist-android/static/37.js.map +0 -1
- package/dist-android/static/38.83c950bebdb997be2ef8.js +0 -1
- package/dist-android/static/38.js +0 -2
- package/dist-android/static/38.js.map +0 -1
- package/dist-android/static/39.333e42c6dbabf1bf2706.js +0 -1
- package/dist-android/static/39.js +0 -2
- package/dist-android/static/39.js.map +0 -1
- package/dist-android/static/4.eb190515d001a4e1bebd.js +0 -13
- package/dist-android/static/4.js +0 -2
- package/dist-android/static/4.js.map +0 -1
- package/dist-android/static/40.f6807724af2482375d7c.js +0 -1
- package/dist-android/static/40.js +0 -2
- package/dist-android/static/40.js.map +0 -1
- package/dist-android/static/41.92f39c44002772179f48.js +0 -1
- package/dist-android/static/41.js +0 -2
- package/dist-android/static/41.js.map +0 -1
- package/dist-android/static/42.662a0643f36dc759abc0.js +0 -1
- package/dist-android/static/42.js +0 -2
- package/dist-android/static/42.js.map +0 -1
- package/dist-android/static/43.5b55816aa2ca7b510d72.js +0 -1
- package/dist-android/static/43.js +0 -2
- package/dist-android/static/43.js.map +0 -1
- package/dist-android/static/44.4a6af5dd359e3973dea4.js +0 -1
- package/dist-android/static/44.js +0 -2
- package/dist-android/static/44.js.map +0 -1
- package/dist-android/static/45.d5992c604ad9eb4f40d2.js +0 -1
- package/dist-android/static/45.js +0 -2
- package/dist-android/static/45.js.map +0 -1
- package/dist-android/static/46.aa87912e9361ab053234.js +0 -1
- package/dist-android/static/46.js +0 -2
- package/dist-android/static/46.js.map +0 -1
- package/dist-android/static/47.b9efca55c1ea582c59e7.js +0 -2
- package/dist-android/static/47.js +0 -2
- package/dist-android/static/47.js.map +0 -1
- package/dist-android/static/48.8902ce91c715d61c63ef.js +0 -1
- package/dist-android/static/48.js +0 -2
- package/dist-android/static/48.js.map +0 -1
- package/dist-android/static/49.dd2591b071fe1901d2f2.js +0 -2
- package/dist-android/static/49.js +0 -2
- package/dist-android/static/49.js.map +0 -1
- package/dist-android/static/5.304b463f21c8253aa514.js +0 -13
- package/dist-android/static/5.js +0 -2
- package/dist-android/static/5.js.map +0 -1
- package/dist-android/static/50.e49f64d967a7f7350105.js +0 -1
- package/dist-android/static/50.js +0 -2
- package/dist-android/static/50.js.map +0 -1
- package/dist-android/static/51.0d311b6815373c5a3b1b.js +0 -1
- package/dist-android/static/51.js +0 -2
- package/dist-android/static/51.js.map +0 -1
- package/dist-android/static/52.344f9d59bb5cb156380d.js +0 -1
- package/dist-android/static/52.js +0 -2
- package/dist-android/static/52.js.map +0 -1
- package/dist-android/static/53.289984b9a04a7d11ffef.js +0 -1
- package/dist-android/static/53.js +0 -2
- package/dist-android/static/53.js.map +0 -1
- package/dist-android/static/54.5808cc57ddb689577efe.js +0 -1
- package/dist-android/static/54.js +0 -2
- package/dist-android/static/54.js.map +0 -1
- package/dist-android/static/55.9874aac28d0d80b55860.js +0 -1
- package/dist-android/static/55.js +0 -2
- package/dist-android/static/55.js.map +0 -1
- package/dist-android/static/56.babac04ffcc93c5573ed.js +0 -1
- package/dist-android/static/56.js +0 -2
- package/dist-android/static/56.js.map +0 -1
- package/dist-android/static/57.ca9993d9b0137ec93a81.js +0 -1
- package/dist-android/static/57.js +0 -2
- package/dist-android/static/57.js.map +0 -1
- package/dist-android/static/58.be8a5ac661eb638aff79.js +0 -1
- package/dist-android/static/58.js +0 -2
- package/dist-android/static/58.js.map +0 -1
- package/dist-android/static/59.2d0116e8a66e13cbabe2.js +0 -1
- package/dist-android/static/59.js +0 -2
- package/dist-android/static/59.js.map +0 -1
- package/dist-android/static/6.3f10426d99466042d079.js +0 -13
- package/dist-android/static/6.js +0 -2
- package/dist-android/static/6.js.map +0 -1
- package/dist-android/static/60.e60b562292633421a3d7.js +0 -1
- package/dist-android/static/60.js +0 -2
- package/dist-android/static/60.js.map +0 -1
- package/dist-android/static/61.492b25e8e1b66366329b.js +0 -1
- package/dist-android/static/61.js +0 -2
- package/dist-android/static/61.js.map +0 -1
- package/dist-android/static/62.24924f3f6fd5f97975d1.js +0 -1
- package/dist-android/static/62.js +0 -2
- package/dist-android/static/62.js.map +0 -1
- package/dist-android/static/63.7628250218be54b5c52f.js +0 -1
- package/dist-android/static/63.js +0 -2
- package/dist-android/static/63.js.map +0 -1
- package/dist-android/static/64.0c2d7593ebede3d30dc8.js +0 -1
- package/dist-android/static/64.js +0 -2
- package/dist-android/static/64.js.map +0 -1
- package/dist-android/static/65.220dfd6b1dd8e75c9d08.js +0 -1
- package/dist-android/static/65.js +0 -2
- package/dist-android/static/65.js.map +0 -1
- package/dist-android/static/66.da91b8ed2181ced4a4de.js +0 -1
- package/dist-android/static/66.js +0 -2
- package/dist-android/static/66.js.map +0 -1
- package/dist-android/static/67.75a3f13bea3c0ac4bbbe.js +0 -1
- package/dist-android/static/67.js +0 -2
- package/dist-android/static/67.js.map +0 -1
- package/dist-android/static/68.37aa2fd75666d1461dac.js +0 -1
- package/dist-android/static/68.js +0 -2
- package/dist-android/static/68.js.map +0 -1
- package/dist-android/static/69.e6a3e52929239e08b8d3.js +0 -1
- package/dist-android/static/69.js +0 -2
- package/dist-android/static/69.js.map +0 -1
- package/dist-android/static/7.57945431c1f505e425c1.js +0 -13
- package/dist-android/static/7.js +0 -6
- package/dist-android/static/7.js.map +0 -1
- package/dist-android/static/70.945cf028761bd66a2302.js +0 -1
- package/dist-android/static/70.js +0 -2
- package/dist-android/static/70.js.map +0 -1
- package/dist-android/static/71.0ae45dcfc105541b051d.js +0 -1
- package/dist-android/static/71.js +0 -2
- package/dist-android/static/71.js.map +0 -1
- package/dist-android/static/72.d89a35482e9c434d0bd0.js +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.830a99f33590aeb637a3.js +0 -13
- 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.2432be88a7316649f45b.js +0 -12
- 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/appca71cf7af0c441a6b6ff.js +0 -135
- 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/doc.jpg +0 -0
- package/dist-android/static/huangtengbiaozhi.png +0 -0
- package/dist-android/static/images/lefticon//345/215/241/346/234/215/345/212/241/347/256/241/347/220/206.png +0 -0
- package/dist-android/static/images/lefticon//345/221/274/345/217/253/347/263/273/347/273/237.png +0 -0
- package/dist-android/static/images/lefticon//345/224/256/346/260/224/346/224/266/350/264/271.png +0 -0
- package/dist-android/static/images/lefticon//345/233/276/345/261/2023/346/213/267/350/264/2354.png +0 -0
- package/dist-android/static/images/lefticon//345/233/276/345/261/202577.png +0 -0
- package/dist-android/static/images/lefticon//345/233/276/345/261/2028/346/213/267/350/264/23513.png +0 -0
- package/dist-android/static/images/lefticon//345/256/211/346/243/200/346/237/245/347/234/213.png +0 -0
- package/dist-android/static/images/lefticon//345/256/211/346/243/200/350/256/241/345/210/222.png +0 -0
- package/dist-android/static/images/lefticon//345/276/256/344/277/241/346/234/215/345/212/241.png +0 -0
- package/dist-android/static/images/lefticon//346/212/245/345/273/272/347/263/273/347/273/237.png +0 -0
- package/dist-android/static/images/lefticon//346/212/245/350/241/250/346/237/245/350/257/242.png +0 -0
- package/dist-android/static/images/lefticon//346/227/245/345/270/270/347/256/241/347/220/206.png +0 -0
- package/dist-android/static/images/lefticon//346/234/272/350/241/250/347/256/241/347/220/206.png +0 -0
- package/dist-android/static/images/lefticon//346/237/245/350/257/242/345/210/227/350/241/250.png +0 -0
- package/dist-android/static/images/lefticon//346/241/243/346/241/210/347/256/241/347/220/206.png +0 -0
- package/dist-android/static/images/lefticon//347/211/251/350/201/224/347/275/221/350/241/250.png +0 -0
- package/dist-android/static/images/lefticon//347/263/273/347/273/237/347/256/241/347/220/206.png +0 -0
- package/dist-android/static/images/lefticon//347/263/273/347/273/237/350/256/276/347/275/256.png +0 -0
- package/dist-android/static/images/lefticon//347/273/217/350/220/245/347/256/241/346/216/247.png +0 -0
- package/dist-android/static/images/lefticon//347/273/274/345/220/210/344/270/232/345/212/241.png +0 -0
- package/dist-android/static/images/lefticon//347/273/274/345/220/210/346/237/245/350/257/242.png +0 -0
- package/dist-android/static/images/lefticon//350/217/234/345/215/225/344/274/270/347/274/251.png +0 -0
- package/dist-android/static/images/lefticon//351/200/200/345/207/272/347/263/273/347/273/237.png +0 -0
- package/dist-android/static/imgerror.jpg +0 -0
- package/dist-android/static/jingyin.jpg +0 -0
- package/dist-android/static/jsoneditor-icons.svg +0 -893
- 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/newStyle/clear.png +0 -0
- package/dist-android/static/newStyle/fife.png +0 -0
- package/dist-android/static/newStyle/hidden.png +0 -0
- package/dist-android/static/newStyle/label-clear.png +0 -0
- package/dist-android/static/newStyle/left-img.png +0 -0
- package/dist-android/static/newStyle/list_ok.png +0 -0
- package/dist-android/static/newStyle/login-check.png +0 -0
- package/dist-android/static/newStyle/login-con.png +0 -0
- package/dist-android/static/newStyle/login-do.gif +0 -0
- package/dist-android/static/newStyle/login-f.png +0 -0
- package/dist-android/static/newStyle/login-info.png +0 -0
- package/dist-android/static/newStyle/login-left.png +0 -0
- package/dist-android/static/newStyle/login-org.png +0 -0
- package/dist-android/static/newStyle/login-pwd.png +0 -0
- package/dist-android/static/newStyle/login-user.png +0 -0
- package/dist-android/static/newStyle/loginbg.gif +0 -0
- package/dist-android/static/newStyle/loginbg1280.gif +0 -0
- package/dist-android/static/newStyle/loginbg1366.gif +0 -0
- package/dist-android/static/newStyle/setting.png +0 -0
- package/dist-android/static/newStyle/setting1.png +0 -0
- package/dist-android/static/newStyle/shirk.png +0 -0
- package/dist-android/static/newStyle/stretch_bottom.png +0 -0
- package/dist-android/static/newStyle/stretch_left.png +0 -0
- package/dist-android/static/newStyle/stretch_right.png +0 -0
- package/dist-android/static/newStyle/stretch_top.png +0 -0
- package/dist-android/static/newStyle/system-off.png +0 -0
- package/dist-android/static/newmainbg.jpg +0 -0
- package/dist-android/static/pdf.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/270/213/350/275/275/350/256/241/345/210/222.png +0 -0
- package/dist-android/static//344/273/273/345/212/241/346/237/245/350/257/242.png +0 -0
- package/dist-android/static//344/277/241/346/201/257/345/205/254/345/221/212.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/205/254/345/221/212/346/237/245/347/234/213.png +0 -0
- package/dist-android/static//345/206/214/345/206/205/351/241/272/345/272/217/344/277/256/346/224/271.png +0 -0
- package/dist-android/static//345/215/241/350/241/250/345/234/250/347/272/277/346/212/204/350/241/250.png +0 -0
- package/dist-android/static//345/234/250/347/272/277/345/256/211/346/243/200.png +0 -0
- package/dist-android/static//345/234/250/347/272/277/345/267/241/346/243/200.png +0 -0
- package/dist-android/static//345/234/250/347/272/277/346/212/204/350/241/250.png +0 -0
- package/dist-android/static//345/234/250/347/272/277/346/212/242/344/277/256.png +0 -0
- package/dist-android/static//345/234/250/347/272/277/346/212/245/350/243/205.png +0 -0
- package/dist-android/static//345/234/250/347/272/277/346/223/215/344/275/234.png +0 -0
- package/dist-android/static//345/234/250/347/272/277/347/273/264/344/277/256.png +0 -0
- package/dist-android/static//345/234/250/347/272/277/347/274/264/350/264/271.png +0 -0
- package/dist-android/static//345/234/250/347/272/277/351/200/232/346/260/224.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/256/211/346/243/200/345/267/262/345/212/236.png +0 -0
- package/dist-android/static//345/256/211/346/243/200/345/276/205/345/212/236.png +0 -0
- package/dist-android/static//345/256/211/346/243/200/346/212/275/345/215/225.png +0 -0
- package/dist-android/static//345/256/211/350/243/205/344/270/212/344/274/240.png +0 -0
- package/dist-android/static//345/256/211/350/243/205/345/267/262/345/212/236.png +0 -0
- package/dist-android/static//345/256/211/350/243/205/345/276/205/345/212/236.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//345/267/241/346/243/200/344/270/212/344/274/240.png +0 -0
- package/dist-android/static//345/267/241/346/243/200/345/267/262/345/212/236.png +0 -0
- package/dist-android/static//345/274/200/345/205/263/351/230/200.png +0 -0
- package/dist-android/static//345/275/242/347/212/2664.png +0 -0
- package/dist-android/static//346/211/271/351/207/217/346/212/204/350/241/250.png +0 -0
- package/dist-android/static//346/212/204/350/241/250/344/270/212/344/274/240.png +0 -0
- package/dist-android/static//346/212/204/350/241/250/345/267/262/345/212/236.png +0 -0
- package/dist-android/static//346/212/204/350/241/250/345/276/205/345/212/236.png +0 -0
- package/dist-android/static//346/212/204/350/241/250/350/256/260/345/275/225.png +0 -0
- package/dist-android/static//346/212/245/345/273/272/346/234/215/345/212/241.png +0 -0
- package/dist-android/static//346/224/266/350/264/271/346/261/207/346/200/273/350/241/250.png +0 -0
- package/dist-android/static//346/224/266/350/264/271/350/256/260/345/275/225.png +0 -0
- package/dist-android/static//346/227/245/346/212/245/346/237/245/350/257/242.png +0 -0
- package/dist-android/static//346/241/243/346/241/210/344/277/256/346/224/271.png +0 -0
- package/dist-android/static//346/265/201/347/250/213/344/270/232/345/212/241.png +0 -0
- package/dist-android/static//346/265/201/347/250/213/347/233/221/346/216/247.png +0 -0
- package/dist-android/static//346/270/205/347/251/272/346/225/260/346/215/256.png +0 -0
- package/dist-android/static//347/247/273/345/212/250/346/212/204/350/241/250.png +0 -0
- package/dist-android/static//347/247/273/345/212/250/346/212/204/350/241/250/345/267/262/345/212/236.png +0 -0
- package/dist-android/static//347/273/237/350/256/241/346/212/245/350/241/250.png +0 -0
- package/dist-android/static//347/273/264/344/277/256/346/264/276/345/217/221.png +0 -0
- package/dist-android/static//350/220/245/344/270/232/345/233/276/350/241/250.png +0 -0
- package/dist-android/static//350/241/250/345/206/214/351/241/272/345/272/217.png +0 -0
- package/dist-android/static//350/260/203/344/273/267/350/241/245/345/267/256/347/274/264/350/264/271.png +0 -0
- package/dist-android/static//350/277/233/345/272/246/345/210/227/350/241/250.png +0 -0
- package/dist-android/static//351/200/200/345/207/272/347/231/273/345/275/225.png +0 -0
- package/dist-android/static//351/200/201/346/260/224/344/270/212/344/274/240.png +0 -0
- package/dist-android/static//351/200/201/346/260/224/345/267/262/345/212/236.png +0 -0
- package/dist-android/static//351/200/201/346/260/224/345/276/205/345/212/236.png +0 -0
- package/dist-android/static//351/232/220/346/202/243/345/244/204/347/220/206.png +0 -0
- package/dist-android/static//351/233/206/344/270/255/345/256/211/346/243/200.png +0 -0
- package/dist-android/static//351/253/230/345/257/206/345/205/254/345/221/212.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/image/TXT.png +0 -0
- 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,7 +1,11 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<div class="col-sm-12" style="margin: 20px 0px;">
|
|
3
|
-
|
|
4
|
-
<
|
|
3
|
+
<criteria-paged :model="model" v-ref:cp>
|
|
4
|
+
<criteria partial='criteria' @condition-changed='$parent.searchCondition' v-ref:cri>
|
|
5
|
+
<div novalidate class="form-horizontal select-overspread container-fluid auto" partial>
|
|
6
|
+
</div>
|
|
7
|
+
</criteria>
|
|
8
|
+
<data-grid :model="model" v-ref:grid partial='list' class="list_area table_sy" style="padding: 0px">
|
|
5
9
|
<template partial='head'>
|
|
6
10
|
<tr>
|
|
7
11
|
<th>序号</th>
|
|
@@ -9,16 +13,30 @@
|
|
|
9
13
|
<th>客户名称</th>
|
|
10
14
|
<th>客户电话</th>
|
|
11
15
|
<th>地址信息</th>
|
|
12
|
-
<th
|
|
13
|
-
|
|
14
|
-
|
|
16
|
+
<th>表号</th>
|
|
17
|
+
<th>气表品牌</th>
|
|
18
|
+
<th>气表型号</th>
|
|
15
19
|
<th>
|
|
16
|
-
<button
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
20
|
+
<button
|
|
21
|
+
type="button"
|
|
22
|
+
class="btn btn-info head-but"
|
|
23
|
+
@click="$parent.$parent.$parent.openModal()"
|
|
24
|
+
:disabled="$parent.$parent.$parent.mark === 1 ||
|
|
25
|
+
($parent.$parent.$parent.model.count >= $parent.$parent.$parent.selectdata.f_apply_count && $parent.$parent.$parent.selectdata.defname === '报建受理') ||
|
|
26
|
+
($parent.$parent.$parent.model.count >= $parent.$parent.$parent.selectdata.f_install_count && $parent.$parent.$parent.selectdata.defname === '工程施工')"
|
|
27
|
+
>添加用户</button>
|
|
28
|
+
<button
|
|
29
|
+
v-if="$parent.$parent.$parent.selectdata.defname === '工程施工'"
|
|
30
|
+
type="button"
|
|
31
|
+
class="btn btn-info head-but"
|
|
32
|
+
@click="$parent.$parent.$parent.openSign()"
|
|
33
|
+
>签字照片</button>
|
|
34
|
+
<template v-if="$parent.$parent.$parent.selectdata.f_apply_nature === '小区'">
|
|
35
|
+
<button type="button" class="btn btn-info head-but" v-if="$parent.$parent.$parent.mark !== 1"
|
|
36
|
+
@click="$parent.$parent.$parent.showFile = !$parent.$parent.$parent.showFile">导入</button>
|
|
37
|
+
<a type="button" class="btn btn-info head-but" v-if="$parent.$parent.$parent.mark !== 1"
|
|
38
|
+
href="/apply/download/excel/小区导入.xlsx" download>模板下载</a>
|
|
39
|
+
</template>
|
|
22
40
|
</th>
|
|
23
41
|
</tr>
|
|
24
42
|
</template>
|
|
@@ -28,7 +46,7 @@
|
|
|
28
46
|
<nobr>{{$index+1}}</nobr>
|
|
29
47
|
</td>
|
|
30
48
|
<td style="text-align: center;">
|
|
31
|
-
<nobr>{{row.
|
|
49
|
+
<nobr>{{row.f_userinfo_id}}</nobr>
|
|
32
50
|
</td>
|
|
33
51
|
<td style="text-align: center;">
|
|
34
52
|
<nobr>{{row.f_user_name}}</nobr>
|
|
@@ -37,36 +55,38 @@
|
|
|
37
55
|
<nobr>{{row.f_user_phone}}</nobr>
|
|
38
56
|
</td>
|
|
39
57
|
<td style="text-align: center;">
|
|
40
|
-
<nobr>{{row.f_address}}</nobr>
|
|
58
|
+
<nobr>{{row.f_address}}{{row.f_address_detail}}</nobr>
|
|
59
|
+
</td>
|
|
60
|
+
<td style="text-align: center;">
|
|
61
|
+
<nobr>{{row.f_meternumber}}</nobr>
|
|
62
|
+
</td>
|
|
63
|
+
<td style="text-align: center;">
|
|
64
|
+
<nobr>{{row.f_meter_brand}}</nobr>
|
|
41
65
|
</td>
|
|
42
66
|
<td style="text-align: center;">
|
|
43
|
-
<nobr>{{row.
|
|
67
|
+
<nobr>{{row.f_meter_style}}</nobr>
|
|
44
68
|
</td>
|
|
45
|
-
<!-- <td style="text-align: center;"-->
|
|
46
|
-
<!-- v-if="$parent.$parent.selectdata.f_apply_type === '散户集体报建' || $parent.$parent.selectdata.f_apply_type === '煤改气报建'"-->
|
|
47
|
-
<!-- >-->
|
|
48
|
-
<!-- <nobr>{{$parent.$parent.selectdata.f_price}}</nobr>-->
|
|
49
|
-
<!-- </td>-->
|
|
50
|
-
<!-- <td style="text-align: center;"-->
|
|
51
|
-
<!-- v-if="$parent.$parent.selectdata.f_apply_type === '散户集体报建' || $parent.$parent.selectdata.f_apply_type === '煤改气报建'"-->
|
|
52
|
-
<!-- >-->
|
|
53
|
-
<!-- <nobr>{{row.f_cumulative_payment_money}}</nobr>-->
|
|
54
|
-
<!-- </td>-->
|
|
55
69
|
<td style="text-align: center;">
|
|
56
70
|
<nobr>
|
|
57
71
|
<button
|
|
58
|
-
type="button"
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
:disabled="(row.f_cumulative_payment_money < $parent.$parent.selectdata.f_price && ($parent.$parent.selectdata.f_apply_type === '散户集体报建' || $parent.$parent.selectdata.f_apply_type === '煤改气报建')) || $parent.$parent.mark === 1"
|
|
62
|
-
@click="$parent.$parent.showUserFileModal(row)">
|
|
63
|
-
{{row.f_userfiles_num > 0 ? '修正' : '添加'}}
|
|
72
|
+
type="button" name="button" class="btn btn-link"
|
|
73
|
+
@click="$parent.$parent.$parent.openModal(row)">
|
|
74
|
+
{{$parent.$parent.$parent.mark === 1 || row.f_user_state === '正常' ? '查看' : '修正'}}
|
|
64
75
|
</button>
|
|
76
|
+
<!-- <button-->
|
|
77
|
+
<!-- type="button" name="button" class="btn btn-link"-->
|
|
78
|
+
<!-- @click="$parent.$parent.$parent.deleteUserinfo(row)"-->
|
|
79
|
+
<!-- v-if="$parent.$parent.$parent.showDeleteUserInfo"-->
|
|
80
|
+
<!-- :disabled="$parent.$parent.$parent.mark === 1 || row.f_user_state === '正常'"-->
|
|
81
|
+
<!-- >-->
|
|
82
|
+
<!-- 删除-->
|
|
83
|
+
<!-- </button>-->
|
|
65
84
|
</nobr>
|
|
66
85
|
</td>
|
|
67
86
|
</tr>
|
|
68
87
|
</template>
|
|
69
88
|
</data-grid>
|
|
89
|
+
</criteria-paged>
|
|
70
90
|
</div>
|
|
71
91
|
<modal v-if="showFile" :show.sync="showFile" v-ref:modal :backdrop="false" title="选择文件">
|
|
72
92
|
<header slot="modal-header" class="modal-header">
|
|
@@ -75,177 +95,307 @@
|
|
|
75
95
|
</header>
|
|
76
96
|
<article slot="modal-body" class="modal-body">
|
|
77
97
|
<div class="form-group">
|
|
78
|
-
<file-upload class="my-file-uploader" name="useraddressUploadFile" action="rs/file/uploadFile" tagname="确定"
|
|
98
|
+
<file-upload class="my-file-uploader" name="useraddressUploadFile" action="rs/file/uploadFile" tagname="确定" v-ref:file></file-upload>
|
|
79
99
|
</div>
|
|
80
100
|
</article>
|
|
81
101
|
<footer slot="modal-footer" class="modal-footer"></footer>
|
|
82
102
|
</modal>
|
|
83
103
|
|
|
84
|
-
<modal v-if="
|
|
104
|
+
<modal v-if="Sign" :show.sync="Sign" v-ref:modal :large="true" :backdrop="false">
|
|
85
105
|
<header slot="modal-header" class="modal-header">
|
|
86
106
|
<button type="button" class="close" @click="closeUserFile"><span>×</span></button>
|
|
87
|
-
<h4 class="modal-title"
|
|
107
|
+
<h4 class="modal-title">用户签字</h4>
|
|
88
108
|
</header>
|
|
89
109
|
<article slot="modal-body" class="modal-body clearfix">
|
|
90
|
-
<div class="
|
|
91
|
-
<
|
|
92
|
-
<div class="col-sm-10">
|
|
93
|
-
<input class="form-control input_view" style=""
|
|
94
|
-
v-model="useradders.f_address"
|
|
95
|
-
:value="useradders.f_address"
|
|
96
|
-
:readonly="true"/>
|
|
97
|
-
</div>
|
|
110
|
+
<div class="left col-sm-6 col-xs-6">
|
|
111
|
+
<img-self :src="fileurl" width="100%" height="100%"></img-self>
|
|
98
112
|
</div>
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
113
|
+
</article>
|
|
114
|
+
<footer slot="modal-footer" class="modal-footer">
|
|
115
|
+
<template v-if="mark !== 1 && userinfo.f_user_state !== '正常'">
|
|
116
|
+
</template>
|
|
117
|
+
</footer>
|
|
118
|
+
</modal>
|
|
119
|
+
<validator name="v">
|
|
120
|
+
<modal v-if="showModal" :show.sync="showModal" v-ref:modal :large="true" :backdrop="false">
|
|
121
|
+
<header slot="modal-header" class="modal-header">
|
|
122
|
+
<button type="button" class="close" @click="closeUserFile"><span>×</span></button>
|
|
123
|
+
<h4 class="modal-title">安装明细</h4>
|
|
124
|
+
</header>
|
|
125
|
+
<article slot="modal-body" class="modal-body clearfix">
|
|
126
|
+
<!-- 基本信息 -->
|
|
127
|
+
<div class="form-group col-sm-12 panel panel-info" v-if="showUserInfo">
|
|
128
|
+
<div class="panel-heading head col-sm-12" style="background-color: #e8f4ff;margin-bottom: 10px">
|
|
129
|
+
<div class="col-sm-6 text-left">用户信息</div>
|
|
112
130
|
</div>
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
:valueSingle="true"></input-select>
|
|
131
|
+
<div class="form-group col-sm-6" :class="[$v.f_user_name.required ? 'has-error' : '']">
|
|
132
|
+
<label class="col-sm-4 control-label">客户名称:</label>
|
|
133
|
+
<div class="col-sm-8">
|
|
134
|
+
<input class="form-control input_view" style=""
|
|
135
|
+
v-validate:f_user_name = "['required']"
|
|
136
|
+
v-model="userinfo.f_user_name"
|
|
137
|
+
:value.sync="userinfo.f_user_name"
|
|
138
|
+
:readonly="mark === 1 || userinfo.f_user_state === '正常'"
|
|
139
|
+
placeholder="客户名称"/>
|
|
140
|
+
</div>
|
|
124
141
|
</div>
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
:readonly="false"/>
|
|
142
|
+
<div class="form-group col-sm-6">
|
|
143
|
+
<label class="col-sm-4 control-label">客户电话:</label>
|
|
144
|
+
<div class="col-sm-8">
|
|
145
|
+
<input class="form-control input_view" style=""
|
|
146
|
+
v-model="userinfo.f_user_phone"
|
|
147
|
+
:value.sync="userinfo.f_user_phone"
|
|
148
|
+
:readonly="mark === 1 || userinfo.f_user_state === '正常'"
|
|
149
|
+
placeholder="客户电话"/>
|
|
150
|
+
</div>
|
|
135
151
|
</div>
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
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-select
|
|
156
|
+
class="select select_list"
|
|
157
|
+
:value.sync="userinfo.f_credentials"
|
|
158
|
+
v-model="userinfo.f_credentials"
|
|
159
|
+
:options="credentialsList"
|
|
160
|
+
:disable="mark === 1 || userinfo.f_user_state === '正常'"
|
|
161
|
+
:valueSingle="true"></input-select>
|
|
162
|
+
</div>
|
|
145
163
|
</div>
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
164
|
+
<div class="form-group col-sm-6">
|
|
165
|
+
<label class="col-sm-4 control-label">证件号码:</label>
|
|
166
|
+
<div class="col-sm-8">
|
|
167
|
+
<input class="form-control input_view" style=""
|
|
168
|
+
placeholder="证件号码"
|
|
169
|
+
v-model="userinfo.f_idnumber"
|
|
170
|
+
:value="userinfo.f_idnumber"
|
|
171
|
+
:readonly="mark === 1 || userinfo.f_user_state === '正常'"/>
|
|
172
|
+
</div>
|
|
155
173
|
</div>
|
|
156
174
|
</div>
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
<div class="col-sm-
|
|
160
|
-
<
|
|
161
|
-
type="number"
|
|
162
|
-
placeholder="表读数"
|
|
163
|
-
v-model="item.f_meter_base"
|
|
164
|
-
:value="item.f_meter_base"
|
|
165
|
-
:readonly="false"/>
|
|
175
|
+
<!-- 地址信息 -->
|
|
176
|
+
<div class="form-group col-sm-12 panel panel-info" v-if="showAddress">
|
|
177
|
+
<div class="panel-heading head col-sm-12" style="background-color: #e8f4ff;margin-bottom: 10px">
|
|
178
|
+
<div class="col-sm-6 text-left">地址信息</div>
|
|
166
179
|
</div>
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
180
|
+
<div class="form-group col-sm-6" :class="[$v.area.required ? 'has-error' : '']">
|
|
181
|
+
<label class="col-sm-4 control-label">小区/巷道:</label>
|
|
182
|
+
<div class="col-sm-8">
|
|
183
|
+
<input type="text" v-show="false" v-model="area.id" :value.sync="area.id" v-validate:area = "['required']" >
|
|
184
|
+
<input-select
|
|
185
|
+
class="select select_list"
|
|
186
|
+
:value.sync="userinfo.f_residential_area"
|
|
187
|
+
v-model="userinfo.f_residential_area"
|
|
188
|
+
:options="areaList"
|
|
189
|
+
@change="changeArea(),addressSplicing()"
|
|
190
|
+
:disable="mark === 1 || selectdata.f_apply_nature === '小区' || userinfo.f_user_state === '正常'"
|
|
191
|
+
:valueSingle="true"></input-select>
|
|
192
|
+
</div>
|
|
177
193
|
</div>
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
:valueSingle="true"></input-select>
|
|
194
|
+
<div class="form-group col-sm-6">
|
|
195
|
+
<label class="col-sm-4 control-label">楼  号:</label>
|
|
196
|
+
<div class="col-sm-8">
|
|
197
|
+
<input class="form-control input_view" placeholder="楼号"
|
|
198
|
+
v-model="userinfo.f_building"
|
|
199
|
+
:value="userinfo.f_building"
|
|
200
|
+
@change="addressSplicing"
|
|
201
|
+
:readonly="mark === 1 || userinfo.f_user_state === '正常'"/>
|
|
202
|
+
</div>
|
|
188
203
|
</div>
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
:valueSingle="true"></input-select>
|
|
204
|
+
<div class="form-group col-sm-6">
|
|
205
|
+
<label class="col-sm-4 control-label">单  元:</label>
|
|
206
|
+
<div class="col-sm-8">
|
|
207
|
+
<input class="form-control input_view" placeholder="单元"
|
|
208
|
+
v-model="userinfo.f_unit"
|
|
209
|
+
:value="userinfo.f_unit"
|
|
210
|
+
@change="addressSplicing"
|
|
211
|
+
:readonly="mark === 1 || userinfo.f_user_state === '正常'"/>
|
|
212
|
+
</div>
|
|
199
213
|
</div>
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
214
|
+
<div class="form-group col-sm-6" v-if="false">
|
|
215
|
+
<label class="col-sm-4 control-label">楼  层:</label>
|
|
216
|
+
<div class="col-sm-8">
|
|
217
|
+
<input class="form-control input_view" placeholder="楼层"
|
|
218
|
+
v-model="userinfo.f_floor"
|
|
219
|
+
:value="userinfo.f_floor"
|
|
220
|
+
@change="addressSplicing"
|
|
221
|
+
:readonly="mark === 1 || userinfo.f_user_state === '正常'"/>
|
|
222
|
+
</div>
|
|
209
223
|
</div>
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
224
|
+
<div class="form-group col-sm-6" :class="[$v.f_room.required ? 'has-error' : '']">
|
|
225
|
+
<label class="col-sm-4 control-label">门 牌 号:</label>
|
|
226
|
+
<div class="col-sm-8">
|
|
227
|
+
<input class="form-control input_view" placeholder="门牌号"
|
|
228
|
+
v-validate:f_room = "['required']"
|
|
229
|
+
v-model="userinfo.f_room"
|
|
230
|
+
:value="userinfo.f_room"
|
|
231
|
+
@change="addressSplicing"
|
|
232
|
+
:readonly="mark === 1 || userinfo.f_user_state === '正常'"/>
|
|
233
|
+
</div>
|
|
234
|
+
</div>
|
|
235
|
+
<div class="form-group col-sm-12">
|
|
236
|
+
<label class="col-sm-2 control-label">地  址:</label>
|
|
237
|
+
<div class="col-sm-10">
|
|
238
|
+
<input class="form-control input_view"
|
|
239
|
+
placeholder="地址"
|
|
240
|
+
v-model="userinfo.f_address"
|
|
241
|
+
:value.sync="userinfo.f_address"
|
|
242
|
+
:readonly="true"/>
|
|
243
|
+
</div>
|
|
220
244
|
</div>
|
|
221
245
|
</div>
|
|
222
|
-
|
|
223
|
-
|
|
246
|
+
<!-- 表具信息 -->
|
|
247
|
+
<div class="form-group col-sm-12 panel panel-info" v-if="showUserFile">
|
|
248
|
+
<div class="panel-heading head col-sm-12" style="background-color: #e8f4ff;margin-bottom: 10px">
|
|
249
|
+
<div class="col-sm-6 text-left">表具信息</div>
|
|
250
|
+
</div>
|
|
251
|
+
<div class="form-group col-sm-6" :class="[$v.f_gasbrand_id.required ? 'has-error' : '']">
|
|
252
|
+
<label class="col-sm-4 control-label">气表品牌:</label>
|
|
224
253
|
<div class="col-sm-8">
|
|
225
|
-
<
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
:
|
|
231
|
-
|
|
254
|
+
<input type="text" v-show="false" v-model="userfile.f_gasbrand_id" :value.sync="userfile.f_gasbrand_id" v-validate:f_gasbrand_id = "['required']" >
|
|
255
|
+
<input-select
|
|
256
|
+
class="select select_list"
|
|
257
|
+
:value.sync="userfile.f_gasbrand_id"
|
|
258
|
+
v-model="userfile.f_gasbrand_id"
|
|
259
|
+
:options="meterBrandList"
|
|
260
|
+
@change="gasbrandChange()"
|
|
261
|
+
:disable="mark === 1 || userinfo.f_user_state === '正常' || gasbrandDisable"
|
|
262
|
+
:valueSingle="true"></input-select>
|
|
232
263
|
</div>
|
|
233
264
|
</div>
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
265
|
+
<div class="form-group col-sm-6" :class="[$v.f_gasmodel_id.required ? 'has-error' : '']">
|
|
266
|
+
<label class="col-sm-4 control-label">气表型号:</label>
|
|
267
|
+
<div class="col-sm-8">
|
|
268
|
+
<input type="text" v-show="false" v-model="userfile.f_gasmodel_id" :value.sync="userfile.f_gasmodel_id" v-validate:f_gasmodel_id = "['required']" >
|
|
269
|
+
<input-select
|
|
270
|
+
class="select select_list"
|
|
271
|
+
:value.sync="userfile.f_gasmodel_id"
|
|
272
|
+
v-model="userfile.f_gasmodel_id"
|
|
273
|
+
:options.sync="gasModelList"
|
|
274
|
+
:disable="mark === 1 || userinfo.f_user_state === '正常' || gasbrandDisable"
|
|
275
|
+
:valueSingle="true"></input-select>
|
|
276
|
+
</div>
|
|
277
|
+
</div>
|
|
278
|
+
<template v-if="showInstall">
|
|
279
|
+
<div class="form-group col-sm-6" :class="[$v.f_meternumber.required ? 'has-error' : '']">
|
|
280
|
+
<label class="col-sm-4 control-label">表  号:</label>
|
|
281
|
+
<div class="col-sm-8">
|
|
282
|
+
<input class="form-control input_view" style=""
|
|
283
|
+
placeholder="表号" v-validate:f_meternumber = "['required']"
|
|
284
|
+
v-model="userfile.f_meternumber"
|
|
285
|
+
:value.sync="userfile.f_meternumber"
|
|
286
|
+
@change="meternumberValidate()"
|
|
287
|
+
:readonly="mark === 1 || userinfo.f_user_state === '正常'"/>
|
|
288
|
+
</div>
|
|
289
|
+
</div>
|
|
290
|
+
<div class="form-group col-sm-6">
|
|
291
|
+
<label class="col-sm-4 control-label">表 封 号:</label>
|
|
292
|
+
<div class="col-sm-8">
|
|
293
|
+
<input class="form-control input_view" style=""
|
|
294
|
+
placeholder="表封号"
|
|
295
|
+
v-model="userfile.f_metertitles"
|
|
296
|
+
:value="userfile.f_metertitles"
|
|
297
|
+
:readonly="mark === 1 || userinfo.f_user_state === '正常'"/>
|
|
298
|
+
</div>
|
|
299
|
+
</div>
|
|
300
|
+
<div class="form-group col-sm-6">
|
|
301
|
+
<label class="col-sm-4 control-label">表 读 数:</label>
|
|
302
|
+
<div class="col-sm-8">
|
|
303
|
+
<input class="form-control input_view" style=""
|
|
304
|
+
type="number"
|
|
305
|
+
placeholder="表读数"
|
|
306
|
+
v-model="userfile.f_meter_base"
|
|
307
|
+
:value="userfile.f_meter_base"
|
|
308
|
+
:readonly="mark === 1 || userinfo.f_user_state === '正常'"/>
|
|
309
|
+
</div>
|
|
310
|
+
</div>
|
|
311
|
+
<div class="form-group col-sm-6">
|
|
312
|
+
<label class="col-sm-4 control-label">初始底数:</label>
|
|
313
|
+
<div class="col-sm-8">
|
|
314
|
+
<input class="form-control input_view" style=""
|
|
315
|
+
type="number"
|
|
316
|
+
v-model="userfile.f_initial_base"
|
|
317
|
+
:value="userfile.f_initial_base"
|
|
318
|
+
placeholder="初始底数"
|
|
319
|
+
:readonly="mark === 1 || userinfo.f_user_state === '正常'"/>
|
|
320
|
+
</div>
|
|
321
|
+
</div>
|
|
322
|
+
<div class="form-group col-sm-6">
|
|
323
|
+
<label class="col-sm-4 control-label">表  向:</label>
|
|
324
|
+
<div class="col-sm-8">
|
|
325
|
+
<input-select
|
|
326
|
+
class="select select_list"
|
|
327
|
+
:value.sync="userfile.f_aroundmeter"
|
|
328
|
+
v-model="userfile.f_aroundmeter"
|
|
329
|
+
:options="aroundmeters"
|
|
330
|
+
:disable="mark === 1 || userinfo.f_user_state === '正常'"
|
|
331
|
+
:valueSingle="true"></input-select>
|
|
332
|
+
</div>
|
|
333
|
+
</div>
|
|
334
|
+
<div class="form-group col-sm-6">
|
|
335
|
+
<label class="col-sm-4 control-label">安装位置:</label>
|
|
336
|
+
<div class="col-sm-8">
|
|
337
|
+
<input-select
|
|
338
|
+
class="select select_list"
|
|
339
|
+
:value.sync="userfile.f_position"
|
|
340
|
+
v-model="userfile.f_position"
|
|
341
|
+
:options="positions"
|
|
342
|
+
:disable="mark === 1 || userinfo.f_user_state === '正常'"
|
|
343
|
+
:valueSingle="true"></input-select>
|
|
344
|
+
</div>
|
|
345
|
+
</div>
|
|
346
|
+
<div class="form-group col-sm-6">
|
|
347
|
+
<label class="col-sm-4 control-label">安 装 人:</label>
|
|
348
|
+
<div class="col-sm-8">
|
|
349
|
+
<input class="form-control input_view" style=""
|
|
350
|
+
v-model="userfile.f_install_person"
|
|
351
|
+
:value.sync="installperson(userfile.f_install_person)"
|
|
352
|
+
placeholder="安装人"
|
|
353
|
+
readonly/>
|
|
354
|
+
</div>
|
|
355
|
+
</div>
|
|
356
|
+
<div class="form-group col-sm-6">
|
|
357
|
+
<label class="col-sm-4 control-label">安装日期:</label>
|
|
358
|
+
<div class="col-sm-8">
|
|
359
|
+
<input class="form-control input_view" style=""
|
|
360
|
+
v-model="userfile.f_install_date"
|
|
361
|
+
:value.sync="installdate(userfile.f_install_date)"
|
|
362
|
+
placeholder="安装日期"
|
|
363
|
+
readonly/>
|
|
364
|
+
</div>
|
|
365
|
+
</div>
|
|
366
|
+
</template>
|
|
367
|
+
</div>
|
|
368
|
+
</article>
|
|
369
|
+
<footer slot="modal-footer" class="modal-footer">
|
|
370
|
+
<template v-if="mark !== 1 && userinfo.f_user_state !== '正常'">
|
|
371
|
+
<button type="button" class="btn btn-primary" @click="saveUserFile" :disabled="!$v.valid">确认</button>
|
|
372
|
+
</template>
|
|
373
|
+
</footer>
|
|
374
|
+
</modal>
|
|
375
|
+
</validator>
|
|
243
376
|
</template>
|
|
244
377
|
<script>
|
|
245
378
|
import Vue from 'vue'
|
|
246
379
|
import {PagedList} from 'vue-client'
|
|
247
380
|
import {HttpResetClass} from 'vue-client'
|
|
248
381
|
import {isEmpty} from '../../../Util'
|
|
382
|
+
// Date格式化
|
|
383
|
+
Date.prototype.Format = function (fmt) {
|
|
384
|
+
var o = {
|
|
385
|
+
'M+': this.getMonth() + 1, // 月份
|
|
386
|
+
'd+': this.getDate(), // 日
|
|
387
|
+
'H+': this.getHours(), // 小时
|
|
388
|
+
'm+': this.getMinutes(), // 分
|
|
389
|
+
's+': this.getSeconds(), // 秒
|
|
390
|
+
'q+': Math.floor((this.getMonth() + 3) / 3), // 季度
|
|
391
|
+
'S': this.getMilliseconds() // 毫秒
|
|
392
|
+
}
|
|
393
|
+
if (/(y+)/.test(fmt)) fmt = fmt.replace(RegExp.$1, (this.getFullYear() + '').substr(4 - RegExp.$1.length))
|
|
394
|
+
for (var k in o) {
|
|
395
|
+
if (new RegExp('(' + k + ')').test(fmt)) fmt = fmt.replace(RegExp.$1, (RegExp.$1.length === 1) ? (o[k]) : (('00' + o[k]).substr(('' + o[k]).length)))
|
|
396
|
+
}
|
|
397
|
+
return fmt
|
|
398
|
+
}
|
|
249
399
|
|
|
250
400
|
export default {
|
|
251
401
|
title: '安装明细',
|
|
@@ -260,233 +410,375 @@ export default {
|
|
|
260
410
|
},
|
|
261
411
|
data () {
|
|
262
412
|
return {
|
|
413
|
+
gasbrandDisable: false,
|
|
263
414
|
showFile: false,
|
|
264
|
-
|
|
265
|
-
model:
|
|
266
|
-
|
|
267
|
-
},
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
415
|
+
showModal: false,
|
|
416
|
+
model: new PagedList('rs/sql/getApplyUserinfo', 20, null),
|
|
417
|
+
areaList: [],
|
|
418
|
+
area: {},
|
|
419
|
+
userinfo: {},
|
|
420
|
+
userfile: {},
|
|
421
|
+
meterBrandList: [],
|
|
422
|
+
gasModelList: [],
|
|
423
|
+
Sign: false,
|
|
424
|
+
fileurl: null
|
|
271
425
|
}
|
|
272
426
|
},
|
|
273
427
|
ready () {
|
|
274
428
|
this.search()
|
|
275
|
-
this.
|
|
429
|
+
this.getMeterBrand()
|
|
430
|
+
this.getAreaList()
|
|
276
431
|
},
|
|
277
432
|
methods: {
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
if (
|
|
281
|
-
this.$showAlert('该地址下已有表具信息,暂不支持一户多表!!!', 'warning', 3000)
|
|
433
|
+
async deleteUserinfo (row) {
|
|
434
|
+
let res = await this.$showMessage('此操作不可撤回,您确定要删除这条记录吗?')
|
|
435
|
+
if (res === 'cancel') {
|
|
282
436
|
return
|
|
283
437
|
}
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
if (userfile.f_gasbrand_id === null || userfile.f_gasbrand_id === '') {
|
|
288
|
-
this.$showAlert(`表具${i+1}气表品牌没有选择!!!`, 'warning', 3000)
|
|
289
|
-
return
|
|
290
|
-
}
|
|
291
|
-
if (userfile.f_gasmodel_id === null || userfile.f_gasmodel_id === '') {
|
|
292
|
-
this.$showAlert(`表具${i+1}气表型号没有选择!!!`, 'warning', 3000)
|
|
293
|
-
return
|
|
294
|
-
}
|
|
295
|
-
if (userfile.f_meternumber === null || userfile.f_meternumber === '') {
|
|
296
|
-
this.$showAlert(`表具${i+1}表号没有填写!!!`, 'warning', 3000)
|
|
297
|
-
return
|
|
298
|
-
}
|
|
299
|
-
if (userfile.f_aroundmeter === null || userfile.f_aroundmeter === '') {
|
|
300
|
-
this.$showAlert(`表具${i+1}表向没有填写!!!`, 'warning', 3000)
|
|
301
|
-
return
|
|
302
|
-
}
|
|
303
|
-
if (this.selectdata.defname === '通气下发'){
|
|
304
|
-
if (userfile.f_metertitles === null || userfile.f_metertitles === '') {
|
|
305
|
-
this.$showAlert(`表具${i+1}表封号没有填写!!!`, 'warning', 3000)
|
|
306
|
-
return
|
|
307
|
-
}
|
|
308
|
-
if (this.userinfo.f_room === null || this.userinfo.f_room === '') {
|
|
309
|
-
this.$showAlert(`表具${i+1}门牌号没有填写!!!`, 'warning', 3000)
|
|
310
|
-
return
|
|
311
|
-
}
|
|
312
|
-
}
|
|
438
|
+
let data = {
|
|
439
|
+
userinfo: row,
|
|
440
|
+
selectdata: this.selectdata
|
|
313
441
|
}
|
|
442
|
+
res = await this.$resetpost('rs/logic/applyDeleteUserinfo', {data:data}, {
|
|
443
|
+
resolveMsg: null,
|
|
444
|
+
rejectMsg: '删除失败!!!'
|
|
445
|
+
})
|
|
446
|
+
|
|
447
|
+
this.$dispatch('breakControl', this.selectdata)
|
|
448
|
+
},
|
|
449
|
+
// 保存档案
|
|
450
|
+
async saveUserFile () {
|
|
314
451
|
let data = {
|
|
315
452
|
user: this.$login.f,
|
|
316
|
-
useradders: this.useradders,
|
|
317
453
|
userinfo: this.userinfo,
|
|
454
|
+
userfile: this.userfile,
|
|
318
455
|
selectdata: this.selectdata
|
|
319
456
|
}
|
|
320
|
-
let res = await this.$resetpost('rs/logic/
|
|
457
|
+
let res = await this.$resetpost('rs/logic/applyAddUserinfo', {data:data}, {
|
|
321
458
|
resolveMsg: null,
|
|
322
|
-
rejectMsg: '
|
|
459
|
+
rejectMsg: '用户档案添加失败!!!'
|
|
323
460
|
})
|
|
324
461
|
this.$dispatch('breakControl', this.selectdata)
|
|
325
462
|
},
|
|
463
|
+
ifDisable() {
|
|
464
|
+
if (this.selectdata.f_apply_type === '非民用报建' && this.selectdata.defname === '工程施工') {
|
|
465
|
+
this.gasbrandDisable = true
|
|
466
|
+
}
|
|
467
|
+
},
|
|
326
468
|
// 检查表号是否存在
|
|
327
|
-
async meternumberValidate(
|
|
328
|
-
if (!this.
|
|
329
|
-
this.
|
|
469
|
+
async meternumberValidate() {
|
|
470
|
+
if (!this.userfile.f_gasbrand_id) {
|
|
471
|
+
this.userfile.f_meternumber = ''
|
|
330
472
|
this.$showAlert('请先选择气表品牌!!!', 'warning', 3000)
|
|
331
473
|
return
|
|
332
474
|
}
|
|
333
|
-
if (this.
|
|
475
|
+
if (this.userfile.f_gasbrand_id && this.userfile.f_meternumber) {
|
|
334
476
|
let data = {
|
|
335
|
-
f_meternumber: this.
|
|
336
|
-
f_gasbrand_id: this.
|
|
477
|
+
f_meternumber: this.userfile.f_meternumber,
|
|
478
|
+
f_gasbrand_id: this.userfile.f_gasbrand_id
|
|
337
479
|
}
|
|
338
|
-
if (this.
|
|
339
|
-
data.
|
|
480
|
+
if (this.userfile.f_user_id) {
|
|
481
|
+
data.f_user_id = this.userfile.f_user_id
|
|
340
482
|
}
|
|
341
483
|
let res = await this.$resetpost('rs/logic/meterbrandsNumberValidate', {data:data}, {
|
|
342
484
|
resolveMsg: null,
|
|
343
485
|
rejectMsg: '表号验证失败!!'
|
|
344
486
|
})
|
|
487
|
+
console.log(`查询结果${res.data}`)
|
|
488
|
+
console.log(res.data)
|
|
345
489
|
if (res.data) {
|
|
346
|
-
this.
|
|
490
|
+
this.userfile.f_meternumber = ''
|
|
347
491
|
this.$showAlert('表号已存在!!', 'warning', 3000)
|
|
348
492
|
}
|
|
349
493
|
}
|
|
350
494
|
},
|
|
351
|
-
// 选择气表型号
|
|
352
|
-
gasmodelChange(i) {
|
|
353
|
-
if (this.userinfo.userfiles[i].gasmodel) {
|
|
354
|
-
this.userinfo.userfiles[i].f_gasmodel_id = this.userinfo.userfiles[i].gasmodel.id
|
|
355
|
-
}
|
|
356
|
-
},
|
|
357
495
|
// 选择气表品牌
|
|
358
|
-
gasbrandChange(
|
|
496
|
+
async gasbrandChange() {
|
|
359
497
|
// 清空已保存的气表型号
|
|
360
|
-
this.
|
|
361
|
-
this.
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
this.userinfo.userfiles[i].f_meter_classify = this.userinfo.userfiles[i].gasbrand.f_meter_type
|
|
498
|
+
this.userfile.f_gasmodel_id = null
|
|
499
|
+
if (isEmpty(this.userfile.f_gasbrand_id)) {
|
|
500
|
+
return
|
|
501
|
+
}
|
|
502
|
+
let data = {
|
|
503
|
+
f_gasbrand_id: this.userfile.f_gasbrand_id
|
|
367
504
|
}
|
|
505
|
+
let http = new HttpResetClass()
|
|
506
|
+
let res = await http.load(
|
|
507
|
+
'POST',
|
|
508
|
+
`rs/sql/getGasModel`,
|
|
509
|
+
{data: data},
|
|
510
|
+
{resolveMsg: null, rejectMsg: '气表型号查询失败!!!'}
|
|
511
|
+
)
|
|
512
|
+
|
|
513
|
+
this.gasModelList = res.data
|
|
514
|
+
|
|
515
|
+
data = {
|
|
516
|
+
tablename: 't_gasbrand',
|
|
517
|
+
condition: `id = '${this.userfile.f_gasbrand_id}'`
|
|
518
|
+
}
|
|
519
|
+
res = await http.load(
|
|
520
|
+
'POST',
|
|
521
|
+
`rs/sql/applySingleTable`,
|
|
522
|
+
{data: data},
|
|
523
|
+
{resolveMsg: null, rejectMsg: '表具类型查询失败!!!'}
|
|
524
|
+
)
|
|
525
|
+
this.userfile.f_meter_classify = res.data[0].f_meter_type
|
|
368
526
|
},
|
|
369
|
-
//
|
|
370
|
-
|
|
371
|
-
this.userinfo.
|
|
527
|
+
// 地址拼接
|
|
528
|
+
addressSplicing () {
|
|
529
|
+
let f_area = this.userinfo.f_area || ''
|
|
530
|
+
let f_slice_area = this.userinfo.f_slice_area || ''
|
|
531
|
+
let f_street = this.userinfo.f_street || ''
|
|
532
|
+
let f_residential_area = this.userinfo.f_residential_area || ''
|
|
533
|
+
let f_building = this.userinfo.f_building || ''
|
|
534
|
+
let f_building_suffix = f_building ? '号楼' : ''
|
|
535
|
+
let f_unit = this.userinfo.f_unit || ''
|
|
536
|
+
let f_unit_suffix = f_unit ? '单元' : ''
|
|
537
|
+
let f_floor = this.userinfo.f_floor || ''
|
|
538
|
+
let f_floor_suffix = f_floor ? '层' : ''
|
|
539
|
+
let f_room = this.userinfo.f_room || ''
|
|
540
|
+
let f_room_suffix = f_room ? '室' : ''
|
|
541
|
+
|
|
542
|
+
Vue.set(this.userinfo, 'f_address', f_area + f_slice_area + f_street + f_residential_area + f_building + f_building_suffix + f_unit + f_unit_suffix + f_floor + f_floor_suffix + f_room + f_room_suffix)
|
|
372
543
|
},
|
|
373
|
-
//
|
|
374
|
-
|
|
375
|
-
this.
|
|
544
|
+
// 选择小区
|
|
545
|
+
changeArea () {
|
|
546
|
+
if (isEmpty(this.area)) {
|
|
547
|
+
return
|
|
548
|
+
}
|
|
376
549
|
|
|
550
|
+
this.userinfo.f_area = this.area.f_area
|
|
551
|
+
this.userinfo.f_slice_area = this.area.f_slice_area
|
|
552
|
+
this.userinfo.f_street = this.area.f_street
|
|
553
|
+
this.userinfo.f_residential_area = this.area.f_residential_area
|
|
554
|
+
this.userinfo.f_residential_area_id = this.area.id
|
|
555
|
+
},
|
|
556
|
+
openSign(){
|
|
557
|
+
this.getFiles()
|
|
558
|
+
this.Sign = true
|
|
559
|
+
},
|
|
560
|
+
async getFiles() {
|
|
377
561
|
let http = new HttpResetClass()
|
|
562
|
+
console.log('=========pc签字查看===============')
|
|
378
563
|
let data = {
|
|
379
|
-
|
|
564
|
+
tablename: 't_files',
|
|
565
|
+
condition: `f_blobid = '${this.selectdata.f_process_id}' and defname = '工程施工' and fremarks = '报装手机签字文件'`
|
|
380
566
|
}
|
|
381
|
-
let res = await http.load('POST',
|
|
382
|
-
|
|
383
|
-
|
|
567
|
+
let res = await http.load('POST', `rs/sql/applySingleTable`, {data: data}, {
|
|
568
|
+
warnMsg: null,
|
|
569
|
+
resolveMsg: null
|
|
384
570
|
})
|
|
571
|
+
if(res.data.length > 0){
|
|
572
|
+
console.log('=========签字地址===============',res.data[0])
|
|
573
|
+
let URL = res.data[0].f_downloadpath.substring(res.data[0].f_downloadpath.lastIndexOf(":\\") + 2)
|
|
574
|
+
res.data[0].f_downloadURL = "http://" + location.host + "/" + URL
|
|
575
|
+
console.log("=====查看文件地址=====",res.data[0].f_downloadURL)
|
|
576
|
+
this.fileurl = res.data[0].f_downloadURL
|
|
577
|
+
}
|
|
578
|
+
},
|
|
579
|
+
// 打开安装明细
|
|
580
|
+
async openModal (row) {
|
|
581
|
+
this.ifDisable()
|
|
582
|
+
if (row) {
|
|
583
|
+
console.log('------------------修正---------------------')
|
|
584
|
+
this.userinfo = row
|
|
385
585
|
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
for (const item of this.meterbrands) {
|
|
391
|
-
if (item.value.id === this.userinfo.userfiles[i].f_gasbrand_id) {
|
|
392
|
-
// this.userinfo.userfiles[i].gasbrand = item.value // 防止双向绑定失败
|
|
393
|
-
Vue.set(this.userinfo.userfiles[i], 'gasbrand', item.value)
|
|
586
|
+
if (this.userinfo.f_residential_area_id) {
|
|
587
|
+
let data = {
|
|
588
|
+
tablename: 't_area_address',
|
|
589
|
+
condition: `id = '${this.userinfo.f_residential_area_id}'`
|
|
394
590
|
}
|
|
591
|
+
let http = new HttpResetClass()
|
|
592
|
+
let res = await http.load(
|
|
593
|
+
'POST',
|
|
594
|
+
`rs/sql/applySingleTable`,
|
|
595
|
+
{data: data},
|
|
596
|
+
{resolveMsg: null, rejectMsg: '小区查询失败!!!'}
|
|
597
|
+
)
|
|
598
|
+
|
|
599
|
+
this.area = res.data[0]
|
|
600
|
+
}
|
|
601
|
+
|
|
602
|
+
let data = {
|
|
603
|
+
tablename: 't_userfiles',
|
|
604
|
+
condition: `f_userinfo_id = ${row.f_userinfo_id}`
|
|
395
605
|
}
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
606
|
+
let http = new HttpResetClass()
|
|
607
|
+
let res = await http.load(
|
|
608
|
+
'POST',
|
|
609
|
+
`rs/sql/applySingleTable`,
|
|
610
|
+
{data: data},
|
|
611
|
+
{resolveMsg: null, rejectMsg: '表档案查询失败!!!'}
|
|
612
|
+
)
|
|
613
|
+
this.userfile = res.data[0]
|
|
614
|
+
|
|
615
|
+
if (this.userfile.f_gasbrand_id === 0) {
|
|
616
|
+
this.userfile.f_gasbrand_id = null
|
|
617
|
+
}
|
|
618
|
+
if (this.userfile.f_gasmodel_id === 0) {
|
|
619
|
+
this.userfile.f_gasmodel_id = null
|
|
620
|
+
}
|
|
621
|
+
|
|
622
|
+
if (!isEmpty(this.userfile.f_gasbrand_id)) {
|
|
623
|
+
let data = {
|
|
624
|
+
f_gasbrand_id: this.userfile.f_gasbrand_id
|
|
402
625
|
}
|
|
626
|
+
let http = new HttpResetClass()
|
|
627
|
+
let res = await http.load(
|
|
628
|
+
'POST',
|
|
629
|
+
`rs/sql/getGasModel`,
|
|
630
|
+
{data: data},
|
|
631
|
+
{resolveMsg: null, rejectMsg: '气表型号查询失败!!!'}
|
|
632
|
+
)
|
|
633
|
+
|
|
634
|
+
this.gasModelList = res.data
|
|
403
635
|
}
|
|
404
636
|
}
|
|
637
|
+
if (this.selectdata.f_apply_type === '民用报建' && this.selectdata.f_apply_nature === '小区') {
|
|
638
|
+
let data = {
|
|
639
|
+
tablename: 't_area_address',
|
|
640
|
+
condition: `id = ${this.selectdata.f_residential_area_id}`
|
|
641
|
+
}
|
|
642
|
+
let http = new HttpResetClass()
|
|
643
|
+
let res = await http.load(
|
|
644
|
+
'POST',
|
|
645
|
+
`rs/sql/applySingleTable`,
|
|
646
|
+
{data: data},
|
|
647
|
+
{resolveMsg: null, rejectMsg: '小区查询失败!!!'}
|
|
648
|
+
)
|
|
649
|
+
this.area = res.data[0]
|
|
650
|
+
this.changeArea()
|
|
651
|
+
this.addressSplicing()
|
|
652
|
+
}
|
|
405
653
|
|
|
406
|
-
|
|
654
|
+
// 档案回填定位信息
|
|
655
|
+
this.userinfo.f_lng = this.selectdata.f_lng
|
|
656
|
+
this.userinfo.f_lat = this.selectdata.f_lat
|
|
657
|
+
this.userinfo.f_location_address = this.selectdata.f_order_address
|
|
658
|
+
|
|
659
|
+
this.showModal = true
|
|
407
660
|
},
|
|
408
661
|
// 获取气表品牌
|
|
409
|
-
async
|
|
410
|
-
let http = new HttpResetClass()
|
|
662
|
+
async getMeterBrand () {
|
|
411
663
|
let data = {
|
|
412
|
-
f_filialeid: this.$login.f.f_orgids
|
|
413
664
|
}
|
|
414
|
-
|
|
415
|
-
resolveMsg: null,
|
|
416
|
-
rejectMsg: null
|
|
417
|
-
})
|
|
418
|
-
this.meterbrands = res.data
|
|
419
|
-
},
|
|
420
|
-
// 查询
|
|
421
|
-
async search () {
|
|
665
|
+
|
|
422
666
|
let http = new HttpResetClass()
|
|
667
|
+
let res = await http.load(
|
|
668
|
+
'POST',
|
|
669
|
+
`rs/sql/getMeterBrand`,
|
|
670
|
+
{data: data},
|
|
671
|
+
{resolveMsg: null, rejectMsg: '气表品牌查询失败!!!'}
|
|
672
|
+
)
|
|
673
|
+
|
|
674
|
+
this.meterBrandList = res.data
|
|
675
|
+
},
|
|
676
|
+
// 获取小区
|
|
677
|
+
async getAreaList () {
|
|
423
678
|
let data = {
|
|
424
|
-
|
|
425
|
-
|
|
679
|
+
tablename: 't_area_address',
|
|
680
|
+
condition: `f_filiale = '${this.$login.f.f_fengongsi}' and f_area_status = '启用'`
|
|
426
681
|
}
|
|
427
|
-
let
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
let f_uninstalled_households = this.selectdata.f_apply_count - f_installed_households
|
|
440
|
-
for (const item of this.selectdata.fields) {
|
|
441
|
-
if (item.label === '已安装户数') {
|
|
442
|
-
item.value = f_installed_households
|
|
443
|
-
}
|
|
444
|
-
if (item.label === '未安装户数') {
|
|
445
|
-
item.value = f_uninstalled_households
|
|
446
|
-
}
|
|
682
|
+
let http = new HttpResetClass()
|
|
683
|
+
let res = await http.load(
|
|
684
|
+
'POST',
|
|
685
|
+
`rs/sql/applySingleTable`,
|
|
686
|
+
{data: data},
|
|
687
|
+
{resolveMsg: null, rejectMsg: '小区查询失败!!!'}
|
|
688
|
+
)
|
|
689
|
+
this.areaList = res.data.map(item => {
|
|
690
|
+
item.id = String(item.id)
|
|
691
|
+
return {
|
|
692
|
+
label: item.f_residential_area,
|
|
693
|
+
value: item
|
|
447
694
|
}
|
|
695
|
+
})
|
|
696
|
+
},
|
|
697
|
+
searchCondition (args) {
|
|
698
|
+
if (this.selectdata.f_apply_type === '分户挂表') {
|
|
699
|
+
args.condition = args.condition + `and ui.f_userinfo_id = '${this.selectdata.f_userinfo_id}'`
|
|
700
|
+
} else {
|
|
701
|
+
args.condition = args.condition + `and ui.f_process_id = '${this.selectdata.f_process_id}'`
|
|
448
702
|
}
|
|
703
|
+
|
|
704
|
+
this.model.search(args.condition, args.model)
|
|
705
|
+
},
|
|
706
|
+
// 查询
|
|
707
|
+
async search () {
|
|
708
|
+
this.$refs.cp.$refs.cri.search()
|
|
449
709
|
},
|
|
450
710
|
// 关闭安装明细
|
|
451
711
|
closeUserFile() {
|
|
452
|
-
this.
|
|
453
|
-
this.
|
|
454
|
-
this.userinfo =
|
|
712
|
+
this.showModal = false
|
|
713
|
+
this.area = {}
|
|
714
|
+
this.userinfo = {}
|
|
715
|
+
this.userfile = {}
|
|
716
|
+
this.gasModelList = {}
|
|
717
|
+
this.Sign = {}
|
|
455
718
|
this.search()
|
|
456
719
|
},
|
|
457
|
-
|
|
720
|
+
//关闭导入弹框
|
|
458
721
|
closeFile() {
|
|
459
722
|
this.showFile = false
|
|
460
723
|
// 将选的文件清空
|
|
461
724
|
this.$refs.file.$el.querySelector('input').value = ''
|
|
462
725
|
this.search()
|
|
463
|
-
}
|
|
726
|
+
},
|
|
464
727
|
},
|
|
465
728
|
events: {
|
|
466
729
|
async 'onFileUpload'(file, result) {
|
|
467
730
|
let data = {
|
|
468
731
|
selectdata: this.selectdata,
|
|
469
732
|
filepath: result.f_downloadpath,
|
|
470
|
-
user: this.$login.f
|
|
471
|
-
|
|
472
|
-
let res = await this.$resetpost(`rs/logic/importAddInstallationDetails`, {data:data}, {resolveMsg: null, rejectMsg: '导入失败', silent: true}, 0)
|
|
473
|
-
if(res.data.type === "success"){
|
|
474
|
-
this.$showAlert("导入信息:"+res.data.msg, res.data.type, 2000);
|
|
475
|
-
}else{
|
|
476
|
-
this.$showMessage(res.data.msg);
|
|
733
|
+
user: this.$login.f,
|
|
734
|
+
mark: this.mark
|
|
477
735
|
}
|
|
736
|
+
let res = await this.$resetpost(`rs/logic/importAddressAndUserinfo`, {data:data}, {resolveMsg: null, rejectMsg: '导入失败!!!', silent: true}, 0)
|
|
737
|
+
|
|
478
738
|
this.$dispatch('breakControl', this.selectdata)
|
|
479
739
|
}
|
|
480
740
|
},
|
|
481
741
|
computed: {
|
|
742
|
+
showDeleteUserInfo () {
|
|
743
|
+
return this.selectdata.f_apply_type === '民用报建' &&
|
|
744
|
+
this.selectdata.f_apply_nature === '散户' &&
|
|
745
|
+
(this.selectdata.defname === '报建受理' || this.selectdata.defname === '现场勘察')
|
|
746
|
+
},
|
|
747
|
+
showAddress () {
|
|
748
|
+
return this.selectdata.f_apply_type === '民用报建'
|
|
749
|
+
},
|
|
750
|
+
showUserInfo () {
|
|
751
|
+
return this.selectdata.f_apply_type === '民用报建' && this.selectdata.f_apply_nature === '散户'
|
|
752
|
+
},
|
|
753
|
+
showUserFile () {
|
|
754
|
+
return (this.selectdata.f_apply_type === '民用报建' && this.selectdata.f_apply_nature === '散户' && this.selectdata.defname === '工程施工') ||
|
|
755
|
+
this.selectdata.f_apply_type === '非民用报建' ||
|
|
756
|
+
this.selectdata.f_apply_type === '分户挂表'
|
|
757
|
+
},
|
|
758
|
+
showInstall () {
|
|
759
|
+
return this.showUserFile && (this.selectdata.defname === '工程施工' || this.selectdata.defname === '施工通气' || this.selectdata.defname === '点火通气')
|
|
760
|
+
},
|
|
761
|
+
// 证件类型
|
|
762
|
+
credentialsList() {
|
|
763
|
+
return this.$appdata.getParam('证件类型')
|
|
764
|
+
},
|
|
482
765
|
// 安装人
|
|
483
766
|
installperson() {
|
|
484
|
-
return
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
value: item.name
|
|
767
|
+
return function (f_install_person) {
|
|
768
|
+
if (isEmpty(f_install_person)) {
|
|
769
|
+
return this.$login.f.name
|
|
488
770
|
}
|
|
489
|
-
|
|
771
|
+
return f_install_person
|
|
772
|
+
}
|
|
773
|
+
},
|
|
774
|
+
// 安装时间
|
|
775
|
+
installdate() {
|
|
776
|
+
return function (f_install_date) {
|
|
777
|
+
if (isEmpty(f_install_date)) {
|
|
778
|
+
return new Date().Format('yyyy-MM-dd HH:mm:ss')
|
|
779
|
+
}
|
|
780
|
+
return f_install_date
|
|
781
|
+
}
|
|
490
782
|
},
|
|
491
783
|
// 表向
|
|
492
784
|
aroundmeters() {
|
|
@@ -517,4 +809,20 @@ export default {
|
|
|
517
809
|
.clearfix:after{
|
|
518
810
|
clear: both;
|
|
519
811
|
}
|
|
812
|
+
.input_view{
|
|
813
|
+
background-color: #ffffff;
|
|
814
|
+
border-radius: 2px;
|
|
815
|
+
border: solid 1px #c7c7c7!important;
|
|
816
|
+
color: #333333!important;
|
|
817
|
+
font-size: 15px!important;
|
|
818
|
+
}
|
|
819
|
+
|
|
820
|
+
.input_view[readonly]{
|
|
821
|
+
border: 1px solid #DDD!important;
|
|
822
|
+
color:#ACA899!important;
|
|
823
|
+
}
|
|
824
|
+
.input_view:disabled{
|
|
825
|
+
border: 1px solid #DDD!important;
|
|
826
|
+
color:#ACA899!important;
|
|
827
|
+
}
|
|
520
828
|
</style>
|