apply-clients 7.1.35 → 7.1.36
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/android.html +4 -0
- package/build/css-loaders.js +34 -0
- package/build/dev-client.js +8 -0
- package/build/dev-server.js +151 -0
- package/build/example-server.js +80 -0
- package/build/release.sh +28 -0
- package/build/utils.js +80 -0
- package/build/webpack.base.conf.js +123 -0
- package/build/webpack.baseandroid.conf.js +123 -0
- package/build/webpack.dev.conf.js +43 -0
- package/build/webpack.devandroid.conf.js +34 -0
- package/build/webpack.example.conf.js +49 -0
- package/build/webpack.prod.conf.js +60 -0
- package/build/webpack.prodandroid.conf.js +60 -0
- package/dist-android.7z +0 -0
- package/dist.7z +0 -0
- package/index.html +4 -1
- package/package.json +11 -7
- package/src/AndroidApp.vue +21 -14
- package/src/App.vue +18 -20
- package/{dist-android/static → src/android-bootstrap/fonts}/glyphicons-halflings-regular.eot +0 -0
- package/{dist-android/static → src/android-bootstrap/fonts}/glyphicons-halflings-regular.svg +0 -0
- package/{dist-android/static → src/android-bootstrap/fonts}/glyphicons-halflings-regular.ttf +0 -0
- package/{dist-android/static → src/android-bootstrap/fonts}/glyphicons-halflings-regular.woff +0 -0
- package/{dist-android/static → src/android-bootstrap/fonts}/glyphicons-halflings-regular.woff2 +0 -0
- package/src/android-bootstrap/less/.csscomb.json +304 -0
- package/src/android-bootstrap/less/.csslintrc +19 -0
- package/src/android-bootstrap/less/alerts.less +73 -0
- package/src/android-bootstrap/less/badges.less +66 -0
- package/src/android-bootstrap/less/bootstrap.less +56 -0
- package/src/android-bootstrap/less/breadcrumbs.less +26 -0
- package/src/android-bootstrap/less/button-groups.less +247 -0
- package/src/android-bootstrap/less/buttons.less +173 -0
- package/src/android-bootstrap/less/carousel.less +269 -0
- package/src/android-bootstrap/less/close.less +34 -0
- package/src/android-bootstrap/less/code.less +69 -0
- package/src/android-bootstrap/less/component-animations.less +33 -0
- package/src/android-bootstrap/less/dropdowns.less +216 -0
- package/src/android-bootstrap/less/forms.less +626 -0
- package/src/android-bootstrap/less/glyphicons.less +305 -0
- package/src/android-bootstrap/less/grid.less +84 -0
- package/src/android-bootstrap/less/input-groups.less +167 -0
- package/src/android-bootstrap/less/jumbotron.less +52 -0
- package/src/android-bootstrap/less/labels.less +64 -0
- package/src/android-bootstrap/less/list-group.less +141 -0
- package/src/android-bootstrap/less/media.less +66 -0
- package/src/android-bootstrap/less/mixins/alerts.less +14 -0
- package/src/android-bootstrap/less/mixins/background-variant.less +9 -0
- package/src/android-bootstrap/less/mixins/border-radius.less +18 -0
- package/src/android-bootstrap/less/mixins/buttons.less +69 -0
- package/src/android-bootstrap/less/mixins/center-block.less +7 -0
- package/src/android-bootstrap/less/mixins/clearfix.less +22 -0
- package/src/android-bootstrap/less/mixins/forms.less +90 -0
- package/src/android-bootstrap/less/mixins/gradients.less +59 -0
- package/src/android-bootstrap/less/mixins/grid-framework.less +92 -0
- package/src/android-bootstrap/less/mixins/grid.less +122 -0
- package/src/android-bootstrap/less/mixins/hide-text.less +21 -0
- package/src/android-bootstrap/less/mixins/image.less +33 -0
- package/src/android-bootstrap/less/mixins/labels.less +12 -0
- package/src/android-bootstrap/less/mixins/list-group.less +30 -0
- package/src/android-bootstrap/less/mixins/nav-divider.less +10 -0
- package/src/android-bootstrap/less/mixins/nav-vertical-align.less +9 -0
- package/src/android-bootstrap/less/mixins/opacity.less +8 -0
- package/src/android-bootstrap/less/mixins/pagination.less +24 -0
- package/src/android-bootstrap/less/mixins/panels.less +24 -0
- package/src/android-bootstrap/less/mixins/progress-bar.less +10 -0
- package/src/android-bootstrap/less/mixins/reset-filter.less +8 -0
- package/src/android-bootstrap/less/mixins/reset-text.less +18 -0
- package/src/android-bootstrap/less/mixins/resize.less +6 -0
- package/src/android-bootstrap/less/mixins/responsive-visibility.less +15 -0
- package/src/android-bootstrap/less/mixins/size.less +10 -0
- package/src/android-bootstrap/less/mixins/tab-focus.less +9 -0
- package/src/android-bootstrap/less/mixins/table-row.less +44 -0
- package/src/android-bootstrap/less/mixins/text-emphasis.less +9 -0
- package/src/android-bootstrap/less/mixins/text-overflow.less +8 -0
- package/src/android-bootstrap/less/mixins/vendor-prefixes.less +227 -0
- package/src/android-bootstrap/less/mixins.less +40 -0
- package/src/android-bootstrap/less/modals.less +151 -0
- package/src/android-bootstrap/less/navbar.less +660 -0
- package/src/android-bootstrap/less/navs.less +302 -0
- package/src/android-bootstrap/less/normalize.less +424 -0
- package/src/android-bootstrap/less/pager.less +76 -0
- package/src/android-bootstrap/less/pagination.less +89 -0
- package/src/android-bootstrap/less/panels.less +274 -0
- package/src/android-bootstrap/less/popovers.less +131 -0
- package/src/android-bootstrap/less/print.less +101 -0
- package/src/android-bootstrap/less/progress-bars.less +87 -0
- package/src/android-bootstrap/less/responsive-embed.less +35 -0
- package/src/android-bootstrap/less/responsive-utilities.less +194 -0
- package/src/android-bootstrap/less/scaffolding.less +161 -0
- package/src/android-bootstrap/less/tables.less +262 -0
- package/src/android-bootstrap/less/theme.less +291 -0
- package/src/android-bootstrap/less/thumbnails.less +36 -0
- package/src/android-bootstrap/less/tooltip.less +102 -0
- package/src/android-bootstrap/less/type.less +303 -0
- package/src/android-bootstrap/less/utilities.less +55 -0
- package/src/android-bootstrap/less/variables.less +896 -0
- package/src/android-bootstrap/less/wells.less +29 -0
- package/src/android.js +7 -4
- package/src/apply.js +85 -69
- package/src/applyAndroid.js +52 -39
- package/src/assets//345/210/240/351/231/244.png +0 -0
- package/src/components/android/AppOnetomany.vue +301 -0
- package/src/components/android/AppServiceView.vue +568 -0
- package/src/components/android/AppSign.vue +169 -0
- package/src/components/android/AppTakePic.vue +142 -0
- package/src/components/android/AppUpload.vue +232 -0
- package/src/components/android/Ignition/VentilationIgnition.vue +328 -0
- package/src/components/android/Ignition/VentilationIgnitionHandle.vue +330 -0
- package/src/components/android/Process/AppExplorationUser.vue +352 -0
- package/src/components/android/Process/AppServiceControl.vue +1050 -0
- package/src/components/android/Process/Processes/AppDevicesManagement.vue +336 -0
- package/src/components/android/Process/Processes/AppInstallationDetails.vue +770 -0
- package/src/components/android/Process/Processes/SurveyUserSign.vue +56 -0
- package/src/components/android/Sign/AppSignTask.vue +182 -0
- package/src/components/android/Sign/SignProcess.vue +102 -0
- package/src/components/android/Supervisory/AppProcessSupervisory.vue +183 -0
- package/src/components/android/Supervisory/AppSupervisoryCart.vue +121 -0
- package/src/components/android/Task/Build/BuildTsak.vue +114 -0
- package/src/components/android/Task/Survey/SurveyTsak.vue +112 -0
- package/src/components/android/TaskGraph.vue +130 -0
- package/src/components/android/newPackage/customerServiceManager.vue +218 -0
- package/src/components/android/newPackage/designDrawings.vue +94 -0
- package/src/components/android/newPackage/detailedData.vue +24 -0
- package/src/components/android/newPackage/projectPrice.vue +218 -0
- package/src/components/image/dwg.png +0 -0
- package/src/components/image/dxf.png +0 -0
- package/src/components/product/ApplyCharge/ApplyChargeList.vue +141 -62
- package/src/components/product/ApplyCharge/ApplyChargeSearch.vue +2 -2
- package/src/components/product/Function/InstallFunction.vue +53 -69
- package/src/components/product/Function/InstallInfoSelect.vue +118 -105
- package/src/components/product/Function/Service/FunctionServiceControl.vue +323 -148
- package/src/components/product/Ignition/IgnitionDispatch.vue +277 -0
- package/src/components/product/Ignition/IgnitionRecord.vue +216 -0
- package/src/components/product/Onetomany.vue +377 -0
- package/src/components/product/Print/BuildOrder/buildOrderList.vue +229 -0
- package/src/components/product/Print/BuildOrder/printBuildOrder.vue +265 -0
- package/src/components/product/Process/ExplorationSelect.vue +374 -347
- package/src/components/product/Process/ExplorationUser.vue +151 -138
- package/src/components/product/Process/Processes/ApplyMapCom.vue +83 -0
- package/src/components/product/Process/Processes/ExhibitionPicture.vue +27 -0
- package/src/components/product/Process/Processes/InstallationDetails.vue +823 -484
- package/src/components/product/Process/Processes/Print/img/10101.png +0 -0
- package/src/components/product/Process/Processes/Print/img/1010109.png +0 -0
- package/src/components/product/Process/Processes/Print/img/1010110.png +0 -0
- package/src/components/product/Process/Processes/Print/img/1010111.png +0 -0
- package/src/components/product/Process/Processes/Print/img/1010112.png +0 -0
- package/src/components/product/Process/Processes/Print/printCharge.vue +142 -0
- package/src/components/product/Process/Processes/addressAndUserinfoManagement.vue +59 -113
- package/src/components/product/Process/Processes/chargeManagement.vue +546 -562
- package/src/components/product/Process/Processes/devicesManagement.vue +360 -0
- package/src/components/product/Process/Processes/selectApply.vue +250 -0
- package/src/components/product/Process/Processes/selectUserinfo.vue +182 -0
- package/src/components/product/Process/Processes/supplementalAgreement.vue +182 -181
- package/src/components/product/Process/Service/ServiceControl.vue +1417 -856
- package/src/components/product/Process/Service/ShowBackReason.vue +33 -0
- package/src/components/product/ServiceView.vue +557 -680
- package/src/components/product/Stop/StopApply.vue +105 -0
- package/src/components/product/Stop/StopApplyList.vue +224 -0
- package/src/components/product/Supervisory/NewSupervisoryhCart.vue +167 -0
- package/src/components/product/Supervisory/Service/SupervisoryServiceControl.vue +231 -199
- package/src/components/product/Supervisory/SupervisoryControl.vue +22 -33
- package/src/components/product/Supervisory/SupervisoryList.vue +258 -208
- package/src/components/product/Supervisory/SupervisoryhCart.vue +52 -36
- package/src/components/product/VueUtils/ApplyUpload.vue +279 -261
- package/src/components/product/VueUtils/HighMeter.vue +208 -0
- package/src/expandcssAndroid.less +1034 -0
- package/src/main.js +27 -23
- package/src/public/history/HistoryApplyList.vue +108 -0
- package/src/public/history/PublicHistoryApply.vue +39 -0
- package/src/public/history/PublicSupervisoryhCart.vue +72 -0
- package/src/public/order/PublicOrderApply.vue +387 -0
- package/dist-android/index.html +0 -3
- package/dist-android/static/.gitkeep +0 -0
- package/dist-android/static/0.js +0 -2
- package/dist-android/static/0.js.map +0 -1
- package/dist-android/static/1.js +0 -2
- package/dist-android/static/1.js.map +0 -1
- package/dist-android/static/10.js +0 -2
- package/dist-android/static/10.js.map +0 -1
- package/dist-android/static/100.js +0 -2
- package/dist-android/static/100.js.map +0 -1
- package/dist-android/static/11.js +0 -2
- package/dist-android/static/11.js.map +0 -1
- package/dist-android/static/12.js +0 -2
- package/dist-android/static/12.js.map +0 -1
- package/dist-android/static/13.js +0 -2
- package/dist-android/static/13.js.map +0 -1
- package/dist-android/static/14.js +0 -2
- package/dist-android/static/14.js.map +0 -1
- package/dist-android/static/15.js +0 -2
- package/dist-android/static/15.js.map +0 -1
- package/dist-android/static/16.js +0 -2
- package/dist-android/static/16.js.map +0 -1
- package/dist-android/static/17.js +0 -2
- package/dist-android/static/17.js.map +0 -1
- package/dist-android/static/18.js +0 -2
- package/dist-android/static/18.js.map +0 -1
- package/dist-android/static/19.js +0 -2
- package/dist-android/static/19.js.map +0 -1
- package/dist-android/static/2.js +0 -2
- package/dist-android/static/2.js.map +0 -1
- package/dist-android/static/20.js +0 -2
- package/dist-android/static/20.js.map +0 -1
- package/dist-android/static/21.js +0 -2
- package/dist-android/static/21.js.map +0 -1
- package/dist-android/static/22.js +0 -2
- package/dist-android/static/22.js.map +0 -1
- package/dist-android/static/23.js +0 -2
- package/dist-android/static/23.js.map +0 -1
- package/dist-android/static/24.js +0 -2
- package/dist-android/static/24.js.map +0 -1
- package/dist-android/static/25.js +0 -2
- package/dist-android/static/25.js.map +0 -1
- package/dist-android/static/26.js +0 -2
- package/dist-android/static/26.js.map +0 -1
- package/dist-android/static/27.js +0 -2
- package/dist-android/static/27.js.map +0 -1
- package/dist-android/static/28.js +0 -2
- package/dist-android/static/28.js.map +0 -1
- package/dist-android/static/29.js +0 -2
- package/dist-android/static/29.js.map +0 -1
- package/dist-android/static/3.js +0 -2
- package/dist-android/static/3.js.map +0 -1
- package/dist-android/static/30.js +0 -2
- package/dist-android/static/30.js.map +0 -1
- package/dist-android/static/31.js +0 -2
- package/dist-android/static/31.js.map +0 -1
- package/dist-android/static/32.js +0 -2
- package/dist-android/static/32.js.map +0 -1
- package/dist-android/static/33.js +0 -2
- package/dist-android/static/33.js.map +0 -1
- package/dist-android/static/34.js +0 -2
- package/dist-android/static/34.js.map +0 -1
- package/dist-android/static/35.js +0 -2
- package/dist-android/static/35.js.map +0 -1
- package/dist-android/static/36.js +0 -2
- package/dist-android/static/36.js.map +0 -1
- package/dist-android/static/37.js +0 -2
- package/dist-android/static/37.js.map +0 -1
- package/dist-android/static/38.js +0 -2
- package/dist-android/static/38.js.map +0 -1
- package/dist-android/static/39.js +0 -2
- package/dist-android/static/39.js.map +0 -1
- package/dist-android/static/4.js +0 -2
- package/dist-android/static/4.js.map +0 -1
- package/dist-android/static/40.js +0 -2
- package/dist-android/static/40.js.map +0 -1
- package/dist-android/static/41.js +0 -2
- package/dist-android/static/41.js.map +0 -1
- package/dist-android/static/42.js +0 -2
- package/dist-android/static/42.js.map +0 -1
- package/dist-android/static/43.js +0 -2
- package/dist-android/static/43.js.map +0 -1
- package/dist-android/static/44.js +0 -2
- package/dist-android/static/44.js.map +0 -1
- package/dist-android/static/45.js +0 -2
- package/dist-android/static/45.js.map +0 -1
- package/dist-android/static/46.js +0 -2
- package/dist-android/static/46.js.map +0 -1
- package/dist-android/static/47.js +0 -2
- package/dist-android/static/47.js.map +0 -1
- package/dist-android/static/48.js +0 -2
- package/dist-android/static/48.js.map +0 -1
- package/dist-android/static/49.js +0 -2
- package/dist-android/static/49.js.map +0 -1
- package/dist-android/static/5.js +0 -2
- package/dist-android/static/5.js.map +0 -1
- package/dist-android/static/50.js +0 -2
- package/dist-android/static/50.js.map +0 -1
- package/dist-android/static/51.js +0 -2
- package/dist-android/static/51.js.map +0 -1
- package/dist-android/static/52.js +0 -2
- package/dist-android/static/52.js.map +0 -1
- package/dist-android/static/53.js +0 -2
- package/dist-android/static/53.js.map +0 -1
- package/dist-android/static/54.js +0 -2
- package/dist-android/static/54.js.map +0 -1
- package/dist-android/static/55.js +0 -2
- package/dist-android/static/55.js.map +0 -1
- package/dist-android/static/56.js +0 -2
- package/dist-android/static/56.js.map +0 -1
- package/dist-android/static/57.js +0 -2
- package/dist-android/static/57.js.map +0 -1
- package/dist-android/static/58.js +0 -2
- package/dist-android/static/58.js.map +0 -1
- package/dist-android/static/59.js +0 -2
- package/dist-android/static/59.js.map +0 -1
- package/dist-android/static/6.js +0 -2
- package/dist-android/static/6.js.map +0 -1
- package/dist-android/static/60.js +0 -2
- package/dist-android/static/60.js.map +0 -1
- package/dist-android/static/61.js +0 -2
- package/dist-android/static/61.js.map +0 -1
- package/dist-android/static/62.js +0 -2
- package/dist-android/static/62.js.map +0 -1
- package/dist-android/static/63.js +0 -2
- package/dist-android/static/63.js.map +0 -1
- package/dist-android/static/64.js +0 -2
- package/dist-android/static/64.js.map +0 -1
- package/dist-android/static/65.js +0 -2
- package/dist-android/static/65.js.map +0 -1
- package/dist-android/static/66.js +0 -2
- package/dist-android/static/66.js.map +0 -1
- package/dist-android/static/67.js +0 -2
- package/dist-android/static/67.js.map +0 -1
- package/dist-android/static/68.js +0 -2
- package/dist-android/static/68.js.map +0 -1
- package/dist-android/static/69.js +0 -2
- package/dist-android/static/69.js.map +0 -1
- package/dist-android/static/7.js +0 -6
- package/dist-android/static/7.js.map +0 -1
- package/dist-android/static/70.js +0 -2
- package/dist-android/static/70.js.map +0 -1
- package/dist-android/static/71.js +0 -2
- package/dist-android/static/71.js.map +0 -1
- package/dist-android/static/72.js +0 -2
- package/dist-android/static/72.js.map +0 -1
- package/dist-android/static/73.js +0 -2
- package/dist-android/static/73.js.map +0 -1
- package/dist-android/static/74.js +0 -2
- package/dist-android/static/74.js.map +0 -1
- package/dist-android/static/75.js +0 -2
- package/dist-android/static/75.js.map +0 -1
- package/dist-android/static/76.js +0 -2
- package/dist-android/static/76.js.map +0 -1
- package/dist-android/static/77.js +0 -2
- package/dist-android/static/77.js.map +0 -1
- package/dist-android/static/78.js +0 -2
- package/dist-android/static/78.js.map +0 -1
- package/dist-android/static/79.js +0 -2
- package/dist-android/static/79.js.map +0 -1
- package/dist-android/static/8.js +0 -2
- package/dist-android/static/8.js.map +0 -1
- package/dist-android/static/80.js +0 -2
- package/dist-android/static/80.js.map +0 -1
- package/dist-android/static/81.js +0 -2
- package/dist-android/static/81.js.map +0 -1
- package/dist-android/static/82.js +0 -2
- package/dist-android/static/82.js.map +0 -1
- package/dist-android/static/83.js +0 -2
- package/dist-android/static/83.js.map +0 -1
- package/dist-android/static/84.js +0 -2
- package/dist-android/static/84.js.map +0 -1
- package/dist-android/static/85.js +0 -2
- package/dist-android/static/85.js.map +0 -1
- package/dist-android/static/86.js +0 -2
- package/dist-android/static/86.js.map +0 -1
- package/dist-android/static/87.js +0 -2
- package/dist-android/static/87.js.map +0 -1
- package/dist-android/static/88.js +0 -2
- package/dist-android/static/88.js.map +0 -1
- package/dist-android/static/89.js +0 -2
- package/dist-android/static/89.js.map +0 -1
- package/dist-android/static/9.js +0 -3
- package/dist-android/static/9.js.map +0 -1
- package/dist-android/static/90.js +0 -2
- package/dist-android/static/90.js.map +0 -1
- package/dist-android/static/91.js +0 -2
- package/dist-android/static/91.js.map +0 -1
- package/dist-android/static/92.js +0 -2
- package/dist-android/static/92.js.map +0 -1
- package/dist-android/static/93.js +0 -2
- package/dist-android/static/93.js.map +0 -1
- package/dist-android/static/94.js +0 -2
- package/dist-android/static/94.js.map +0 -1
- package/dist-android/static/95.js +0 -2
- package/dist-android/static/95.js.map +0 -1
- package/dist-android/static/96.js +0 -2
- package/dist-android/static/96.js.map +0 -1
- package/dist-android/static/97.js +0 -2
- package/dist-android/static/97.js.map +0 -1
- package/dist-android/static/98.js +0 -2
- package/dist-android/static/98.js.map +0 -1
- package/dist-android/static/99.js +0 -2
- package/dist-android/static/99.js.map +0 -1
- package/dist-android/static/app.css +0 -2
- package/dist-android/static/app.css.map +0 -1
- package/dist-android/static/app.js +0 -80
- package/dist-android/static/app.js.map +0 -1
- package/dist-android/static/batchleft.png +0 -0
- package/dist-android/static/batchright.png +0 -0
- package/dist-android/static/bluemainbg.jpg +0 -0
- package/dist-android/static/config.json +0 -7
- package/dist-android/static/denglu.png +0 -0
- package/dist-android/static/huangtengbiaozhi.png +0 -0
- package/dist-android/static/jingyin.jpg +0 -0
- package/dist-android/static/login_bg.jpg +0 -0
- package/dist-android/static/login_title.png +0 -0
- package/dist-android/static/login_title1.png +0 -0
- package/dist-android/static/loginbg.jpg +0 -0
- package/dist-android/static/loginlogo.png +0 -0
- package/dist-android/static/main_logo.png +0 -0
- package/dist-android/static/mainbg.jpg +0 -0
- package/dist-android/static/menulogo.png +0 -0
- package/dist-android/static/newmainbg.jpg +0 -0
- package/dist-android/static/psicon.png +0 -0
- package/dist-android/static/singleleft.png +0 -0
- package/dist-android/static/singleright.png +0 -0
- package/dist-android/static/treeopen.png +0 -0
- package/dist-android/static/treeout.png +0 -0
- package/dist-android/static/treeset.png +0 -0
- package/dist-android/static/usericon.png +0 -0
- package/dist-android/static/workflow_apply.json +0 -766
- package/dist-android/static/xinxi.png +0 -0
- package/dist-android/static//344/277/256/346/224/271/345/257/206/347/240/201.png +0 -0
- package/dist-android/static//345/256/211/346/243/200/345/257/274/350/210/252/347/253/226/345/261/2173.png +0 -0
- package/dist-android/static//345/257/274/345/207/272/346/225/260/346/215/256.png +0 -0
- package/dist-android/static//346/270/205/347/251/272/346/225/260/346/215/256.png +0 -0
- package/src/components/app_apply/Acceptance.vue +0 -298
- package/src/components/app_apply/ApplyApp.vue +0 -91
- package/src/components/app_apply/ApplyDownList.vue +0 -166
- package/src/components/app_apply/ApplyInfo.vue +0 -56
- package/src/components/app_apply/ApplyListUpload.vue +0 -258
- package/src/components/app_apply/ApplyToDoList.vue +0 -165
- package/src/components/app_apply/ApplyUserInfo.vue +0 -56
- package/src/components/app_apply/FieldExploration.vue +0 -267
- package/src/components/app_apply/PlaceControler.vue +0 -258
- package/src/components/app_apply/ServiceControl.vue +0 -267
- package/src/components/app_apply/ServiceView.vue +0 -355
- package/src/components/app_apply/ToolsPage.vue +0 -51
- package/src/components/app_apply/Ventilation.vue +0 -199
- package/src/components/product/ApplyCharge/ApplyChargeReport.vue +0 -107
- package/src/components/product/Function/StopApplyCrrdList.vue +0 -176
- package/src/components/product/Function/functions/ApplyRecordCancel.vue +0 -102
- package/src/components/product/Function/functions/StopInstall.vue +0 -106
- package/src/components/product/Process/Processes/printCharge.vue +0 -126
- package/src/components/product/Process/ShowBackReason.vue +0 -32
- package/src/components/product/ReportForm/GasIgnitionSummary.vue +0 -352
- package/src/components/product/VueUtils/ToolsPage.vue +0 -51
- package/src/components/product/VueUtils/Tree.vue +0 -330
|
@@ -0,0 +1,277 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div class="flex-row">
|
|
3
|
+
<div class="basic-main">
|
|
4
|
+
<criteria-paged :model="model" v-ref:cp>
|
|
5
|
+
<criteria partial='criteria' @condition-changed='$parent.searchCondition' 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 class="font_normal_body">用户编号:</label>
|
|
10
|
+
<input type="text" class="input_search" style="width: 60%" v-model="model.f_userinfo_id"
|
|
11
|
+
v-on:keyup.enter="$parent.$parent.search()" condition="ui.f_userinfo_id = '{}'" placeholder='用户编号'>
|
|
12
|
+
</div>
|
|
13
|
+
<div class="form-group col-sm-3">
|
|
14
|
+
<label class="font_normal_body">工程编号:</label>
|
|
15
|
+
<input type="text" class="input_search" style="width: 60%" v-model="model.f_applycode"
|
|
16
|
+
v-on:keyup.enter="$parent.$parent.search()" condition="ui.f_applycode = '{}'" placeholder='工程编号'>
|
|
17
|
+
</div>
|
|
18
|
+
<div class="form-group col-sm-3 button-range">
|
|
19
|
+
<button class="button_export button_spacing" @click="$parent.$parent.openOperatorModal()">批量派单</button>
|
|
20
|
+
<button class="button_search button_spacing" @click="$parent.$parent.search()" v-el:cx>查询</button>
|
|
21
|
+
<button class="button_clear button_spacing" @click="$parent.$parent.clear()">清空</button>
|
|
22
|
+
<div
|
|
23
|
+
:class="{'button_shrink_top':$parent.$parent.criteriaShow,'button_shrink_bottom':!$parent.$parent.criteriaShow}"
|
|
24
|
+
@click="$parent.$parent.criteriaShow = !$parent.$parent.criteriaShow"
|
|
25
|
+
class="button_spacing"
|
|
26
|
+
style="float: right">
|
|
27
|
+
</div>
|
|
28
|
+
</div>
|
|
29
|
+
</div>
|
|
30
|
+
<div class="row" v-show="$parent.$parent.criteriaShow">
|
|
31
|
+
<div class="form-group col-sm-3">
|
|
32
|
+
<label class="font_normal_body">用 户 名:</label>
|
|
33
|
+
<input type="text" class="input_search" style="width: 60%" v-model="model.f_user_name"
|
|
34
|
+
v-on:keyup.enter="$parent.$parent.search()" condition="ui.f_user_name = '{}'" placeholder='用户名'>
|
|
35
|
+
</div>
|
|
36
|
+
<div class="form-group col-sm-3">
|
|
37
|
+
<label class="font_normal_body">电  话:</label>
|
|
38
|
+
<input type="text" class="input_search" style="width: 60%" v-model="model.f_user_phone"
|
|
39
|
+
v-on:keyup.enter="$parent.$parent.search()" condition="ui.f_user_phone = '{}'" placeholder='电话'>
|
|
40
|
+
</div>
|
|
41
|
+
</div>
|
|
42
|
+
</div>
|
|
43
|
+
</criteria>
|
|
44
|
+
<data-grid :model="model" optional partial='list' v-ref:grid style="overflow: auto" class="list_area table_sy">
|
|
45
|
+
<template partial='head'>
|
|
46
|
+
<tr>
|
|
47
|
+
<th>序号</th>
|
|
48
|
+
<th>用户编号</th>
|
|
49
|
+
<th>用户名</th>
|
|
50
|
+
<th>电话</th>
|
|
51
|
+
<th>地址</th>
|
|
52
|
+
<th>定位地址</th>
|
|
53
|
+
<th>气表分类</th>
|
|
54
|
+
<th>气表品牌</th>
|
|
55
|
+
<th>气表型号</th>
|
|
56
|
+
</tr>
|
|
57
|
+
</template>
|
|
58
|
+
<template partial='body'>
|
|
59
|
+
<tr >
|
|
60
|
+
<td style="text-align: center;">
|
|
61
|
+
<nobr><font>{{$index+1}}</font></nobr>
|
|
62
|
+
</td>
|
|
63
|
+
<td style="text-align: center;">
|
|
64
|
+
<nobr><font>{{row.f_userinfo_id}}</font></nobr>
|
|
65
|
+
</td>
|
|
66
|
+
<td style="text-align: center;">
|
|
67
|
+
<nobr><font>{{row.f_user_name}}</font></nobr>
|
|
68
|
+
</td>
|
|
69
|
+
<td style="text-align: center;">
|
|
70
|
+
<nobr><font>{{row.f_user_phone}}</font></nobr>
|
|
71
|
+
</td>
|
|
72
|
+
<td style="text-align: center;">
|
|
73
|
+
<nobr><font>{{row.f_address}}{{row.f_address_detail}}</font></nobr>
|
|
74
|
+
</td>
|
|
75
|
+
<td style="text-align: center;">
|
|
76
|
+
<nobr><font>
|
|
77
|
+
<a @click="$parent.$parent.$parent.openAmap(row)" style="text-decoration: none">
|
|
78
|
+
{{row.f_location_address}}
|
|
79
|
+
</a>
|
|
80
|
+
</font></nobr>
|
|
81
|
+
</td>
|
|
82
|
+
<td style="text-align: center;">
|
|
83
|
+
<nobr><font>{{row.f_meter_classify}}</font></nobr>
|
|
84
|
+
</td>
|
|
85
|
+
<td style="text-align: center;">
|
|
86
|
+
<nobr><font>{{row.f_meter_brand}}</font></nobr>
|
|
87
|
+
</td>
|
|
88
|
+
<td style="text-align: center;">
|
|
89
|
+
<nobr><font>{{row.f_meter_style}}</font></nobr>
|
|
90
|
+
</td>
|
|
91
|
+
</tr>
|
|
92
|
+
</template>
|
|
93
|
+
</data-grid>
|
|
94
|
+
</criteria-paged>
|
|
95
|
+
</div>
|
|
96
|
+
</div>
|
|
97
|
+
|
|
98
|
+
<modal v-if="showAmap" :show.sync="showAmap" v-ref:amap :large="true" :backdrop="false" title="定位信息">
|
|
99
|
+
<header slot="modal-header" class="modal-header">
|
|
100
|
+
<button type="button" class="close" @click="closeModal"><span>×</span></button>
|
|
101
|
+
<h4 class="modal-title">定位信息</h4>
|
|
102
|
+
</header>
|
|
103
|
+
<article slot="modal-body" class="modal-body clearfix" style="height: 500px">
|
|
104
|
+
<amap-location
|
|
105
|
+
:isshowsearch="false"
|
|
106
|
+
:mylocationinfo="false"
|
|
107
|
+
:isshowmapmodel="false"
|
|
108
|
+
:islocation="false"
|
|
109
|
+
mapmodel="dragMarker"
|
|
110
|
+
:labelmarksarray="labelmarksarray"
|
|
111
|
+
></amap-location>
|
|
112
|
+
</article>
|
|
113
|
+
<footer slot="modal-footer" class="modal-footer">
|
|
114
|
+
</footer>
|
|
115
|
+
</modal>
|
|
116
|
+
|
|
117
|
+
<validator name="v">
|
|
118
|
+
<modal v-if="showOperator" :show.sync="showOperator" v-ref:operator :large="true" :backdrop="false" title="批量派单">、
|
|
119
|
+
<header slot="modal-header" class="modal-header">
|
|
120
|
+
<button type="button" class="close" @click="closeModal('details')"><span>×</span></button>
|
|
121
|
+
<h4 class="modal-title">批量派单</h4>
|
|
122
|
+
</header>
|
|
123
|
+
<article slot="modal-body" class="modal-body clearfix">
|
|
124
|
+
<!-- 基本信息 -->
|
|
125
|
+
<div class="form-group col-sm-12" :class="[$v.operator.required ? 'has-error' : '']">
|
|
126
|
+
<label class="col-sm-2 control-label">操作人:</label>
|
|
127
|
+
<div class="col-sm-10">
|
|
128
|
+
<input type="text" v-show="false" v-model="operator.id" :value.sync="operator.id" v-validate:operator = "['required']" >
|
|
129
|
+
<input-select
|
|
130
|
+
class="select select_list"
|
|
131
|
+
:value.sync="operator"
|
|
132
|
+
v-model="operator"
|
|
133
|
+
:options="operatorList"></input-select>
|
|
134
|
+
</div>
|
|
135
|
+
</div>
|
|
136
|
+
<div class="form-group col-sm-12">
|
|
137
|
+
<label class="col-sm-2 control-label">是否共享:</label>
|
|
138
|
+
<div class="col-sm-10">
|
|
139
|
+
<input-select
|
|
140
|
+
class="select select_list"
|
|
141
|
+
:value.sync="f_shared_dispatch"
|
|
142
|
+
v-model="f_shared_dispatch"
|
|
143
|
+
:options="sharedOptions"></input-select>
|
|
144
|
+
</div>
|
|
145
|
+
</div>
|
|
146
|
+
</article>
|
|
147
|
+
<footer slot="modal-footer" class="modal-footer">
|
|
148
|
+
<button type="button" class="btn btn-primary" @click="batchDispatch()" :disabled="!$v.valid">确定</button>
|
|
149
|
+
</footer>
|
|
150
|
+
</modal>
|
|
151
|
+
</validator>
|
|
152
|
+
|
|
153
|
+
</template>
|
|
154
|
+
|
|
155
|
+
<script>
|
|
156
|
+
import {PagedList} from 'vue-client'
|
|
157
|
+
|
|
158
|
+
export default {
|
|
159
|
+
title: '点火派单',
|
|
160
|
+
data () {
|
|
161
|
+
return {
|
|
162
|
+
model: new PagedList('rs/sql/getWaitIgnitionTask', 20, null),
|
|
163
|
+
criteriaShow: false,
|
|
164
|
+
source: 'this.getParentByType($organization$).getChildByName($营业厅报装$).getChildren()',
|
|
165
|
+
operatorList: [],
|
|
166
|
+
showOperator: false,
|
|
167
|
+
operator: null,
|
|
168
|
+
f_shared_dispatch:'否',
|
|
169
|
+
sharedOptions:[{label: "是", value: "是"}, {label: "否", value: "否" }],
|
|
170
|
+
showAmap: false,
|
|
171
|
+
labelmarksarray: []
|
|
172
|
+
}
|
|
173
|
+
},
|
|
174
|
+
ready () {
|
|
175
|
+
this.search()
|
|
176
|
+
this.getOperator()
|
|
177
|
+
},
|
|
178
|
+
methods: {
|
|
179
|
+
openAmap (row) {
|
|
180
|
+
this.labelmarksarray = [{
|
|
181
|
+
data: {
|
|
182
|
+
data: this.selectdata,
|
|
183
|
+
label: `<div style="background: #fff;border-radius: 5px;height: 100px;padding: 5px">
|
|
184
|
+
<h5>${row.f_user_name}</h5>
|
|
185
|
+
<h5>${row.f_user_phone}</h5>
|
|
186
|
+
<h5>${row.f_location_address}</h5>
|
|
187
|
+
</div>`
|
|
188
|
+
},
|
|
189
|
+
position: [row.f_lng, row.f_lat],
|
|
190
|
+
isclearmarker: false
|
|
191
|
+
}]
|
|
192
|
+
|
|
193
|
+
this.showAmap = true
|
|
194
|
+
},
|
|
195
|
+
async batchDispatch () {
|
|
196
|
+
let selectdata = this.$refs.cp.$refs.grid.getRowData()
|
|
197
|
+
if (selectdata.length > 0) {
|
|
198
|
+
let data = {
|
|
199
|
+
operator: this.$login.f,
|
|
200
|
+
f_userinfo_ids: selectdata.map(item => `${item.f_userinfo_id}`),
|
|
201
|
+
ignitionOperator: this.operator,
|
|
202
|
+
f_shared_dispatch:this.f_shared_dispatch
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
let res = await this.$resetpost(
|
|
206
|
+
'rs/logic/batchDispatchGas',
|
|
207
|
+
{data: data},
|
|
208
|
+
{resolveMsg: null, rejectMsg: '批量派单失败!!!'}
|
|
209
|
+
)
|
|
210
|
+
|
|
211
|
+
this.closeModal('details')
|
|
212
|
+
this.search()
|
|
213
|
+
} else {
|
|
214
|
+
this.$showAlert('至少选择1个工单', 'warning', 3000)
|
|
215
|
+
}
|
|
216
|
+
},
|
|
217
|
+
async openOperatorModal () {
|
|
218
|
+
let selectdata = this.$refs.cp.$refs.grid.getRowData()
|
|
219
|
+
if (selectdata.length > 0) {
|
|
220
|
+
let res = await this.$showMessage(`当前数据条数: ${selectdata.length}, 条数过大时派单时间可能会过长, 是否确认派单?`)
|
|
221
|
+
if (res == 'confirm') {
|
|
222
|
+
this.showOperator = true
|
|
223
|
+
}
|
|
224
|
+
} else {
|
|
225
|
+
this.$showAlert('至少选择1个工单', 'warning', 3000)
|
|
226
|
+
}
|
|
227
|
+
},
|
|
228
|
+
async getOperator () {
|
|
229
|
+
let data = {
|
|
230
|
+
source: this.source,
|
|
231
|
+
userid: this.$login.f.id
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
let res = await this.$resetpost(
|
|
235
|
+
'rs/search',
|
|
236
|
+
{data: data},
|
|
237
|
+
{resolveMsg: null, rejectMsg: '点火人员查询失败!!!'}
|
|
238
|
+
)
|
|
239
|
+
|
|
240
|
+
this.operatorList = res.data.map(item => {
|
|
241
|
+
return {
|
|
242
|
+
label: item.name,
|
|
243
|
+
value: item
|
|
244
|
+
}
|
|
245
|
+
})
|
|
246
|
+
},
|
|
247
|
+
searchCondition (args) {
|
|
248
|
+
args.condition = args.condition + ` and ui.f_user_state = '正常' and uf.f_whether_hairpin = '未发' and ir.id is null`
|
|
249
|
+
|
|
250
|
+
this.model.search(args.condition, args.model)
|
|
251
|
+
},
|
|
252
|
+
// 查询
|
|
253
|
+
search () {
|
|
254
|
+
this.$refs.cp.$refs.cri.search()
|
|
255
|
+
},
|
|
256
|
+
clear () {
|
|
257
|
+
Object.keys(this.$refs.cp.$refs.cri.model).forEach((key) => {
|
|
258
|
+
this.$refs.cp.$refs.cri.model[key] = null
|
|
259
|
+
})
|
|
260
|
+
},
|
|
261
|
+
closeModal (type) {
|
|
262
|
+
this.showAmap = false
|
|
263
|
+
this.showOperator = false
|
|
264
|
+
|
|
265
|
+
this.labelmarksarray = []
|
|
266
|
+
this.operator = null
|
|
267
|
+
|
|
268
|
+
if (type === 'details') {
|
|
269
|
+
this.$refs.cp.$refs.grid.selectInit()
|
|
270
|
+
}
|
|
271
|
+
}
|
|
272
|
+
}
|
|
273
|
+
}
|
|
274
|
+
</script>
|
|
275
|
+
|
|
276
|
+
<style scoped>
|
|
277
|
+
</style>
|
|
@@ -0,0 +1,216 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div class="flex-row">
|
|
3
|
+
<div class="basic-main">
|
|
4
|
+
<criteria-paged :model="model" v-ref:cp>
|
|
5
|
+
<criteria partial='criteria' @condition-changed='$parent.searchCondition' 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 class="font_normal_body">用户编号:</label>
|
|
10
|
+
<input type="text" class="input_search" style="width: 60%" v-model="model.f_userinfo_id"
|
|
11
|
+
v-on:keyup.enter="$parent.$parent.search()" condition="ui.f_userinfo_id = '{}'" placeholder='用户编号'>
|
|
12
|
+
</div>
|
|
13
|
+
<div class="form-group col-sm-3">
|
|
14
|
+
<label class="font_normal_body">工程编号:</label>
|
|
15
|
+
<input type="text" class="input_search" style="width: 60%" v-model="model.f_applycode"
|
|
16
|
+
v-on:keyup.enter="$parent.$parent.search()" condition="ui.f_applycode = '{}'" placeholder='工程编号'>
|
|
17
|
+
</div>
|
|
18
|
+
<div class="form-group col-sm-3 button-range">
|
|
19
|
+
<button class="button_export button_spacing" @click="$parent.$parent.openOperatorModal()">批量派单</button>
|
|
20
|
+
<button class="button_search button_spacing" @click="$parent.$parent.search()" v-el:cx>查询</button>
|
|
21
|
+
<button class="button_clear button_spacing" @click="$parent.$parent.clear()">清空</button>
|
|
22
|
+
<div
|
|
23
|
+
:class="{'button_shrink_top':$parent.$parent.criteriaShow,'button_shrink_bottom':!$parent.$parent.criteriaShow}"
|
|
24
|
+
@click="$parent.$parent.criteriaShow = !$parent.$parent.criteriaShow"
|
|
25
|
+
class="button_spacing"
|
|
26
|
+
style="float: right">
|
|
27
|
+
</div>
|
|
28
|
+
</div>
|
|
29
|
+
</div>
|
|
30
|
+
<div class="row" v-show="$parent.$parent.criteriaShow">
|
|
31
|
+
<div class="form-group col-sm-3">
|
|
32
|
+
<label class="font_normal_body">用 户 名:</label>
|
|
33
|
+
<input type="text" class="input_search" style="width: 60%" v-model="model.f_user_name"
|
|
34
|
+
v-on:keyup.enter="$parent.$parent.search()" condition="ui.f_user_name = '{}'" placeholder='用户名'>
|
|
35
|
+
</div>
|
|
36
|
+
<div class="form-group col-sm-3">
|
|
37
|
+
<label class="font_normal_body">电  话:</label>
|
|
38
|
+
<input type="text" class="input_search" style="width: 60%" v-model="model.f_user_phone"
|
|
39
|
+
v-on:keyup.enter="$parent.$parent.search()" condition="ui.f_user_phone = '{}'" placeholder='电话'>
|
|
40
|
+
</div>
|
|
41
|
+
</div>
|
|
42
|
+
</div>
|
|
43
|
+
</criteria>
|
|
44
|
+
<data-grid :model="model" partial='list' v-ref:grid style="overflow: auto" class="list_area table_sy">
|
|
45
|
+
<template partial='head'>
|
|
46
|
+
<tr>
|
|
47
|
+
<th>序号</th>
|
|
48
|
+
<th>用户编号</th>
|
|
49
|
+
<th>用户名</th>
|
|
50
|
+
<th>电话</th>
|
|
51
|
+
<th>地址</th>
|
|
52
|
+
<th>定位地址</th>
|
|
53
|
+
<th>气表分类</th>
|
|
54
|
+
<th>气表品牌</th>
|
|
55
|
+
<th>气表型号</th>
|
|
56
|
+
<th>派单人</th>
|
|
57
|
+
<th>派单时间</th>
|
|
58
|
+
<th>点火人</th>
|
|
59
|
+
<th>点火时间</th>
|
|
60
|
+
<th>状态</th>
|
|
61
|
+
<th>操作</th>
|
|
62
|
+
</tr>
|
|
63
|
+
</template>
|
|
64
|
+
<template partial='body'>
|
|
65
|
+
<tr >
|
|
66
|
+
<td style="text-align: center;">
|
|
67
|
+
<nobr><font>{{$index+1}}</font></nobr>
|
|
68
|
+
</td>
|
|
69
|
+
<td style="text-align: center;">
|
|
70
|
+
<nobr><font>{{row.f_userinfo_id}}</font></nobr>
|
|
71
|
+
</td>
|
|
72
|
+
<td style="text-align: center;">
|
|
73
|
+
<nobr><font>{{row.f_user_name}}</font></nobr>
|
|
74
|
+
</td>
|
|
75
|
+
<td style="text-align: center;">
|
|
76
|
+
<nobr><font>{{row.f_user_phone}}</font></nobr>
|
|
77
|
+
</td>
|
|
78
|
+
<td style="text-align: center;" @click="$parent.$parent.$parent.getFiles(row)">
|
|
79
|
+
<nobr><font>{{row.f_address}}{{row.f_address_detail}}</font></nobr>
|
|
80
|
+
</td>
|
|
81
|
+
<td style="text-align: center;" @click="$parent.$parent.$parent.getFiles(row)">
|
|
82
|
+
<nobr><font>
|
|
83
|
+
<a @click="$parent.$parent.$parent.openAmap(row)" style="text-decoration: none">
|
|
84
|
+
{{row.f_location_address}}
|
|
85
|
+
</a>
|
|
86
|
+
</font></nobr>
|
|
87
|
+
</td>
|
|
88
|
+
<td style="text-align: center;" @click="$parent.$parent.$parent.getFiles(row)">
|
|
89
|
+
<nobr><font>{{row.f_meter_classify}}</font></nobr>
|
|
90
|
+
</td>
|
|
91
|
+
<td style="text-align: center;" @click="$parent.$parent.$parent.getFiles(row)">
|
|
92
|
+
<nobr><font>{{row.f_meter_brand}}</font></nobr>
|
|
93
|
+
</td>
|
|
94
|
+
<td style="text-align: center;" @click="$parent.$parent.$parent.getFiles(row)">
|
|
95
|
+
<nobr><font>{{row.f_meter_style}}</font></nobr>
|
|
96
|
+
</td>
|
|
97
|
+
<td style="text-align: center;" @click="$parent.$parent.$parent.getFiles(row)">
|
|
98
|
+
<nobr><font>{{row.f_dispatch_operator}}</font></nobr>
|
|
99
|
+
</td>
|
|
100
|
+
<td style="text-align: center;" @click="$parent.$parent.$parent.getFiles(row)">
|
|
101
|
+
<nobr><font>{{row.f_dispatch_date}}</font></nobr>
|
|
102
|
+
</td>
|
|
103
|
+
<td style="text-align: center;" @click="$parent.$parent.$parent.getFiles(row)">
|
|
104
|
+
<nobr><font>{{row.f_ignition_operator}}</font></nobr>
|
|
105
|
+
</td>
|
|
106
|
+
<td style="text-align: center;" @click="$parent.$parent.$parent.getFiles(row)">
|
|
107
|
+
<nobr><font>{{row.f_ignition_date}}</font></nobr>
|
|
108
|
+
</td>
|
|
109
|
+
<td style="text-align: center;" @click="$parent.$parent.$parent.getFiles(row)">
|
|
110
|
+
<nobr><font>{{row.f_ignition_state}}</font></nobr>
|
|
111
|
+
</td>
|
|
112
|
+
<td style="text-align: center;">
|
|
113
|
+
<button
|
|
114
|
+
type="button" name="button" class="btn btn-link"
|
|
115
|
+
v-if="row.f_ignition_state === '正在进行'"
|
|
116
|
+
@click="$parent.$parent.$parent.delet(row)"
|
|
117
|
+
>派单收回</button>
|
|
118
|
+
</td>
|
|
119
|
+
</tr>
|
|
120
|
+
</template>
|
|
121
|
+
</data-grid>
|
|
122
|
+
</criteria-paged>
|
|
123
|
+
</div>
|
|
124
|
+
</div>
|
|
125
|
+
|
|
126
|
+
<modal v-if="showFiles" :show.sync="showFiles" v-ref:modal :large="true" :backdrop="false">
|
|
127
|
+
<header slot="modal-header" class="modal-header">
|
|
128
|
+
<button type="button" class="close" @click="closeModal"><span>×</span></button>
|
|
129
|
+
<h4 class="modal-title">点火照片</h4>
|
|
130
|
+
</header>
|
|
131
|
+
<article slot="modal-body" class="modal-body clearfix">
|
|
132
|
+
<exhibition-picture :imgs="filesList" max-height="400px" img-height="250px" img-padding="15px"></exhibition-picture>
|
|
133
|
+
</article>
|
|
134
|
+
<footer slot="modal-footer" class="modal-footer">
|
|
135
|
+
</footer>
|
|
136
|
+
</modal>
|
|
137
|
+
</template>
|
|
138
|
+
|
|
139
|
+
<script>
|
|
140
|
+
import {HttpResetClass, PagedList} from 'vue-client'
|
|
141
|
+
|
|
142
|
+
export default {
|
|
143
|
+
title: '点火记录',
|
|
144
|
+
data () {
|
|
145
|
+
return {
|
|
146
|
+
model: new PagedList('rs/sql/getWaitIgnitionTask', 20, null),
|
|
147
|
+
criteriaShow: false,
|
|
148
|
+
showFiles: false,
|
|
149
|
+
filesList: []
|
|
150
|
+
}
|
|
151
|
+
},
|
|
152
|
+
ready () {
|
|
153
|
+
this.search()
|
|
154
|
+
},
|
|
155
|
+
methods: {
|
|
156
|
+
async delet(row) {
|
|
157
|
+
let http = new HttpResetClass()
|
|
158
|
+
let data = {
|
|
159
|
+
f_userinfo_id:row.f_userinfo_id
|
|
160
|
+
}
|
|
161
|
+
let res = await http.load(
|
|
162
|
+
'POST',
|
|
163
|
+
'rs/logic/deleteIgnition',
|
|
164
|
+
{data: data},
|
|
165
|
+
{
|
|
166
|
+
warnMsg: null,
|
|
167
|
+
resolveMsg: null
|
|
168
|
+
})
|
|
169
|
+
this.search()
|
|
170
|
+
},
|
|
171
|
+
async getFiles (row) {
|
|
172
|
+
console.log('获取')
|
|
173
|
+
let http = new HttpResetClass()
|
|
174
|
+
let data = {
|
|
175
|
+
tablename: 't_files',
|
|
176
|
+
condition: `f_blobid = '${row.f_blobid}'`,
|
|
177
|
+
orderitem: 'f_uploaddate desc'
|
|
178
|
+
}
|
|
179
|
+
let res = await http.load(
|
|
180
|
+
'POST',
|
|
181
|
+
'rs/sql/applySingleTable',
|
|
182
|
+
{data: data},
|
|
183
|
+
{
|
|
184
|
+
warnMsg: null,
|
|
185
|
+
resolveMsg: null
|
|
186
|
+
})
|
|
187
|
+
|
|
188
|
+
this.filesList = res.data.map(item => {
|
|
189
|
+
return `http://${location.host}/${item.f_downloadpath.substring(item.f_downloadpath.lastIndexOf(":\\") + 2)}`
|
|
190
|
+
})
|
|
191
|
+
|
|
192
|
+
this.showFiles = true
|
|
193
|
+
},
|
|
194
|
+
searchCondition (args) {
|
|
195
|
+
args.condition = args.condition + ` and ir.id is not null`
|
|
196
|
+
|
|
197
|
+
this.model.search(args.condition, args.model)
|
|
198
|
+
},
|
|
199
|
+
// 查询
|
|
200
|
+
search () {
|
|
201
|
+
this.$refs.cp.$refs.cri.search()
|
|
202
|
+
},
|
|
203
|
+
clear () {
|
|
204
|
+
Object.keys(this.$refs.cp.$refs.cri.model).forEach((key) => {
|
|
205
|
+
this.$refs.cp.$refs.cri.model[key] = null
|
|
206
|
+
})
|
|
207
|
+
},
|
|
208
|
+
closeModal () {
|
|
209
|
+
this.showFiles = false
|
|
210
|
+
}
|
|
211
|
+
}
|
|
212
|
+
}
|
|
213
|
+
</script>
|
|
214
|
+
|
|
215
|
+
<style scoped>
|
|
216
|
+
</style>
|