apply-clients 7.1.35 → 7.1.36
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/android.html +4 -0
- package/build/css-loaders.js +34 -0
- package/build/dev-client.js +8 -0
- package/build/dev-server.js +151 -0
- package/build/example-server.js +80 -0
- package/build/release.sh +28 -0
- package/build/utils.js +80 -0
- package/build/webpack.base.conf.js +123 -0
- package/build/webpack.baseandroid.conf.js +123 -0
- package/build/webpack.dev.conf.js +43 -0
- package/build/webpack.devandroid.conf.js +34 -0
- package/build/webpack.example.conf.js +49 -0
- package/build/webpack.prod.conf.js +60 -0
- package/build/webpack.prodandroid.conf.js +60 -0
- package/dist-android.7z +0 -0
- package/dist.7z +0 -0
- package/index.html +4 -1
- package/package.json +11 -7
- package/src/AndroidApp.vue +21 -14
- package/src/App.vue +18 -20
- package/{dist-android/static → src/android-bootstrap/fonts}/glyphicons-halflings-regular.eot +0 -0
- package/{dist-android/static → src/android-bootstrap/fonts}/glyphicons-halflings-regular.svg +0 -0
- package/{dist-android/static → src/android-bootstrap/fonts}/glyphicons-halflings-regular.ttf +0 -0
- package/{dist-android/static → src/android-bootstrap/fonts}/glyphicons-halflings-regular.woff +0 -0
- package/{dist-android/static → src/android-bootstrap/fonts}/glyphicons-halflings-regular.woff2 +0 -0
- package/src/android-bootstrap/less/.csscomb.json +304 -0
- package/src/android-bootstrap/less/.csslintrc +19 -0
- package/src/android-bootstrap/less/alerts.less +73 -0
- package/src/android-bootstrap/less/badges.less +66 -0
- package/src/android-bootstrap/less/bootstrap.less +56 -0
- package/src/android-bootstrap/less/breadcrumbs.less +26 -0
- package/src/android-bootstrap/less/button-groups.less +247 -0
- package/src/android-bootstrap/less/buttons.less +173 -0
- package/src/android-bootstrap/less/carousel.less +269 -0
- package/src/android-bootstrap/less/close.less +34 -0
- package/src/android-bootstrap/less/code.less +69 -0
- package/src/android-bootstrap/less/component-animations.less +33 -0
- package/src/android-bootstrap/less/dropdowns.less +216 -0
- package/src/android-bootstrap/less/forms.less +626 -0
- package/src/android-bootstrap/less/glyphicons.less +305 -0
- package/src/android-bootstrap/less/grid.less +84 -0
- package/src/android-bootstrap/less/input-groups.less +167 -0
- package/src/android-bootstrap/less/jumbotron.less +52 -0
- package/src/android-bootstrap/less/labels.less +64 -0
- package/src/android-bootstrap/less/list-group.less +141 -0
- package/src/android-bootstrap/less/media.less +66 -0
- package/src/android-bootstrap/less/mixins/alerts.less +14 -0
- package/src/android-bootstrap/less/mixins/background-variant.less +9 -0
- package/src/android-bootstrap/less/mixins/border-radius.less +18 -0
- package/src/android-bootstrap/less/mixins/buttons.less +69 -0
- package/src/android-bootstrap/less/mixins/center-block.less +7 -0
- package/src/android-bootstrap/less/mixins/clearfix.less +22 -0
- package/src/android-bootstrap/less/mixins/forms.less +90 -0
- package/src/android-bootstrap/less/mixins/gradients.less +59 -0
- package/src/android-bootstrap/less/mixins/grid-framework.less +92 -0
- package/src/android-bootstrap/less/mixins/grid.less +122 -0
- package/src/android-bootstrap/less/mixins/hide-text.less +21 -0
- package/src/android-bootstrap/less/mixins/image.less +33 -0
- package/src/android-bootstrap/less/mixins/labels.less +12 -0
- package/src/android-bootstrap/less/mixins/list-group.less +30 -0
- package/src/android-bootstrap/less/mixins/nav-divider.less +10 -0
- package/src/android-bootstrap/less/mixins/nav-vertical-align.less +9 -0
- package/src/android-bootstrap/less/mixins/opacity.less +8 -0
- package/src/android-bootstrap/less/mixins/pagination.less +24 -0
- package/src/android-bootstrap/less/mixins/panels.less +24 -0
- package/src/android-bootstrap/less/mixins/progress-bar.less +10 -0
- package/src/android-bootstrap/less/mixins/reset-filter.less +8 -0
- package/src/android-bootstrap/less/mixins/reset-text.less +18 -0
- package/src/android-bootstrap/less/mixins/resize.less +6 -0
- package/src/android-bootstrap/less/mixins/responsive-visibility.less +15 -0
- package/src/android-bootstrap/less/mixins/size.less +10 -0
- package/src/android-bootstrap/less/mixins/tab-focus.less +9 -0
- package/src/android-bootstrap/less/mixins/table-row.less +44 -0
- package/src/android-bootstrap/less/mixins/text-emphasis.less +9 -0
- package/src/android-bootstrap/less/mixins/text-overflow.less +8 -0
- package/src/android-bootstrap/less/mixins/vendor-prefixes.less +227 -0
- package/src/android-bootstrap/less/mixins.less +40 -0
- package/src/android-bootstrap/less/modals.less +151 -0
- package/src/android-bootstrap/less/navbar.less +660 -0
- package/src/android-bootstrap/less/navs.less +302 -0
- package/src/android-bootstrap/less/normalize.less +424 -0
- package/src/android-bootstrap/less/pager.less +76 -0
- package/src/android-bootstrap/less/pagination.less +89 -0
- package/src/android-bootstrap/less/panels.less +274 -0
- package/src/android-bootstrap/less/popovers.less +131 -0
- package/src/android-bootstrap/less/print.less +101 -0
- package/src/android-bootstrap/less/progress-bars.less +87 -0
- package/src/android-bootstrap/less/responsive-embed.less +35 -0
- package/src/android-bootstrap/less/responsive-utilities.less +194 -0
- package/src/android-bootstrap/less/scaffolding.less +161 -0
- package/src/android-bootstrap/less/tables.less +262 -0
- package/src/android-bootstrap/less/theme.less +291 -0
- package/src/android-bootstrap/less/thumbnails.less +36 -0
- package/src/android-bootstrap/less/tooltip.less +102 -0
- package/src/android-bootstrap/less/type.less +303 -0
- package/src/android-bootstrap/less/utilities.less +55 -0
- package/src/android-bootstrap/less/variables.less +896 -0
- package/src/android-bootstrap/less/wells.less +29 -0
- package/src/android.js +7 -4
- package/src/apply.js +85 -69
- package/src/applyAndroid.js +52 -39
- package/src/assets//345/210/240/351/231/244.png +0 -0
- package/src/components/android/AppOnetomany.vue +301 -0
- package/src/components/android/AppServiceView.vue +568 -0
- package/src/components/android/AppSign.vue +169 -0
- package/src/components/android/AppTakePic.vue +142 -0
- package/src/components/android/AppUpload.vue +232 -0
- package/src/components/android/Ignition/VentilationIgnition.vue +328 -0
- package/src/components/android/Ignition/VentilationIgnitionHandle.vue +330 -0
- package/src/components/android/Process/AppExplorationUser.vue +352 -0
- package/src/components/android/Process/AppServiceControl.vue +1050 -0
- package/src/components/android/Process/Processes/AppDevicesManagement.vue +336 -0
- package/src/components/android/Process/Processes/AppInstallationDetails.vue +770 -0
- package/src/components/android/Process/Processes/SurveyUserSign.vue +56 -0
- package/src/components/android/Sign/AppSignTask.vue +182 -0
- package/src/components/android/Sign/SignProcess.vue +102 -0
- package/src/components/android/Supervisory/AppProcessSupervisory.vue +183 -0
- package/src/components/android/Supervisory/AppSupervisoryCart.vue +121 -0
- package/src/components/android/Task/Build/BuildTsak.vue +114 -0
- package/src/components/android/Task/Survey/SurveyTsak.vue +112 -0
- package/src/components/android/TaskGraph.vue +130 -0
- package/src/components/android/newPackage/customerServiceManager.vue +218 -0
- package/src/components/android/newPackage/designDrawings.vue +94 -0
- package/src/components/android/newPackage/detailedData.vue +24 -0
- package/src/components/android/newPackage/projectPrice.vue +218 -0
- package/src/components/image/dwg.png +0 -0
- package/src/components/image/dxf.png +0 -0
- package/src/components/product/ApplyCharge/ApplyChargeList.vue +141 -62
- package/src/components/product/ApplyCharge/ApplyChargeSearch.vue +2 -2
- package/src/components/product/Function/InstallFunction.vue +53 -69
- package/src/components/product/Function/InstallInfoSelect.vue +118 -105
- package/src/components/product/Function/Service/FunctionServiceControl.vue +323 -148
- package/src/components/product/Ignition/IgnitionDispatch.vue +277 -0
- package/src/components/product/Ignition/IgnitionRecord.vue +216 -0
- package/src/components/product/Onetomany.vue +377 -0
- package/src/components/product/Print/BuildOrder/buildOrderList.vue +229 -0
- package/src/components/product/Print/BuildOrder/printBuildOrder.vue +265 -0
- package/src/components/product/Process/ExplorationSelect.vue +374 -347
- package/src/components/product/Process/ExplorationUser.vue +151 -138
- package/src/components/product/Process/Processes/ApplyMapCom.vue +83 -0
- package/src/components/product/Process/Processes/ExhibitionPicture.vue +27 -0
- package/src/components/product/Process/Processes/InstallationDetails.vue +823 -484
- package/src/components/product/Process/Processes/Print/img/10101.png +0 -0
- package/src/components/product/Process/Processes/Print/img/1010109.png +0 -0
- package/src/components/product/Process/Processes/Print/img/1010110.png +0 -0
- package/src/components/product/Process/Processes/Print/img/1010111.png +0 -0
- package/src/components/product/Process/Processes/Print/img/1010112.png +0 -0
- package/src/components/product/Process/Processes/Print/printCharge.vue +142 -0
- package/src/components/product/Process/Processes/addressAndUserinfoManagement.vue +59 -113
- package/src/components/product/Process/Processes/chargeManagement.vue +546 -562
- package/src/components/product/Process/Processes/devicesManagement.vue +360 -0
- package/src/components/product/Process/Processes/selectApply.vue +250 -0
- package/src/components/product/Process/Processes/selectUserinfo.vue +182 -0
- package/src/components/product/Process/Processes/supplementalAgreement.vue +182 -181
- package/src/components/product/Process/Service/ServiceControl.vue +1417 -856
- package/src/components/product/Process/Service/ShowBackReason.vue +33 -0
- package/src/components/product/ServiceView.vue +557 -680
- package/src/components/product/Stop/StopApply.vue +105 -0
- package/src/components/product/Stop/StopApplyList.vue +224 -0
- package/src/components/product/Supervisory/NewSupervisoryhCart.vue +167 -0
- package/src/components/product/Supervisory/Service/SupervisoryServiceControl.vue +231 -199
- package/src/components/product/Supervisory/SupervisoryControl.vue +22 -33
- package/src/components/product/Supervisory/SupervisoryList.vue +258 -208
- package/src/components/product/Supervisory/SupervisoryhCart.vue +52 -36
- package/src/components/product/VueUtils/ApplyUpload.vue +279 -261
- package/src/components/product/VueUtils/HighMeter.vue +208 -0
- package/src/expandcssAndroid.less +1034 -0
- package/src/main.js +27 -23
- package/src/public/history/HistoryApplyList.vue +108 -0
- package/src/public/history/PublicHistoryApply.vue +39 -0
- package/src/public/history/PublicSupervisoryhCart.vue +72 -0
- package/src/public/order/PublicOrderApply.vue +387 -0
- package/dist-android/index.html +0 -3
- package/dist-android/static/.gitkeep +0 -0
- package/dist-android/static/0.js +0 -2
- package/dist-android/static/0.js.map +0 -1
- package/dist-android/static/1.js +0 -2
- package/dist-android/static/1.js.map +0 -1
- package/dist-android/static/10.js +0 -2
- package/dist-android/static/10.js.map +0 -1
- package/dist-android/static/100.js +0 -2
- package/dist-android/static/100.js.map +0 -1
- package/dist-android/static/11.js +0 -2
- package/dist-android/static/11.js.map +0 -1
- package/dist-android/static/12.js +0 -2
- package/dist-android/static/12.js.map +0 -1
- package/dist-android/static/13.js +0 -2
- package/dist-android/static/13.js.map +0 -1
- package/dist-android/static/14.js +0 -2
- package/dist-android/static/14.js.map +0 -1
- package/dist-android/static/15.js +0 -2
- package/dist-android/static/15.js.map +0 -1
- package/dist-android/static/16.js +0 -2
- package/dist-android/static/16.js.map +0 -1
- package/dist-android/static/17.js +0 -2
- package/dist-android/static/17.js.map +0 -1
- package/dist-android/static/18.js +0 -2
- package/dist-android/static/18.js.map +0 -1
- package/dist-android/static/19.js +0 -2
- package/dist-android/static/19.js.map +0 -1
- package/dist-android/static/2.js +0 -2
- package/dist-android/static/2.js.map +0 -1
- package/dist-android/static/20.js +0 -2
- package/dist-android/static/20.js.map +0 -1
- package/dist-android/static/21.js +0 -2
- package/dist-android/static/21.js.map +0 -1
- package/dist-android/static/22.js +0 -2
- package/dist-android/static/22.js.map +0 -1
- package/dist-android/static/23.js +0 -2
- package/dist-android/static/23.js.map +0 -1
- package/dist-android/static/24.js +0 -2
- package/dist-android/static/24.js.map +0 -1
- package/dist-android/static/25.js +0 -2
- package/dist-android/static/25.js.map +0 -1
- package/dist-android/static/26.js +0 -2
- package/dist-android/static/26.js.map +0 -1
- package/dist-android/static/27.js +0 -2
- package/dist-android/static/27.js.map +0 -1
- package/dist-android/static/28.js +0 -2
- package/dist-android/static/28.js.map +0 -1
- package/dist-android/static/29.js +0 -2
- package/dist-android/static/29.js.map +0 -1
- package/dist-android/static/3.js +0 -2
- package/dist-android/static/3.js.map +0 -1
- package/dist-android/static/30.js +0 -2
- package/dist-android/static/30.js.map +0 -1
- package/dist-android/static/31.js +0 -2
- package/dist-android/static/31.js.map +0 -1
- package/dist-android/static/32.js +0 -2
- package/dist-android/static/32.js.map +0 -1
- package/dist-android/static/33.js +0 -2
- package/dist-android/static/33.js.map +0 -1
- package/dist-android/static/34.js +0 -2
- package/dist-android/static/34.js.map +0 -1
- package/dist-android/static/35.js +0 -2
- package/dist-android/static/35.js.map +0 -1
- package/dist-android/static/36.js +0 -2
- package/dist-android/static/36.js.map +0 -1
- package/dist-android/static/37.js +0 -2
- package/dist-android/static/37.js.map +0 -1
- package/dist-android/static/38.js +0 -2
- package/dist-android/static/38.js.map +0 -1
- package/dist-android/static/39.js +0 -2
- package/dist-android/static/39.js.map +0 -1
- package/dist-android/static/4.js +0 -2
- package/dist-android/static/4.js.map +0 -1
- package/dist-android/static/40.js +0 -2
- package/dist-android/static/40.js.map +0 -1
- package/dist-android/static/41.js +0 -2
- package/dist-android/static/41.js.map +0 -1
- package/dist-android/static/42.js +0 -2
- package/dist-android/static/42.js.map +0 -1
- package/dist-android/static/43.js +0 -2
- package/dist-android/static/43.js.map +0 -1
- package/dist-android/static/44.js +0 -2
- package/dist-android/static/44.js.map +0 -1
- package/dist-android/static/45.js +0 -2
- package/dist-android/static/45.js.map +0 -1
- package/dist-android/static/46.js +0 -2
- package/dist-android/static/46.js.map +0 -1
- package/dist-android/static/47.js +0 -2
- package/dist-android/static/47.js.map +0 -1
- package/dist-android/static/48.js +0 -2
- package/dist-android/static/48.js.map +0 -1
- package/dist-android/static/49.js +0 -2
- package/dist-android/static/49.js.map +0 -1
- package/dist-android/static/5.js +0 -2
- package/dist-android/static/5.js.map +0 -1
- package/dist-android/static/50.js +0 -2
- package/dist-android/static/50.js.map +0 -1
- package/dist-android/static/51.js +0 -2
- package/dist-android/static/51.js.map +0 -1
- package/dist-android/static/52.js +0 -2
- package/dist-android/static/52.js.map +0 -1
- package/dist-android/static/53.js +0 -2
- package/dist-android/static/53.js.map +0 -1
- package/dist-android/static/54.js +0 -2
- package/dist-android/static/54.js.map +0 -1
- package/dist-android/static/55.js +0 -2
- package/dist-android/static/55.js.map +0 -1
- package/dist-android/static/56.js +0 -2
- package/dist-android/static/56.js.map +0 -1
- package/dist-android/static/57.js +0 -2
- package/dist-android/static/57.js.map +0 -1
- package/dist-android/static/58.js +0 -2
- package/dist-android/static/58.js.map +0 -1
- package/dist-android/static/59.js +0 -2
- package/dist-android/static/59.js.map +0 -1
- package/dist-android/static/6.js +0 -2
- package/dist-android/static/6.js.map +0 -1
- package/dist-android/static/60.js +0 -2
- package/dist-android/static/60.js.map +0 -1
- package/dist-android/static/61.js +0 -2
- package/dist-android/static/61.js.map +0 -1
- package/dist-android/static/62.js +0 -2
- package/dist-android/static/62.js.map +0 -1
- package/dist-android/static/63.js +0 -2
- package/dist-android/static/63.js.map +0 -1
- package/dist-android/static/64.js +0 -2
- package/dist-android/static/64.js.map +0 -1
- package/dist-android/static/65.js +0 -2
- package/dist-android/static/65.js.map +0 -1
- package/dist-android/static/66.js +0 -2
- package/dist-android/static/66.js.map +0 -1
- package/dist-android/static/67.js +0 -2
- package/dist-android/static/67.js.map +0 -1
- package/dist-android/static/68.js +0 -2
- package/dist-android/static/68.js.map +0 -1
- package/dist-android/static/69.js +0 -2
- package/dist-android/static/69.js.map +0 -1
- package/dist-android/static/7.js +0 -6
- package/dist-android/static/7.js.map +0 -1
- package/dist-android/static/70.js +0 -2
- package/dist-android/static/70.js.map +0 -1
- package/dist-android/static/71.js +0 -2
- package/dist-android/static/71.js.map +0 -1
- package/dist-android/static/72.js +0 -2
- package/dist-android/static/72.js.map +0 -1
- package/dist-android/static/73.js +0 -2
- package/dist-android/static/73.js.map +0 -1
- package/dist-android/static/74.js +0 -2
- package/dist-android/static/74.js.map +0 -1
- package/dist-android/static/75.js +0 -2
- package/dist-android/static/75.js.map +0 -1
- package/dist-android/static/76.js +0 -2
- package/dist-android/static/76.js.map +0 -1
- package/dist-android/static/77.js +0 -2
- package/dist-android/static/77.js.map +0 -1
- package/dist-android/static/78.js +0 -2
- package/dist-android/static/78.js.map +0 -1
- package/dist-android/static/79.js +0 -2
- package/dist-android/static/79.js.map +0 -1
- package/dist-android/static/8.js +0 -2
- package/dist-android/static/8.js.map +0 -1
- package/dist-android/static/80.js +0 -2
- package/dist-android/static/80.js.map +0 -1
- package/dist-android/static/81.js +0 -2
- package/dist-android/static/81.js.map +0 -1
- package/dist-android/static/82.js +0 -2
- package/dist-android/static/82.js.map +0 -1
- package/dist-android/static/83.js +0 -2
- package/dist-android/static/83.js.map +0 -1
- package/dist-android/static/84.js +0 -2
- package/dist-android/static/84.js.map +0 -1
- package/dist-android/static/85.js +0 -2
- package/dist-android/static/85.js.map +0 -1
- package/dist-android/static/86.js +0 -2
- package/dist-android/static/86.js.map +0 -1
- package/dist-android/static/87.js +0 -2
- package/dist-android/static/87.js.map +0 -1
- package/dist-android/static/88.js +0 -2
- package/dist-android/static/88.js.map +0 -1
- package/dist-android/static/89.js +0 -2
- package/dist-android/static/89.js.map +0 -1
- package/dist-android/static/9.js +0 -3
- package/dist-android/static/9.js.map +0 -1
- package/dist-android/static/90.js +0 -2
- package/dist-android/static/90.js.map +0 -1
- package/dist-android/static/91.js +0 -2
- package/dist-android/static/91.js.map +0 -1
- package/dist-android/static/92.js +0 -2
- package/dist-android/static/92.js.map +0 -1
- package/dist-android/static/93.js +0 -2
- package/dist-android/static/93.js.map +0 -1
- package/dist-android/static/94.js +0 -2
- package/dist-android/static/94.js.map +0 -1
- package/dist-android/static/95.js +0 -2
- package/dist-android/static/95.js.map +0 -1
- package/dist-android/static/96.js +0 -2
- package/dist-android/static/96.js.map +0 -1
- package/dist-android/static/97.js +0 -2
- package/dist-android/static/97.js.map +0 -1
- package/dist-android/static/98.js +0 -2
- package/dist-android/static/98.js.map +0 -1
- package/dist-android/static/99.js +0 -2
- package/dist-android/static/99.js.map +0 -1
- package/dist-android/static/app.css +0 -2
- package/dist-android/static/app.css.map +0 -1
- package/dist-android/static/app.js +0 -80
- package/dist-android/static/app.js.map +0 -1
- package/dist-android/static/batchleft.png +0 -0
- package/dist-android/static/batchright.png +0 -0
- package/dist-android/static/bluemainbg.jpg +0 -0
- package/dist-android/static/config.json +0 -7
- package/dist-android/static/denglu.png +0 -0
- package/dist-android/static/huangtengbiaozhi.png +0 -0
- package/dist-android/static/jingyin.jpg +0 -0
- package/dist-android/static/login_bg.jpg +0 -0
- package/dist-android/static/login_title.png +0 -0
- package/dist-android/static/login_title1.png +0 -0
- package/dist-android/static/loginbg.jpg +0 -0
- package/dist-android/static/loginlogo.png +0 -0
- package/dist-android/static/main_logo.png +0 -0
- package/dist-android/static/mainbg.jpg +0 -0
- package/dist-android/static/menulogo.png +0 -0
- package/dist-android/static/newmainbg.jpg +0 -0
- package/dist-android/static/psicon.png +0 -0
- package/dist-android/static/singleleft.png +0 -0
- package/dist-android/static/singleright.png +0 -0
- package/dist-android/static/treeopen.png +0 -0
- package/dist-android/static/treeout.png +0 -0
- package/dist-android/static/treeset.png +0 -0
- package/dist-android/static/usericon.png +0 -0
- package/dist-android/static/workflow_apply.json +0 -766
- package/dist-android/static/xinxi.png +0 -0
- package/dist-android/static//344/277/256/346/224/271/345/257/206/347/240/201.png +0 -0
- package/dist-android/static//345/256/211/346/243/200/345/257/274/350/210/252/347/253/226/345/261/2173.png +0 -0
- package/dist-android/static//345/257/274/345/207/272/346/225/260/346/215/256.png +0 -0
- package/dist-android/static//346/270/205/347/251/272/346/225/260/346/215/256.png +0 -0
- package/src/components/app_apply/Acceptance.vue +0 -298
- package/src/components/app_apply/ApplyApp.vue +0 -91
- package/src/components/app_apply/ApplyDownList.vue +0 -166
- package/src/components/app_apply/ApplyInfo.vue +0 -56
- package/src/components/app_apply/ApplyListUpload.vue +0 -258
- package/src/components/app_apply/ApplyToDoList.vue +0 -165
- package/src/components/app_apply/ApplyUserInfo.vue +0 -56
- package/src/components/app_apply/FieldExploration.vue +0 -267
- package/src/components/app_apply/PlaceControler.vue +0 -258
- package/src/components/app_apply/ServiceControl.vue +0 -267
- package/src/components/app_apply/ServiceView.vue +0 -355
- package/src/components/app_apply/ToolsPage.vue +0 -51
- package/src/components/app_apply/Ventilation.vue +0 -199
- package/src/components/product/ApplyCharge/ApplyChargeReport.vue +0 -107
- package/src/components/product/Function/StopApplyCrrdList.vue +0 -176
- package/src/components/product/Function/functions/ApplyRecordCancel.vue +0 -102
- package/src/components/product/Function/functions/StopInstall.vue +0 -106
- package/src/components/product/Process/Processes/printCharge.vue +0 -126
- package/src/components/product/Process/ShowBackReason.vue +0 -32
- package/src/components/product/ReportForm/GasIgnitionSummary.vue +0 -352
- package/src/components/product/VueUtils/ToolsPage.vue +0 -51
- package/src/components/product/VueUtils/Tree.vue +0 -330
|
@@ -1,199 +0,0 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<div class="select-overspread repair-bg auto" >
|
|
3
|
-
<validator name="v" >
|
|
4
|
-
<div class="auto repair-info-content compatible" >
|
|
5
|
-
<div class="row auto">
|
|
6
|
-
<div class="col-xs-12 col-sm-6 col-md-6 form-input-group " :class="$v.f_gas_name.required ? 'has-error' : ''">
|
|
7
|
-
<label class="text-justify lb-left" for="f_gas_name">通气人员:</label>
|
|
8
|
-
<input type="text" class="form-control" id="f_gas_name" v-model="model.f_gas_name" v-validate:f_gas_name='{required: true}'/>
|
|
9
|
-
</div>
|
|
10
|
-
<div class="col-xs-12 col-sm-6 col-md-6 form-input-group" :class="[$v.f_gas_number.pattern ? 'has-error' : '']">
|
|
11
|
-
<label class="text-justify lb-left" for="f_gas_number">通气户数:</label>
|
|
12
|
-
<input type="number" class="form-control" id="f_gas_number" v-model="model.f_gas_number" v-validate:f_gas_number="{pattern:'/^[+]{0,1}(\\d+)$|^[+]{0,1}(\\d+\\.\\d+)$/'}">
|
|
13
|
-
</div>
|
|
14
|
-
<div class="col-xs-12 col-sm-6 col-md-6 form-input-group" :class="[$v.f_notgas_number.pattern ? 'has-error' : '']">
|
|
15
|
-
<label class="text-justify lb-left" for="f_notgas_number">未通气户数:</label>
|
|
16
|
-
<input type="number" class="form-control" id="f_notgas_number" v-model="model.f_notgas_number" v-validate:f_notgas_number="{pattern:'/^[+]{0,1}(\\d+)$|^[+]{0,1}(\\d+\\.\\d+)$/'}">
|
|
17
|
-
</div>
|
|
18
|
-
<div class="col-xs-12 col-sm-6 col-md-6 form-input-group" :class="$v.f_regulatoruser.required ? 'has-error' : ''">
|
|
19
|
-
<label class="text-justify lb-left" for="f_regulatoruser">调压人员:</label>
|
|
20
|
-
<input type="text" class="form-control" id="f_regulatoruser" v-model="model.f_regulatoruser" v-validate:f_regulatoruser='{required: true}'/>
|
|
21
|
-
</div>
|
|
22
|
-
<div class="col-xs-12 col-sm-12 col-md-6 form-input-group">
|
|
23
|
-
<input type="checkbox" class="" id="checkbox" v-model="model.f_fee_state"/>
|
|
24
|
-
<label for="checkbox" class="text-justify lb-left">费用是否结清</label>
|
|
25
|
-
</div>
|
|
26
|
-
<div class="col-xs-12 col-sm-6 col-md-6 form-input-group">
|
|
27
|
-
<label class="text-justify lb-left">通气前安检情况:</label>
|
|
28
|
-
<textarea class="form-control" cols="30" rows="4" style="resize: vertical;" v-model="model.f_gas_security" ></textarea>
|
|
29
|
-
</div>
|
|
30
|
-
<div class="col-xs-12 col-sm-6 col-md-6 form-input-group">
|
|
31
|
-
<label class="text-justify lb-left">通气备注:</label>
|
|
32
|
-
<textarea class="form-control" cols="30" rows="4" style="resize: vertical;" v-model="model.f_gas_remarks" ></textarea>
|
|
33
|
-
</div>
|
|
34
|
-
|
|
35
|
-
<div class="col-xs-12 col-sm-6 col-md-6 form-input-group">
|
|
36
|
-
<label class="text-justify lb-left" for="costmatter">部门:</label>
|
|
37
|
-
<input type="text" class="form-control" id="costmatter" v-model="model.f_gas_department" readonly >
|
|
38
|
-
</div>
|
|
39
|
-
<div class="col-xs-12 col-sm-6 col-md-6 form-input-group">
|
|
40
|
-
<label class="text-justify lb-left" for="costmatter">操作人:</label>
|
|
41
|
-
<input type="text" class="form-control" id="costmatter" v-model="model.f_gas_operator" readonly >
|
|
42
|
-
</div>
|
|
43
|
-
<div class="col-xs-12 col-sm-6 col-md-6 form-input-group">
|
|
44
|
-
<label class="lb-left text-justify">分公司:</label>
|
|
45
|
-
<input type="text" class="form-control" v-model="model.f_filiale" readonly />
|
|
46
|
-
</div>
|
|
47
|
-
<div class="col-xs-12 col-sm-6 col-md-6 form-input-group">
|
|
48
|
-
<label class="lb-left text-justify">操作日期:</label>
|
|
49
|
-
<input type="text" class="form-control" v-model="model.f_gas_date" readonly >
|
|
50
|
-
</div>
|
|
51
|
-
</div>
|
|
52
|
-
|
|
53
|
-
</div>
|
|
54
|
-
<div style="text-align:center;margin-top: 5px;" v-if="model.canedit">
|
|
55
|
-
<button @click="save" type="button" class="btn btn-primary radius_btn" >保存</button>
|
|
56
|
-
<button @click="upload" type="button" class="btn btn-primary radius_btn" >上传</button>
|
|
57
|
-
</div>
|
|
58
|
-
</validator>
|
|
59
|
-
</div>
|
|
60
|
-
</template>
|
|
61
|
-
<script>
|
|
62
|
-
import Vue from 'vue'
|
|
63
|
-
import * as Util from '../Util'
|
|
64
|
-
import co from 'co'
|
|
65
|
-
|
|
66
|
-
let uploadApply = function * (self) {
|
|
67
|
-
// self.model.f_app_upload = '已上传'
|
|
68
|
-
var param = {
|
|
69
|
-
model: {
|
|
70
|
-
f_processid: self.model.f_process_id
|
|
71
|
-
},
|
|
72
|
-
loginUser: {
|
|
73
|
-
id: Vue.user.id,
|
|
74
|
-
name: Vue.user.name,
|
|
75
|
-
ename: Vue.user.ename
|
|
76
|
-
},
|
|
77
|
-
employeetemplate: self.employeetemplate,// 指派勘察人员
|
|
78
|
-
subdep: '提交'
|
|
79
|
-
}
|
|
80
|
-
var data ={tablename:'t_apply',parameters:self.model,param: param}
|
|
81
|
-
// var url = self.$androidUtil.getProxyUrl() + '/rs/logic/uploadapply'
|
|
82
|
-
// console.log(`即将上传,url>>>> ${url}`)
|
|
83
|
-
// let res = yield self.$resetpost(url, {data:data})
|
|
84
|
-
let res = yield self.$androidUtil.bzLogic('uploadapply',data)
|
|
85
|
-
console.log(`上传返回json>>>>>>>>>>>> ${JSON.stringify(res)}`)
|
|
86
|
-
if(!res){
|
|
87
|
-
self.$showMessage('上传失败!')
|
|
88
|
-
return
|
|
89
|
-
}
|
|
90
|
-
if(res.code != 200){
|
|
91
|
-
self.$showMessage('上传失败,原因:' + res.msg)
|
|
92
|
-
return
|
|
93
|
-
}
|
|
94
|
-
self.$showMessage('上传成功!')
|
|
95
|
-
self.updateState()
|
|
96
|
-
self.$parent.$back()
|
|
97
|
-
}
|
|
98
|
-
|
|
99
|
-
export default {
|
|
100
|
-
title: '通气点火',
|
|
101
|
-
props: {
|
|
102
|
-
model: { // 传入一条报建信息
|
|
103
|
-
type: Object
|
|
104
|
-
}
|
|
105
|
-
},
|
|
106
|
-
data () {
|
|
107
|
-
return {
|
|
108
|
-
signType:{
|
|
109
|
-
type: Boolean,
|
|
110
|
-
default: true
|
|
111
|
-
},
|
|
112
|
-
}
|
|
113
|
-
},
|
|
114
|
-
methods: {
|
|
115
|
-
upload() {
|
|
116
|
-
var reg = /^\d+$/
|
|
117
|
-
if (!reg.test(this.model.f_gas_number)) {
|
|
118
|
-
this.$showMessage('通气户数必须为整数!')
|
|
119
|
-
return false;
|
|
120
|
-
}
|
|
121
|
-
if (!reg.test(this.model.f_notgas_number)) {
|
|
122
|
-
this.$showMessage('未通气户数必须为整数!')
|
|
123
|
-
return false;
|
|
124
|
-
}
|
|
125
|
-
this.model.f_app_upload = '已完成'
|
|
126
|
-
console.log(`前台开始本地保存,传入数据json>>>>>>>${JSON.stringify(this.model)}`)
|
|
127
|
-
let res = this.$androidUtil.bzLogic('saveapplyforapp', {parameters:this.model})
|
|
128
|
-
if(res.code != 200){
|
|
129
|
-
this.$showMessage('保存失败,上传终止!')
|
|
130
|
-
return
|
|
131
|
-
}
|
|
132
|
-
let gen = uploadApply(this)
|
|
133
|
-
co(gen)
|
|
134
|
-
},
|
|
135
|
-
mute () {
|
|
136
|
-
HostApp.mute()
|
|
137
|
-
},
|
|
138
|
-
// 上传完成后回写本地上传状态
|
|
139
|
-
updateState(){
|
|
140
|
-
console.log(`前台上传完成,开始回写本地上传状态`)
|
|
141
|
-
this.model.f_app_upload = '已上传'
|
|
142
|
-
this.$androidUtil.bzLogic('saveapplyforapp', {parameters:this.model})
|
|
143
|
-
},
|
|
144
|
-
save() {
|
|
145
|
-
var reg = /^\d+$/
|
|
146
|
-
if (!reg.test(this.model.f_gas_number)) {
|
|
147
|
-
this.$showMessage('通气户数必须为整数!')
|
|
148
|
-
return false;
|
|
149
|
-
}
|
|
150
|
-
if (!reg.test(this.model.f_notgas_number)) {
|
|
151
|
-
this.$showMessage('未通气户数必须为整数!')
|
|
152
|
-
return false;
|
|
153
|
-
}
|
|
154
|
-
this.model.f_app_upload = '已完成'
|
|
155
|
-
console.log(`前台开始本地保存,传入数据json>>>>>>>${JSON.stringify(this.model)}`)
|
|
156
|
-
let res = this.$androidUtil.bzLogic('saveapplyforapp', {parameters:this.model})
|
|
157
|
-
console.log(`前台保存结束,返回res>>>>>>>${JSON.stringify(res)}`)
|
|
158
|
-
if(res.code == 200){
|
|
159
|
-
console.log(`前台保存成功!`)
|
|
160
|
-
this.$showMessage('保存成功!')
|
|
161
|
-
}else{
|
|
162
|
-
console.log('前台保存失败')
|
|
163
|
-
this.$showMessage('保存失败!')
|
|
164
|
-
}
|
|
165
|
-
}
|
|
166
|
-
},
|
|
167
|
-
ready(){
|
|
168
|
-
this.model.f_completed_date = Util.toStandardTimeString()
|
|
169
|
-
this.model.f_gas_date = Util.toStandardDateString()
|
|
170
|
-
if(navigator.userAgent.match('iPad') || navigator.userAgent.match('iPhone')){
|
|
171
|
-
this.signType = false
|
|
172
|
-
}
|
|
173
|
-
if(this.model && this.model.f_single_man){
|
|
174
|
-
this.model.f_single_man = this.f_single_man
|
|
175
|
-
}
|
|
176
|
-
if(Vue.user){
|
|
177
|
-
console.log('获取到Vue.user')
|
|
178
|
-
this.model.f_gas_department = Vue.user.f_parentname
|
|
179
|
-
this.model.f_gas_operator = Vue.user.name
|
|
180
|
-
}
|
|
181
|
-
},
|
|
182
|
-
watch:{
|
|
183
|
-
'model.f_fee_state'(val){
|
|
184
|
-
// this.$showMessage(val)
|
|
185
|
-
if(val){
|
|
186
|
-
this.model.f_fee_state = 1
|
|
187
|
-
}else{
|
|
188
|
-
this.model.f_fee_state = 0
|
|
189
|
-
}
|
|
190
|
-
}
|
|
191
|
-
}
|
|
192
|
-
}
|
|
193
|
-
</script>
|
|
194
|
-
<style>
|
|
195
|
-
.radius_btn{
|
|
196
|
-
border-radius: 5px;
|
|
197
|
-
margin-top: 0.1rem;
|
|
198
|
-
}
|
|
199
|
-
</style>
|
|
@@ -1,107 +0,0 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<div class="flex-row">
|
|
3
|
-
<div class="basic-main">
|
|
4
|
-
<criteria-paged :model="model" :pager="false" v-ref:cp>
|
|
5
|
-
<criteria partial='criteria' @condition-changed='search' v-ref:cri>
|
|
6
|
-
<div class="form-horizontal select-overspread container-fluid auto" partial>
|
|
7
|
-
<div class="row">
|
|
8
|
-
<div class="form-group col-sm-3">
|
|
9
|
-
<label for="startDate" class="font_normal_body">开始时间:</label>
|
|
10
|
-
<datepicker id="startDate" placeholder="开始日期"
|
|
11
|
-
style="width: 60%!important;"
|
|
12
|
-
v-model="model.startDate"
|
|
13
|
-
:value.sync="model.startDate"
|
|
14
|
-
:format="'yyyy-MM-dd HH:mm:ss'"
|
|
15
|
-
:show-reset-button="true"
|
|
16
|
-
condition="f_charge_date >= '{}'">
|
|
17
|
-
</datepicker>
|
|
18
|
-
</div>
|
|
19
|
-
<div class="form-group col-sm-3">
|
|
20
|
-
<label for="endDate" class="font_normal_body">结束时间:</label>
|
|
21
|
-
<datepicker id="endDate" placeholder="结束日期"
|
|
22
|
-
style="width: 60%!important;"
|
|
23
|
-
v-model="model.endDate"
|
|
24
|
-
:value.sync="model.endDate"
|
|
25
|
-
:format="'yyyy-MM-dd HH:mm:ss'"
|
|
26
|
-
:show-reset-button="true"
|
|
27
|
-
condition="f_charge_date <= '{}'">
|
|
28
|
-
</datepicker>
|
|
29
|
-
</div>
|
|
30
|
-
<div class="form-group col-sm-3 button-range">
|
|
31
|
-
<button class="button_search button_spacing" @click="$parent.$parent.search()" v-el:cx>查询</button>
|
|
32
|
-
<button class="button_clear button_spacing" @click="$parent.$parent.clear()">清空</button>
|
|
33
|
-
</div>
|
|
34
|
-
</div>
|
|
35
|
-
</div>
|
|
36
|
-
</criteria>
|
|
37
|
-
<data-grid :model="model" partial='list' v-ref:grid style="overflow: auto" class="list_area table_sy">
|
|
38
|
-
<template partial='head'>
|
|
39
|
-
<tr>
|
|
40
|
-
<th>部门</th>
|
|
41
|
-
<th>户数</th>
|
|
42
|
-
<th>金额</th>
|
|
43
|
-
</tr>
|
|
44
|
-
</template>
|
|
45
|
-
<template partial='body'>
|
|
46
|
-
<tr >
|
|
47
|
-
<td style="text-align: center;">
|
|
48
|
-
<nobr><font>{{row.depname}}</font></nobr>
|
|
49
|
-
</td>
|
|
50
|
-
<td style="text-align: center;">
|
|
51
|
-
<nobr><font>{{row.address_count}}</font></nobr>
|
|
52
|
-
</td>
|
|
53
|
-
<td style="text-align: center;">
|
|
54
|
-
<nobr><font>{{row.sum_money}}</font></nobr>
|
|
55
|
-
</td>
|
|
56
|
-
</tr>
|
|
57
|
-
</template>
|
|
58
|
-
<template partial='foot'>
|
|
59
|
-
<tr>
|
|
60
|
-
<td style="text-align: center;">合计</td>
|
|
61
|
-
<td style="text-align: center;">{{model.sums.address_count}}</td>
|
|
62
|
-
<td style="text-align: center;">{{model.sums.sum_money}}</td>
|
|
63
|
-
</tr>
|
|
64
|
-
</template>
|
|
65
|
-
</data-grid>
|
|
66
|
-
</criteria-paged>
|
|
67
|
-
</div>
|
|
68
|
-
</div>
|
|
69
|
-
</template>
|
|
70
|
-
|
|
71
|
-
<script>
|
|
72
|
-
import {PagedList} from 'vue-client'
|
|
73
|
-
|
|
74
|
-
export default {
|
|
75
|
-
title: '报建收费报表',
|
|
76
|
-
data () {
|
|
77
|
-
return {
|
|
78
|
-
model: new PagedList('rs/sql/countApplyCharge', 30, {
|
|
79
|
-
data: {
|
|
80
|
-
orgid: this.$login.f.orgid
|
|
81
|
-
}
|
|
82
|
-
}, {
|
|
83
|
-
address_count: 0,
|
|
84
|
-
sum_money: 0
|
|
85
|
-
})
|
|
86
|
-
}
|
|
87
|
-
},
|
|
88
|
-
ready () {
|
|
89
|
-
// 调用查询
|
|
90
|
-
this.search()
|
|
91
|
-
},
|
|
92
|
-
methods: {
|
|
93
|
-
clear () {
|
|
94
|
-
Object.keys(this.$refs.cp.$refs.cri.model).forEach((key) => {
|
|
95
|
-
this.$refs.cp.$refs.cri.model[key] = []
|
|
96
|
-
})
|
|
97
|
-
},
|
|
98
|
-
// 查询
|
|
99
|
-
search () {
|
|
100
|
-
this.$refs.cp.$refs.cri.search()
|
|
101
|
-
}
|
|
102
|
-
}
|
|
103
|
-
}
|
|
104
|
-
</script>
|
|
105
|
-
|
|
106
|
-
<style scoped>
|
|
107
|
-
</style>
|
|
@@ -1,176 +0,0 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<div>
|
|
3
|
-
<criteria-paged :model="model" v-ref:paged :pager="false">
|
|
4
|
-
<criteria partial='criteria' @condition-changed='search' v-ref:cri>
|
|
5
|
-
<div novalidate class="form-horizontal select-overspread container-fluid auto" partial >
|
|
6
|
-
<div class="row">
|
|
7
|
-
<div class="form-group col-sm-12 button-range">
|
|
8
|
-
<button class="button_search button_spacing" @click="search()">查询</button>
|
|
9
|
-
<div
|
|
10
|
-
:class="{'button_shrink_top':$parent.$parent.criteriaShow,'button_shrink_bottom':!$parent.$parent.criteriaShow}"
|
|
11
|
-
@click="$parent.$parent.criteriaShow = !$parent.$parent.criteriaShow"
|
|
12
|
-
class="button_spacing"
|
|
13
|
-
style="float: right">
|
|
14
|
-
</div>
|
|
15
|
-
</div>
|
|
16
|
-
</div>
|
|
17
|
-
<div class="row" v-show="$parent.$parent.criteriaShow">
|
|
18
|
-
<div class="form-group col-sm-12">
|
|
19
|
-
<label class="font_normal_body"> </label>
|
|
20
|
-
<input type="text" class="input_search" v-model="model.f_user_name"
|
|
21
|
-
v-on:keyup.enter="search" condition="f_user_name like '%{}%'" placeholder='联系人'>
|
|
22
|
-
</div>
|
|
23
|
-
<div class="form-group col-sm-12">
|
|
24
|
-
<label class="font_normal_body"> </label>
|
|
25
|
-
<input type="text" class="input_search" v-model="model.f_phone"
|
|
26
|
-
v-on:keyup.enter="search" condition="f_phone like '%{}%'" placeholder='电话号码'>
|
|
27
|
-
</div>
|
|
28
|
-
</div>
|
|
29
|
-
</div>
|
|
30
|
-
</criteria>
|
|
31
|
-
<data-grid :model="model" partial='list' v-ref:grid class="list_area table_sy">
|
|
32
|
-
<template partial='head'>
|
|
33
|
-
<tr class="title">
|
|
34
|
-
<th colspan="2" style="white-space: nowrap;">已终止报建工程</th>
|
|
35
|
-
</tr>
|
|
36
|
-
</template>
|
|
37
|
-
<template partial='body'>
|
|
38
|
-
<tr>
|
|
39
|
-
<td style="text-align: center;">{{row.f_user_name}}</td>
|
|
40
|
-
<td style="text-align: center;">
|
|
41
|
-
<dropdown>
|
|
42
|
-
<button @click="" type="button" data-toggle="dropdown" style="border: 0px;background: none;">
|
|
43
|
-
<span class="glyphicon glyphicon-th-list" style="position: inherit;"></span>
|
|
44
|
-
</button>
|
|
45
|
-
</dropdown>
|
|
46
|
-
</td>
|
|
47
|
-
</tr>
|
|
48
|
-
</template>
|
|
49
|
-
</data-grid>
|
|
50
|
-
<!-- <div partial="list" style="overflow: auto">-->
|
|
51
|
-
<!-- <div class="panel panel-default auto" v-for="item in model.rows">-->
|
|
52
|
-
<!-- <div class="panel-heading auto" style="background-color: #E8F4FF" @click="$parent.$parent.showTable(item)">-->
|
|
53
|
-
<!-- {{item.f_user_name}}-->
|
|
54
|
-
<!-- <div style="float: right">-->
|
|
55
|
-
<!-- <dropdown class="auto">-->
|
|
56
|
-
<!-- <button type="button" data-toggle="dropdown" style="border: 0px;background: none;">-->
|
|
57
|
-
<!-- <span class="glyphicon glyphicon-th-list"></span>-->
|
|
58
|
-
<!-- </button>-->
|
|
59
|
-
<!-- <ul slot="dropdown-menu" class="dropdown-menu dropdown-menu-right" style=" min-width: 60px;">-->
|
|
60
|
-
<!-- <li>-->
|
|
61
|
-
<!-- <a href="#" @click.stop="$parent.$parent.operate(item)">撤销</a>-->
|
|
62
|
-
<!-- </li>-->
|
|
63
|
-
<!-- </ul>-->
|
|
64
|
-
<!-- </dropdown>-->
|
|
65
|
-
<!-- </div>-->
|
|
66
|
-
<!-- </div>-->
|
|
67
|
-
<!-- <table class="table" v-if="$parent.$parent.tableShow(item)">-->
|
|
68
|
-
<!-- <tr>-->
|
|
69
|
-
<!-- <td><b>终止原因</b></td>-->
|
|
70
|
-
<!-- <td>-->
|
|
71
|
-
<!-- <span data-toggle="tooltip" data-placement="left" :title="item.f_stop_remarks">-->
|
|
72
|
-
<!-- {{item.f_stop_remarks.length > 5 ? item.f_stop_remarks.substring(0,5) + '...' : item.f_stop_remarks.length}}-->
|
|
73
|
-
<!-- </span>-->
|
|
74
|
-
<!-- </td>-->
|
|
75
|
-
<!-- </tr>-->
|
|
76
|
-
<!-- <tr>-->
|
|
77
|
-
<!-- <td><b>流程节点</b></td>-->
|
|
78
|
-
<!-- <td>-->
|
|
79
|
-
<!-- <span data-toggle="tooltip" data-placement="left" :title="item.defname">-->
|
|
80
|
-
<!-- {{item.defname.length > 5 ? item.defname.substring(0,5) + '...' : item.defname}}-->
|
|
81
|
-
<!-- </span>-->
|
|
82
|
-
<!-- </td>-->
|
|
83
|
-
<!-- </tr>-->
|
|
84
|
-
<!-- <tr>-->
|
|
85
|
-
<!-- <td><b>操作人</b></td>-->
|
|
86
|
-
<!-- <td>-->
|
|
87
|
-
<!-- <span data-toggle="tooltip" data-placement="left" :title="item.f_operator">-->
|
|
88
|
-
<!-- {{item.f_operator.length > 5 ? item.f_operator.substring(0,5) + '...' : item.f_operator}}-->
|
|
89
|
-
<!-- </span>-->
|
|
90
|
-
<!-- </td>-->
|
|
91
|
-
<!-- </tr>-->
|
|
92
|
-
<!-- <tr>-->
|
|
93
|
-
<!-- <td><b>操作部门</b></td>-->
|
|
94
|
-
<!-- <td>-->
|
|
95
|
-
<!-- <span data-toggle="tooltip" data-placement="left" :title="item.f_department">-->
|
|
96
|
-
<!-- {{item.f_department.length > 5 ? item.f_department.substring(0,5) + '...' : item.f_department}}-->
|
|
97
|
-
<!-- </span>-->
|
|
98
|
-
<!-- </td>-->
|
|
99
|
-
<!-- </tr>-->
|
|
100
|
-
<!-- <tr>-->
|
|
101
|
-
<!-- <td><b>操作日期</b></td>-->
|
|
102
|
-
<!-- <td>-->
|
|
103
|
-
<!-- <span data-toggle="tooltip" data-placement="left" :title="item.f_date">-->
|
|
104
|
-
<!-- {{new Date(item.f_date).Format('yyyy-MM-dd')}}...-->
|
|
105
|
-
<!-- </span>-->
|
|
106
|
-
<!-- </td>-->
|
|
107
|
-
<!-- </tr>-->
|
|
108
|
-
<!-- </table>-->
|
|
109
|
-
<!-- </div>-->
|
|
110
|
-
<!-- </div>-->
|
|
111
|
-
</criteria-paged>
|
|
112
|
-
</div>
|
|
113
|
-
</template>
|
|
114
|
-
<script>
|
|
115
|
-
/**
|
|
116
|
-
*操作记录信息
|
|
117
|
-
*/
|
|
118
|
-
import {HttpResetClass} from 'vue-client'
|
|
119
|
-
import { PagedList } from 'vue-client'
|
|
120
|
-
Date.prototype.Format = function (fmt) {
|
|
121
|
-
var o = {
|
|
122
|
-
'M+': this.getMonth() + 1, // 月份
|
|
123
|
-
'd+': this.getDate(), // 日
|
|
124
|
-
'H+': this.getHours(), // 小时
|
|
125
|
-
'm+': this.getMinutes(), // 分
|
|
126
|
-
's+': this.getSeconds(), // 秒
|
|
127
|
-
'q+': Math.floor((this.getMonth() + 3) / 3), // 季度
|
|
128
|
-
'S': this.getMilliseconds() // 毫秒
|
|
129
|
-
}
|
|
130
|
-
if (/(y+)/.test(fmt)) fmt = fmt.replace(RegExp.$1, (this.getFullYear() + '').substr(4 - RegExp.$1.length))
|
|
131
|
-
for (var k in o) {
|
|
132
|
-
if (new RegExp('(' + k + ')').test(fmt)) fmt = fmt.replace(RegExp.$1, (RegExp.$1.length === 1) ? (o[k]) : (('00' + o[k]).substr(('' + o[k]).length)))
|
|
133
|
-
}
|
|
134
|
-
return fmt
|
|
135
|
-
}
|
|
136
|
-
export default {
|
|
137
|
-
title: '操作汇总',
|
|
138
|
-
data () {
|
|
139
|
-
return {
|
|
140
|
-
model: new PagedList('rs/sql/getStopApply', 9999999, {
|
|
141
|
-
data: {
|
|
142
|
-
id: this.$login.f.id,
|
|
143
|
-
orgid: this.$login.f.orgid
|
|
144
|
-
}
|
|
145
|
-
}),
|
|
146
|
-
row: null, // 当前点击的数据
|
|
147
|
-
criteriaShow: false // 控制查询条件
|
|
148
|
-
}
|
|
149
|
-
},
|
|
150
|
-
props: {
|
|
151
|
-
},
|
|
152
|
-
ready () {
|
|
153
|
-
this.$refs.paged.$refs.cri.search()
|
|
154
|
-
},
|
|
155
|
-
methods: {
|
|
156
|
-
// 控制查询
|
|
157
|
-
hidden () {
|
|
158
|
-
this.criteriaShow = !this.criteriaShow
|
|
159
|
-
},
|
|
160
|
-
// 当前点击的卡片数据
|
|
161
|
-
showTable (row) {
|
|
162
|
-
this.row = row
|
|
163
|
-
},
|
|
164
|
-
// 判断是否显示详细信息
|
|
165
|
-
tableShow (row) {
|
|
166
|
-
return this.row === row
|
|
167
|
-
},
|
|
168
|
-
// 点击撤销
|
|
169
|
-
operate (row) {
|
|
170
|
-
this.$dispatch('operate', row)
|
|
171
|
-
}
|
|
172
|
-
},
|
|
173
|
-
watch: {
|
|
174
|
-
}
|
|
175
|
-
}
|
|
176
|
-
</script>
|
|
@@ -1,102 +0,0 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<div class="col-sm-12 auto">
|
|
3
|
-
<validator name="v">
|
|
4
|
-
<form class="form-horizontal">
|
|
5
|
-
<div class="form-group col-sm-12" style="margin: 100px 0px">
|
|
6
|
-
<div class="col-sm-2">
|
|
7
|
-
<label class="control-label col-sm-12">撤销原因:</label>
|
|
8
|
-
</div>
|
|
9
|
-
<div class="col-sm-10">
|
|
10
|
-
<textarea class="form-control" rows="3" v-model="model.f_cancel_reason"></textarea>
|
|
11
|
-
</div>
|
|
12
|
-
</div>
|
|
13
|
-
<div class="col-sm-12 form-group text-center">
|
|
14
|
-
<div class="col-sm-12 form-group text-center">
|
|
15
|
-
<div class="form-group col-sm-6 center-block">
|
|
16
|
-
<label class="col-sm-4">分公司:</label>
|
|
17
|
-
<div class="col-sm-8" style="text-align: left">
|
|
18
|
-
{{model.f_filiale}}
|
|
19
|
-
</div>
|
|
20
|
-
</div>
|
|
21
|
-
<div class="form-group col-sm-6 center-block">
|
|
22
|
-
<label class="col-sm-4">操作日期:</label>
|
|
23
|
-
<div class="col-sm-8" style="text-align: left">
|
|
24
|
-
{{model.f_date}}
|
|
25
|
-
</div>
|
|
26
|
-
</div>
|
|
27
|
-
</div>
|
|
28
|
-
<div class="col-sm-12 form-group text-center">
|
|
29
|
-
<div class="form-group col-sm-6 center-block">
|
|
30
|
-
<label class="col-sm-4">部门:</label>
|
|
31
|
-
<div class="col-sm-8" style="text-align: left">
|
|
32
|
-
{{model.f_department}}
|
|
33
|
-
</div>
|
|
34
|
-
</div>
|
|
35
|
-
<div class="form-group col-sm-6 center-block">
|
|
36
|
-
<label class="col-sm-4">操作人:</label>
|
|
37
|
-
<div class="col-sm-8" style="text-align: left">
|
|
38
|
-
{{model.f_operator}}
|
|
39
|
-
</div>
|
|
40
|
-
</div>
|
|
41
|
-
</div>
|
|
42
|
-
</div>
|
|
43
|
-
</form>
|
|
44
|
-
</validator>
|
|
45
|
-
|
|
46
|
-
<div class="from-group col-sm-12">
|
|
47
|
-
<center>
|
|
48
|
-
<button type="button" @click="confirm()" :disabled="disabled" class="btn btn-primary" style="width: 100px">
|
|
49
|
-
保存
|
|
50
|
-
</button>
|
|
51
|
-
</center>
|
|
52
|
-
</div>
|
|
53
|
-
</div>
|
|
54
|
-
</template>
|
|
55
|
-
<script>
|
|
56
|
-
import * as Util from '../../../Util'
|
|
57
|
-
import {HttpResetClass} from 'vue-client'
|
|
58
|
-
export default {
|
|
59
|
-
title: '终止报建',
|
|
60
|
-
props: ['selectdata'],
|
|
61
|
-
data () {
|
|
62
|
-
return {
|
|
63
|
-
model: {
|
|
64
|
-
f_date: Util.toStandardTimeString(),
|
|
65
|
-
f_department: this.$login.f.f_department_name,
|
|
66
|
-
f_operator: this.$login.f.name,
|
|
67
|
-
f_filiale: this.$login.f.orgs,
|
|
68
|
-
f_cancel_reason: null
|
|
69
|
-
},
|
|
70
|
-
disabled: true
|
|
71
|
-
}
|
|
72
|
-
},
|
|
73
|
-
methods: {
|
|
74
|
-
confirm () {
|
|
75
|
-
this.disabled = true
|
|
76
|
-
let http = new HttpResetClass()
|
|
77
|
-
let data = {
|
|
78
|
-
loginUser: this.$login.f,
|
|
79
|
-
selectdata: this.selectdata,
|
|
80
|
-
model: this.model
|
|
81
|
-
}
|
|
82
|
-
http.load('POST', 'rs/logic/cancelStopApply', {data: data}, {resolveMsg: null,rejectMsg: '删除失败'})
|
|
83
|
-
.then(res => {
|
|
84
|
-
if (res.data === 200) {
|
|
85
|
-
this.$dispatch('query')
|
|
86
|
-
} else {
|
|
87
|
-
this.$showMessage('撤销失败')
|
|
88
|
-
}
|
|
89
|
-
})
|
|
90
|
-
}
|
|
91
|
-
},
|
|
92
|
-
watch: {
|
|
93
|
-
'model.f_cancel_reason' (val) {
|
|
94
|
-
if (val != null || val !== '') {
|
|
95
|
-
this.disabled = false
|
|
96
|
-
}
|
|
97
|
-
}
|
|
98
|
-
}
|
|
99
|
-
}
|
|
100
|
-
</script>
|
|
101
|
-
<style scoped>
|
|
102
|
-
</style>
|