apply-clients 7.1.35 → 7.1.36-yuchuan-1
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/.eslintrc.js +5 -1
- package/android.html +9 -0
- package/build/css-loaders.js +34 -0
- package/build/dev-client.js +8 -0
- package/build/dev-server.js +172 -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 +10 -1
- package/package.json +14 -8
- package/src/AndroidApp.vue +21 -14
- package/src/App.vue +4 -6
- 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 +83 -16
- package/src/applyAndroid.js +70 -28
- package/src/assets/marker-default.png +0 -0
- package/src/assets/myLocationIcon.png +0 -0
- 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 +603 -0
- package/src/components/android/AppSign.vue +231 -0
- package/src/components/android/AppTakePic.vue +142 -0
- package/src/components/android/AppUpload.vue +260 -0
- package/src/components/android/Ignition/VentilationIgnition.vue +408 -0
- package/src/components/android/Ignition/VentilationIgnitionHandle.vue +455 -0
- package/src/components/android/Process/AppExplorationUser.vue +454 -0
- package/src/components/android/Process/AppServiceControl.vue +1397 -0
- package/src/components/android/Process/Processes/AppChaiChuInfo.vue +546 -0
- package/src/components/android/Process/Processes/AppDevicesManagement.vue +339 -0
- package/src/components/android/Process/Processes/AppInstallationDetails.vue +867 -0
- package/src/components/android/Process/Processes/SurveyUserSign.vue +65 -0
- package/src/components/android/Process/Processes/newAppDevicesManagement.vue +344 -0
- package/src/components/android/Process/Processes/newAppInstallationDetails.vue +669 -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 +334 -0
- package/src/components/android/Supervisory/AppSupervisoryCart.vue +128 -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/RepairFromSend/RepairFrom.vue +124 -0
- package/src/components/android/Task/RepairFromSend/RepairSend.vue +124 -0
- package/src/components/android/Task/ShenHe/BuZhangShenHe.vue +64 -0
- package/src/components/android/Task/ShenHe/JingLiShenHe.vue +64 -0
- package/src/components/android/Task/ShiGongXinXi/AppShowBuildUser.vue +427 -0
- package/src/components/android/Task/ShiGongXinXi/ShowBuild.vue +95 -0
- package/src/components/android/Task/Survey/SurveyTsak.vue +141 -0
- package/src/components/android/Task/UpBuild/UpBuildDui.vue +95 -0
- package/src/components/android/Task/UpBuild/UpBuildTsak.vue +95 -0
- package/src/components/android/Task/UpBuild/UpJianLi.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/image/dwg.png +0 -0
- package/src/components/image/dxf.png +0 -0
- package/src/components/product/ApplyCharge/ApplyChargeList.vue +568 -73
- package/src/components/product/ApplyCharge/ApplyChargeSearch.vue +2 -2
- package/src/components/product/ApplyGaiXianCharge/ApplyGaiXianChargeList.vue +198 -0
- package/src/components/product/ApplyGaiXianCharge/ApplyGaiXianChargeSearch.vue +30 -0
- package/src/components/product/ApplyGuanXian/GuanXianCaiLiao.vue +235 -0
- package/src/components/product/ApplyGuanXian/GuanXianExplorationSelect.vue +323 -0
- package/src/components/product/ApplyGuanXian/GuanXianExplorationUser.vue +144 -0
- package/src/components/product/ApplyGuanXian/GuanXianSupervisoryhCart.vue +119 -0
- package/src/components/product/ApplyGuanXian/TabButton.vue +157 -0
- package/src/components/product/ApplyGuanXian/Tabs.vue +67 -0
- package/src/components/product/ApplyMap/ApplyDragaboutList.vue +223 -0
- package/src/components/product/ApplyMap/ApplyInputSearch.vue +212 -0
- package/src/components/product/ApplyMap/ApplyMapCom.vue +82 -0
- package/src/components/product/ApplyMap/ApplyMapLocation.vue +850 -0
- package/src/components/product/ChongZheng/ApplyChongZhengList.vue +414 -0
- package/src/components/product/ChongZheng/ApplyChongZhengSearch.vue +30 -0
- package/src/components/product/Function/InstallFunction.vue +56 -70
- package/src/components/product/Function/InstallInfoSelect.vue +193 -105
- package/src/components/product/Function/Service/FunctionServiceControl.vue +475 -245
- package/src/components/product/Ignition/IgnitionDispatch.vue +92 -0
- package/src/components/product/Ignition/IgnitionList.vue +236 -0
- package/src/components/product/Ignition/IgnitionListManage.vue +403 -0
- package/src/components/product/Ignition/IgnitionRecord.vue +357 -0
- package/src/components/product/List/ShowDevices.vue +279 -0
- package/src/components/product/Onetomany.vue +377 -0
- package/src/components/product/Print/BuildOrder/buildOrderList.vue +445 -0
- package/src/components/product/Print/BuildOrder/printBuildOrder.vue +252 -0
- package/src/components/product/Print/BuildOrder/printGaiXianOrder.vue +232 -0
- package/src/components/product/Print/OrderPrint/GaiXianOrder.vue +281 -0
- package/src/components/product/Print/OrderPrint/printChaiChuOrder.vue +260 -0
- package/src/components/product/Print/img/R-C.jpg +0 -0
- package/src/components/product/Process/ExplorationSelect.vue +580 -347
- package/src/components/product/Process/ExplorationUser.vue +118 -98
- package/src/components/product/Process/NewExplorationUser.vue +184 -0
- package/src/components/product/Process/Processes/ApplyChaiChuInfo.vue +587 -0
- package/src/components/product/Process/Processes/ExhibitionPicture.vue +27 -0
- package/src/components/product/Process/Processes/InstallationDetails.vue +845 -276
- 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 +250 -0
- package/src/components/product/Process/Processes/Print/printPaymentApproval.vue +224 -0
- package/src/components/product/Process/Processes/Print/printPaymentSubject.vue +170 -0
- package/src/components/product/Process/Processes/addressAndUserinfoManagement.vue +59 -113
- package/src/components/product/Process/Processes/chargeManagement.vue +492 -350
- package/src/components/product/Process/Processes/devicesManagement.vue +374 -0
- package/src/components/product/Process/Processes/newDevicesManagement.vue +379 -0
- package/src/components/product/Process/Processes/newInstallationDetails.vue +718 -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/selectChaiChuUserinfo.vue +230 -0
- package/src/components/product/Process/Processes/selectOldUserinfo.vue +241 -0
- package/src/components/product/Process/Processes/selectUserinfo.vue +234 -0
- package/src/components/product/Process/Processes/supplementalAgreement.vue +182 -181
- package/src/components/product/Process/Service/ServiceControl.vue +2155 -856
- package/src/components/product/Process/Service/ShowBackReason.vue +33 -0
- package/src/components/product/Report/ReportItems.vue +79 -0
- package/src/components/product/Report/apply-stair-anzhuang.vue +361 -0
- package/src/components/product/Report/apply-stair-kaifa.vue +138 -0
- package/src/components/product/Report/apply-stair-tongqi.vue +137 -0
- package/src/components/product/Report/apply-stair-wtongqi.vue +138 -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/ExportExcel.vue +360 -0
- package/src/components/product/Supervisory/NewSupervisoryhCart.vue +175 -0
- package/src/components/product/Supervisory/Service/SupervisoryServiceControl.vue +454 -73
- package/src/components/product/Supervisory/SupervisoryControl.vue +28 -35
- package/src/components/product/Supervisory/SupervisoryList.vue +536 -208
- package/src/components/product/Supervisory/SupervisoryhCart.vue +52 -36
- package/src/components/product/VueUtils/ApplyUpload.vue +70 -47
- package/src/components/product/VueUtils/HighMeter.vue +208 -0
- package/src/expandcssAndroid.less +1034 -0
- package/src/main.js +5 -1
- 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/static/images/lefticon/yingyechaxun.png +0 -0
- package/static/images/lefticon/zongheyewu.png +0 -0
- package/static/images/lefticon//345/220/210/345/220/214/347/256/241/347/220/206.png +0 -0
- package/{dist-android/static/denglu.png → static/images/lefticonNew//345/215/241/346/234/215/345/212/241/347/256/241/347/220/206.png} +0 -0
- package/static/images/lefticonNew//345/220/210/345/220/214/347/256/241/347/220/206.png +0 -0
- package/static/images/lefticonNew//345/221/274/345/217/253/347/263/273/347/273/237.png +0 -0
- package/static/images/lefticonNew//345/224/256/346/260/224/346/224/266/350/264/271.png +0 -0
- package/static/images/lefticonNew//345/233/276/345/261/2023/346/213/267/350/264/2354.png +0 -0
- package/static/images/lefticonNew//345/233/276/345/261/202577.png +0 -0
- package/{dist-android/static/psicon.png → static/images/lefticonNew//345/233/276/345/261/2028/346/213/267/350/264/23513.png} +0 -0
- package/static/images/lefticonNew//345/256/211/346/243/200/346/237/245/347/234/213.png +0 -0
- package/static/images/lefticonNew//345/256/211/346/243/200/350/256/241/345/210/222.png +0 -0
- package/static/images/lefticonNew//345/276/256/344/277/241/346/234/215/345/212/241.png +0 -0
- package/static/images/lefticonNew//346/212/245/345/273/272/347/263/273/347/273/237.png +0 -0
- package/static/images/lefticonNew//346/212/245/350/241/250/346/237/245/350/257/242.png +0 -0
- package/static/images/lefticonNew//346/227/245/345/270/270/347/256/241/347/220/206.png +0 -0
- package/static/images/lefticonNew//346/234/272/350/241/250/347/256/241/347/220/206.png +0 -0
- package/static/images/lefticonNew//346/237/245/350/257/242/345/210/227/350/241/250.png +0 -0
- package/static/images/lefticonNew//346/241/243/346/241/210/347/256/241/347/220/206.png +0 -0
- package/static/images/lefticonNew//347/211/251/350/201/224/347/275/221/350/241/250.png +0 -0
- package/static/images/lefticonNew//347/263/273/347/273/237/347/256/241/347/220/206.png +0 -0
- package/static/images/lefticonNew//347/263/273/347/273/237/350/256/276/347/275/256.png +0 -0
- package/static/images/lefticonNew//347/273/217/350/220/245/347/256/241/346/216/247.png +0 -0
- package/static/images/lefticonNew//347/273/274/345/220/210/344/270/232/345/212/241.png +0 -0
- package/static/images/lefticonNew//347/273/274/345/220/210/346/237/245/350/257/242.png +0 -0
- package/static/images/lefticonNew//350/217/234/345/215/225/344/274/270/347/274/251.png +0 -0
- package/static/images/lefticonNew//351/200/200/345/207/272/347/263/273/347/273/237.png +0 -0
- package/yarn-error.log +9976 -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/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/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
- /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/static/images/lefticon/{/345/256/211/346/243/200/346/237/245/347/234/213.png" → anjianjihua.png} +0 -0
- /package/static/images/lefticon/{/346/241/243/346/241/210/347/256/241/347/220/206.png" → danganguanli.png} +0 -0
- /package/static/images/lefticon/{/345/224/256/346/260/224/346/224/266/350/264/271.png" → shouqishoufei.png} +0 -0
- /package/static/images/lefticon/{/347/211/251/350/201/224/347/275/221/350/241/250.png" → wulianwang.png} +0 -0
- /package/static/images/lefticon/{/347/263/273/347/273/237/347/256/241/347/220/206.png" → xitongguanli.png} +0 -0
- /package/static/images/lefticon/{/345/221/274/345/217/253/347/263/273/347/273/237.png" → yuyinkefu.png} +0 -0
|
@@ -0,0 +1,128 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div style="padding: 10px">
|
|
3
|
+
<div partial class="auto app-text panel" style="margin-bottom: 20px">
|
|
4
|
+
<div class="panel-body panel-self">
|
|
5
|
+
<div class="col-xs-6">
|
|
6
|
+
<p class="col-xs-6 text-left font"><b>工程编号:</b></p>
|
|
7
|
+
<p class="col-xs-6 text-left input-font">{{ selectdata.f_apply_num }}</p>
|
|
8
|
+
</div>
|
|
9
|
+
<div class="col-xs-12">
|
|
10
|
+
<p class="col-xs-3 text-left font"><b>用户名称:</b></p>
|
|
11
|
+
<p class="col-xs-9 text-left input-font">{{ selectdata.f_user_name }}</p>
|
|
12
|
+
</div>
|
|
13
|
+
<div class="col-xs-6">
|
|
14
|
+
<p class="col-xs-6 text-left font"><b>报建类型:</b></p>
|
|
15
|
+
<p class="col-xs-6 text-left input-font">{{ selectdata.f_apply_type }}</p>
|
|
16
|
+
</div>
|
|
17
|
+
<div class="col-xs-6">
|
|
18
|
+
<p class="col-xs-6 text-left font"><b>小  区:</b></p>
|
|
19
|
+
<p class="col-xs-6 text-left input-font">{{ selectdata.f_residential_area }}</p>
|
|
20
|
+
</div>
|
|
21
|
+
<div class="col-xs-6">
|
|
22
|
+
<p class="col-xs-6 text-left font"><b>联系人:</b></p>
|
|
23
|
+
<p class="col-xs-6 text-left input-font">{{ selectdata.f_contact }}</p>
|
|
24
|
+
</div>
|
|
25
|
+
<div class="col-xs-6">
|
|
26
|
+
<p class="col-xs-6 text-left font"><b>联系电话:</b></p>
|
|
27
|
+
<p class="col-xs-6 text-left input-font">{{ selectdata.f_phone }}</p>
|
|
28
|
+
</div>
|
|
29
|
+
<div class="col-xs-6">
|
|
30
|
+
<p class="col-xs-6 text-left font"><b>办理环节:</b></p>
|
|
31
|
+
<p class="col-xs-6 text-left input-font">{{ selectdata.defname }}</p>
|
|
32
|
+
</div>
|
|
33
|
+
<div class="col-xs-12">
|
|
34
|
+
<p class="col-xs-3 text-left font"><b>项目地址:</b></p>
|
|
35
|
+
<p class="col-xs-9 text-left input-font">{{ selectdata.f_address }}</p>
|
|
36
|
+
</div>
|
|
37
|
+
</div>
|
|
38
|
+
</div>
|
|
39
|
+
<div class="row" v-for="(i,row) in defnames">
|
|
40
|
+
<div :class="row.id === selectdata.actid ? 'item selectIndex' : 'item'">
|
|
41
|
+
{{row.defname}}
|
|
42
|
+
<br>
|
|
43
|
+
{{ row.finishtime ? row.finishtime : row.sendtime }}
|
|
44
|
+
</div>
|
|
45
|
+
<div class="arrow glyphicon glyphicon-menu-down" v-if="i != defnames.length-1" aria-hidden="true"></div>
|
|
46
|
+
</div>
|
|
47
|
+
</div>
|
|
48
|
+
<!-- <div class="col-sm-12 col-xs-12">-->
|
|
49
|
+
<!-- <accordion one-at-a-time="true">-->
|
|
50
|
+
<!-- <panel header='附件' :is-open="false" type="primary">-->
|
|
51
|
+
<!-- <app-upload :blodid="selectdata.f_process_id"-->
|
|
52
|
+
<!-- :isupload="true"-->
|
|
53
|
+
<!-- :isdelete="true"-->
|
|
54
|
+
<!-- :isusetype="true"-->
|
|
55
|
+
<!-- :isremark="true"-->
|
|
56
|
+
<!-- :takeimg="true"-->
|
|
57
|
+
<!-- :issearch="true"-->
|
|
58
|
+
<!-- :defname="selectdata.defname">-->
|
|
59
|
+
<!-- </app-upload>-->
|
|
60
|
+
<!-- </panel>-->
|
|
61
|
+
<!-- </accordion>-->
|
|
62
|
+
<!-- </div>-->
|
|
63
|
+
</template>
|
|
64
|
+
|
|
65
|
+
<script>
|
|
66
|
+
import {HttpResetClass} from 'vue-client'
|
|
67
|
+
export default {
|
|
68
|
+
title: '流程节点',
|
|
69
|
+
props: ['selectdata'],
|
|
70
|
+
data () {
|
|
71
|
+
return {
|
|
72
|
+
defnames: []
|
|
73
|
+
}
|
|
74
|
+
},
|
|
75
|
+
ready () {
|
|
76
|
+
this.initial()
|
|
77
|
+
},
|
|
78
|
+
methods: {
|
|
79
|
+
async initial() {
|
|
80
|
+
// 获取流程节点信息
|
|
81
|
+
let http = new HttpResetClass()
|
|
82
|
+
let data = {
|
|
83
|
+
processid: this.selectdata.f_process_id
|
|
84
|
+
}
|
|
85
|
+
let res = await http.load(
|
|
86
|
+
'POST',`${this.$androidUtil.getProxyUrl()}/rs/sql/getAllNode`,
|
|
87
|
+
{data: data},
|
|
88
|
+
{
|
|
89
|
+
resolveMsg:null,
|
|
90
|
+
rejectMsg:null
|
|
91
|
+
})
|
|
92
|
+
this.defnames = res.data
|
|
93
|
+
},
|
|
94
|
+
},
|
|
95
|
+
watch: {
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
</script>
|
|
99
|
+
|
|
100
|
+
<style scoped>
|
|
101
|
+
.app-text {
|
|
102
|
+
font-size: 12px;
|
|
103
|
+
}
|
|
104
|
+
.panel-self{
|
|
105
|
+
border-radius: 10px;
|
|
106
|
+
border:1px solid #499EDF;
|
|
107
|
+
background-color: #F8F8F8;
|
|
108
|
+
}
|
|
109
|
+
.row{
|
|
110
|
+
padding: 0 40px;
|
|
111
|
+
text-align: center;
|
|
112
|
+
height: auto;
|
|
113
|
+
}
|
|
114
|
+
.item{
|
|
115
|
+
border-radius: 2em;
|
|
116
|
+
border: 1px solid silver;
|
|
117
|
+
line-height: 25px;
|
|
118
|
+
}
|
|
119
|
+
.arrow{
|
|
120
|
+
width: 100%;
|
|
121
|
+
color: #5ac0d9;
|
|
122
|
+
font-weight: bold;
|
|
123
|
+
}
|
|
124
|
+
.selectIndex{
|
|
125
|
+
background-color: #5ac0d9;
|
|
126
|
+
color: #ffffff;
|
|
127
|
+
}
|
|
128
|
+
</style>
|
|
@@ -0,0 +1,114 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div>
|
|
3
|
+
<tabset v-ref:tabs :close="false" nav-style="tabs nav-apply-tab" :active.sync="active">
|
|
4
|
+
<tab header='任务地图'>
|
|
5
|
+
<div class="auto tip">
|
|
6
|
+
<p>当前任务数量:{{ tasknumber }}</p>
|
|
7
|
+
<p>当前任务点:{{labelmarksarray.length}}</p>
|
|
8
|
+
</div>
|
|
9
|
+
<amap-location
|
|
10
|
+
:islocation="true"
|
|
11
|
+
:locationzoomcenter="false"
|
|
12
|
+
:usenative="true"
|
|
13
|
+
:isshowsearch="false"
|
|
14
|
+
:mylocationinfo="false"
|
|
15
|
+
:islocationclearmark="false"
|
|
16
|
+
:isshowmapmodel="false"
|
|
17
|
+
:locationwindow="false"
|
|
18
|
+
mapmodel="dragMarker"
|
|
19
|
+
:labelmarksarray="labelmarksarray"
|
|
20
|
+
@diyspotmouseclick="diyspotmouseclick"
|
|
21
|
+
></amap-location>
|
|
22
|
+
</tab>
|
|
23
|
+
<tab header='任务列表'>
|
|
24
|
+
<app-exploration-user v-ref:exploration :defname="defname" :f_lat="f_lat" :f_lng="f_lng"></app-exploration-user>
|
|
25
|
+
</tab>
|
|
26
|
+
</tabset>
|
|
27
|
+
</div>
|
|
28
|
+
</template>
|
|
29
|
+
<script>
|
|
30
|
+
import {HttpResetClass, PagedList} from 'vue-client'
|
|
31
|
+
import Vue from 'vue'
|
|
32
|
+
|
|
33
|
+
export default {
|
|
34
|
+
title: '工程施工',
|
|
35
|
+
data () {
|
|
36
|
+
return {
|
|
37
|
+
labelmarksarray: [],
|
|
38
|
+
tasknumber: 0,
|
|
39
|
+
active: 0,
|
|
40
|
+
f_lat: null,
|
|
41
|
+
f_lng: null,
|
|
42
|
+
defname: '工程施工'
|
|
43
|
+
}
|
|
44
|
+
},
|
|
45
|
+
ready () {
|
|
46
|
+
console.log('进入工程施工')
|
|
47
|
+
this.getApplyTaskDot()
|
|
48
|
+
},
|
|
49
|
+
methods: {
|
|
50
|
+
diyspotmouseclick (data) {
|
|
51
|
+
this.f_lat = data.f_lat
|
|
52
|
+
this.f_lng = data.f_lng
|
|
53
|
+
|
|
54
|
+
this.active = 1
|
|
55
|
+
},
|
|
56
|
+
async getApplyTaskDot () {
|
|
57
|
+
console.log('==========查询任务点==============')
|
|
58
|
+
this.tasknumber = 0
|
|
59
|
+
let http = new HttpResetClass()
|
|
60
|
+
let data = {
|
|
61
|
+
defname: this.defname,
|
|
62
|
+
userid: Vue.user.id
|
|
63
|
+
}
|
|
64
|
+
let res = await http.load(
|
|
65
|
+
'POST',
|
|
66
|
+
`${this.$androidUtil.getProxyUrl()}/rs/sql/getBuildTaskDot`,
|
|
67
|
+
{data: data},
|
|
68
|
+
{
|
|
69
|
+
resolveMsg: null,
|
|
70
|
+
rejectMsg: '任务点获取失败!!!'
|
|
71
|
+
})
|
|
72
|
+
this.labelmarksarray = res.data.map(item => {
|
|
73
|
+
this.tasknumber += item.count
|
|
74
|
+
return {
|
|
75
|
+
data: {
|
|
76
|
+
data: item,
|
|
77
|
+
content: `<p>任务数:${item.count}</p>`
|
|
78
|
+
},
|
|
79
|
+
position: [item.f_lng, item.f_lat],
|
|
80
|
+
isclearmarker: false,
|
|
81
|
+
islabel: false
|
|
82
|
+
}
|
|
83
|
+
})
|
|
84
|
+
}
|
|
85
|
+
},
|
|
86
|
+
events: {
|
|
87
|
+
'refreshDot' () {
|
|
88
|
+
this.getApplyTaskDot()
|
|
89
|
+
}
|
|
90
|
+
},
|
|
91
|
+
watch: {
|
|
92
|
+
},
|
|
93
|
+
computed: {
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
</script>
|
|
97
|
+
<style scoped>
|
|
98
|
+
.tip{
|
|
99
|
+
position: absolute;
|
|
100
|
+
z-index: 1000;
|
|
101
|
+
color: red;
|
|
102
|
+
font-size: 24px;
|
|
103
|
+
right: 30px;
|
|
104
|
+
padding-top: 20px;
|
|
105
|
+
}
|
|
106
|
+
</style>
|
|
107
|
+
<style lang="less">
|
|
108
|
+
.nav-apply-tab {
|
|
109
|
+
li {
|
|
110
|
+
width: 50%;
|
|
111
|
+
text-align: center;
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
</style>
|
|
@@ -0,0 +1,114 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div>
|
|
3
|
+
<tabset v-ref:tabs :close="false" nav-style="tabs nav-apply-tab" :active.sync="active">
|
|
4
|
+
<tab header='任务地图'>
|
|
5
|
+
<div class="auto tip">
|
|
6
|
+
<p>当前任务数量:{{ tasknumber }}</p>
|
|
7
|
+
<p>当前任务点:{{labelmarksarray.length}}</p>
|
|
8
|
+
</div>
|
|
9
|
+
<amap-location
|
|
10
|
+
:islocation="true"
|
|
11
|
+
:locationzoomcenter="false"
|
|
12
|
+
:usenative="true"
|
|
13
|
+
:isshowsearch="false"
|
|
14
|
+
:mylocationinfo="false"
|
|
15
|
+
:islocationclearmark="false"
|
|
16
|
+
:isshowmapmodel="false"
|
|
17
|
+
:locationwindow="false"
|
|
18
|
+
mapmodel="dragMarker"
|
|
19
|
+
:labelmarksarray="labelmarksarray"
|
|
20
|
+
@diyspotmouseclick="diyspotmouseclick"
|
|
21
|
+
></amap-location>
|
|
22
|
+
</tab>
|
|
23
|
+
<tab header='任务列表'>
|
|
24
|
+
<app-exploration-user v-ref:exploration :defname="defname" :f_lat="f_lat" :f_lng="f_lng"></app-exploration-user>
|
|
25
|
+
</tab>
|
|
26
|
+
</tabset>
|
|
27
|
+
</div>
|
|
28
|
+
</template>
|
|
29
|
+
<script>
|
|
30
|
+
import {HttpResetClass, PagedList} from 'vue-client'
|
|
31
|
+
import Vue from 'vue'
|
|
32
|
+
|
|
33
|
+
export default {
|
|
34
|
+
title: '施工通气',
|
|
35
|
+
data () {
|
|
36
|
+
return {
|
|
37
|
+
labelmarksarray: [],
|
|
38
|
+
tasknumber: 0,
|
|
39
|
+
active: 0,
|
|
40
|
+
f_lat: null,
|
|
41
|
+
f_lng: null,
|
|
42
|
+
defname: '施工通气'
|
|
43
|
+
}
|
|
44
|
+
},
|
|
45
|
+
ready () {
|
|
46
|
+
console.log('进入施工通气')
|
|
47
|
+
this.getApplyTaskDot()
|
|
48
|
+
},
|
|
49
|
+
methods: {
|
|
50
|
+
diyspotmouseclick (data) {
|
|
51
|
+
this.f_lat = data.f_lat
|
|
52
|
+
this.f_lng = data.f_lng
|
|
53
|
+
|
|
54
|
+
this.active = 1
|
|
55
|
+
},
|
|
56
|
+
async getApplyTaskDot () {
|
|
57
|
+
console.log('==========查询任务点==============')
|
|
58
|
+
this.tasknumber = 0
|
|
59
|
+
let http = new HttpResetClass()
|
|
60
|
+
let data = {
|
|
61
|
+
defname: this.defname,
|
|
62
|
+
userid: Vue.user.id
|
|
63
|
+
}
|
|
64
|
+
let res = await http.load(
|
|
65
|
+
'POST',
|
|
66
|
+
`${this.$androidUtil.getProxyUrl()}/rs/sql/getBuildTaskDot`,
|
|
67
|
+
{data: data},
|
|
68
|
+
{
|
|
69
|
+
resolveMsg: null,
|
|
70
|
+
rejectMsg: '任务点获取失败!!!'
|
|
71
|
+
})
|
|
72
|
+
this.labelmarksarray = res.data.map(item => {
|
|
73
|
+
this.tasknumber += item.count
|
|
74
|
+
return {
|
|
75
|
+
data: {
|
|
76
|
+
data: item,
|
|
77
|
+
content: `<p>任务数:${item.count}</p>`
|
|
78
|
+
},
|
|
79
|
+
position: [item.f_lng, item.f_lat],
|
|
80
|
+
isclearmarker: false,
|
|
81
|
+
islabel: false
|
|
82
|
+
}
|
|
83
|
+
})
|
|
84
|
+
}
|
|
85
|
+
},
|
|
86
|
+
events: {
|
|
87
|
+
'refreshDot' () {
|
|
88
|
+
this.getApplyTaskDot()
|
|
89
|
+
}
|
|
90
|
+
},
|
|
91
|
+
watch: {
|
|
92
|
+
},
|
|
93
|
+
computed: {
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
</script>
|
|
97
|
+
<style scoped>
|
|
98
|
+
.tip{
|
|
99
|
+
position: absolute;
|
|
100
|
+
z-index: 1000;
|
|
101
|
+
color: red;
|
|
102
|
+
font-size: 24px;
|
|
103
|
+
right: 30px;
|
|
104
|
+
padding-top: 20px;
|
|
105
|
+
}
|
|
106
|
+
</style>
|
|
107
|
+
<style lang="less">
|
|
108
|
+
.nav-apply-tab {
|
|
109
|
+
li {
|
|
110
|
+
width: 50%;
|
|
111
|
+
text-align: center;
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
</style>
|
|
@@ -0,0 +1,124 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div>
|
|
3
|
+
<tabset v-ref:tabs :close="false" nav-style="tabs nav-apply-tab" :active.sync="active">
|
|
4
|
+
<tab header='任务地图'>
|
|
5
|
+
<div class="auto tip">
|
|
6
|
+
<p>当前任务数量:{{ tasknumber }}</p>
|
|
7
|
+
<p>当前任务点:{{labelmarksarray.length}}</p>
|
|
8
|
+
</div>
|
|
9
|
+
<amap-location
|
|
10
|
+
:islocation="true"
|
|
11
|
+
:locationzoomcenter="false"
|
|
12
|
+
:usenative="true"
|
|
13
|
+
:isshowsearch="false"
|
|
14
|
+
:mylocationinfo="false"
|
|
15
|
+
:islocationclearmark="false"
|
|
16
|
+
:isshowmapmodel="false"
|
|
17
|
+
:locationwindow="false"
|
|
18
|
+
mapmodel="dragMarker"
|
|
19
|
+
:labelmarksarray="labelmarksarray"
|
|
20
|
+
@diyspotmouseclick="diyspotmouseclick"
|
|
21
|
+
></amap-location>
|
|
22
|
+
</tab>
|
|
23
|
+
<tab header='任务列表'>
|
|
24
|
+
<app-exploration-user v-ref:exploration :defname="defname" :f_lat="f_lat" :f_lng="f_lng"></app-exploration-user>
|
|
25
|
+
</tab>
|
|
26
|
+
</tabset>
|
|
27
|
+
</div>
|
|
28
|
+
</template>
|
|
29
|
+
<script>
|
|
30
|
+
import {HttpResetClass, PagedList} from 'vue-client'
|
|
31
|
+
import Vue from 'vue'
|
|
32
|
+
|
|
33
|
+
export default {
|
|
34
|
+
title: '安检维修施工',
|
|
35
|
+
data () {
|
|
36
|
+
return {
|
|
37
|
+
labelmarksarray: [],
|
|
38
|
+
tasknumber: 0,
|
|
39
|
+
active: 0,
|
|
40
|
+
f_lat: null,
|
|
41
|
+
f_lng: null,
|
|
42
|
+
defname: '安检维修施工'
|
|
43
|
+
}
|
|
44
|
+
},
|
|
45
|
+
ready () {
|
|
46
|
+
this.getApplyTaskDot()
|
|
47
|
+
},
|
|
48
|
+
methods: {
|
|
49
|
+
async diyspotmouseclick(data) {
|
|
50
|
+
this.f_lat = data.f_lat
|
|
51
|
+
this.f_lng = data.f_lng
|
|
52
|
+
|
|
53
|
+
data.condition = `f_lat = '${data.f_lat}' and f_lng = '${data.f_lng}'`
|
|
54
|
+
let http = new HttpResetClass()
|
|
55
|
+
let res = await http.load(
|
|
56
|
+
'POST',
|
|
57
|
+
`${this.$androidUtil.getProxyUrl()}/rs/sql/getApplyType`,
|
|
58
|
+
{data: data},
|
|
59
|
+
{
|
|
60
|
+
resolveMsg: null,
|
|
61
|
+
rejectMsg: '报建类型查询失败!!!'
|
|
62
|
+
})
|
|
63
|
+
if(res.data.length > 0){
|
|
64
|
+
this.active = 1
|
|
65
|
+
}
|
|
66
|
+
},
|
|
67
|
+
async getApplyTaskDot () {
|
|
68
|
+
this.tasknumber = 0
|
|
69
|
+
let http = new HttpResetClass()
|
|
70
|
+
let data = {
|
|
71
|
+
defname: this.defname,
|
|
72
|
+
userid: Vue.user.id
|
|
73
|
+
}
|
|
74
|
+
let res = await http.load(
|
|
75
|
+
'POST',
|
|
76
|
+
`${this.$androidUtil.getProxyUrl()}/rs/sql/getApplyTaskDot`,
|
|
77
|
+
{data: data},
|
|
78
|
+
{
|
|
79
|
+
resolveMsg: null,
|
|
80
|
+
rejectMsg: '任务点获取失败!!!'
|
|
81
|
+
})
|
|
82
|
+
this.labelmarksarray = res.data.map(item => {
|
|
83
|
+
this.tasknumber += item.count
|
|
84
|
+
return {
|
|
85
|
+
data: {
|
|
86
|
+
data: item,
|
|
87
|
+
content: `<p>任务数:${item.count}</p>`
|
|
88
|
+
},
|
|
89
|
+
position: [item.f_lng, item.f_lat],
|
|
90
|
+
isclearmarker: false,
|
|
91
|
+
islabel: false
|
|
92
|
+
}
|
|
93
|
+
})
|
|
94
|
+
}
|
|
95
|
+
},
|
|
96
|
+
events: {
|
|
97
|
+
'refreshDot' () {
|
|
98
|
+
this.getApplyTaskDot()
|
|
99
|
+
}
|
|
100
|
+
},
|
|
101
|
+
watch: {
|
|
102
|
+
},
|
|
103
|
+
computed: {
|
|
104
|
+
}
|
|
105
|
+
}
|
|
106
|
+
</script>
|
|
107
|
+
<style scoped>
|
|
108
|
+
.tip{
|
|
109
|
+
position: absolute;
|
|
110
|
+
z-index: 1000;
|
|
111
|
+
color: red;
|
|
112
|
+
font-size: 24px;
|
|
113
|
+
right: 30px;
|
|
114
|
+
padding-top: 20px;
|
|
115
|
+
}
|
|
116
|
+
</style>
|
|
117
|
+
<style lang="less">
|
|
118
|
+
.nav-apply-tab3 {
|
|
119
|
+
li {
|
|
120
|
+
width: 33%;
|
|
121
|
+
text-align: center;
|
|
122
|
+
}
|
|
123
|
+
}
|
|
124
|
+
</style>
|
|
@@ -0,0 +1,124 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div>
|
|
3
|
+
<tabset v-ref:tabs :close="false" nav-style="tabs nav-apply-tab" :active.sync="active">
|
|
4
|
+
<tab header='任务地图'>
|
|
5
|
+
<div class="auto tip">
|
|
6
|
+
<p>当前任务数量:{{ tasknumber }}</p>
|
|
7
|
+
<p>当前任务点:{{labelmarksarray.length}}</p>
|
|
8
|
+
</div>
|
|
9
|
+
<amap-location
|
|
10
|
+
:islocation="true"
|
|
11
|
+
:locationzoomcenter="false"
|
|
12
|
+
:usenative="true"
|
|
13
|
+
:isshowsearch="false"
|
|
14
|
+
:mylocationinfo="false"
|
|
15
|
+
:islocationclearmark="false"
|
|
16
|
+
:isshowmapmodel="false"
|
|
17
|
+
:locationwindow="false"
|
|
18
|
+
mapmodel="dragMarker"
|
|
19
|
+
:labelmarksarray="labelmarksarray"
|
|
20
|
+
@diyspotmouseclick="diyspotmouseclick"
|
|
21
|
+
></amap-location>
|
|
22
|
+
</tab>
|
|
23
|
+
<tab header='任务列表'>
|
|
24
|
+
<app-exploration-user v-ref:exploration :defname="defname" :f_lat="f_lat" :f_lng="f_lng"></app-exploration-user>
|
|
25
|
+
</tab>
|
|
26
|
+
</tabset>
|
|
27
|
+
</div>
|
|
28
|
+
</template>
|
|
29
|
+
<script>
|
|
30
|
+
import {HttpResetClass, PagedList} from 'vue-client'
|
|
31
|
+
import Vue from 'vue'
|
|
32
|
+
|
|
33
|
+
export default {
|
|
34
|
+
title: '维修派单',
|
|
35
|
+
data () {
|
|
36
|
+
return {
|
|
37
|
+
labelmarksarray: [],
|
|
38
|
+
tasknumber: 0,
|
|
39
|
+
active: 0,
|
|
40
|
+
f_lat: null,
|
|
41
|
+
f_lng: null,
|
|
42
|
+
defname: '维修派单'
|
|
43
|
+
}
|
|
44
|
+
},
|
|
45
|
+
ready () {
|
|
46
|
+
this.getApplyTaskDot()
|
|
47
|
+
},
|
|
48
|
+
methods: {
|
|
49
|
+
async diyspotmouseclick(data) {
|
|
50
|
+
this.f_lat = data.f_lat
|
|
51
|
+
this.f_lng = data.f_lng
|
|
52
|
+
|
|
53
|
+
data.condition = `f_lat = '${data.f_lat}' and f_lng = '${data.f_lng}'`
|
|
54
|
+
let http = new HttpResetClass()
|
|
55
|
+
let res = await http.load(
|
|
56
|
+
'POST',
|
|
57
|
+
`${this.$androidUtil.getProxyUrl()}/rs/sql/getApplyType`,
|
|
58
|
+
{data: data},
|
|
59
|
+
{
|
|
60
|
+
resolveMsg: null,
|
|
61
|
+
rejectMsg: '报建类型查询失败!!!'
|
|
62
|
+
})
|
|
63
|
+
if(res.data.length > 0){
|
|
64
|
+
this.active = 1
|
|
65
|
+
}
|
|
66
|
+
},
|
|
67
|
+
async getApplyTaskDot () {
|
|
68
|
+
this.tasknumber = 0
|
|
69
|
+
let http = new HttpResetClass()
|
|
70
|
+
let data = {
|
|
71
|
+
defname: this.defname,
|
|
72
|
+
userid: Vue.user.id
|
|
73
|
+
}
|
|
74
|
+
let res = await http.load(
|
|
75
|
+
'POST',
|
|
76
|
+
`${this.$androidUtil.getProxyUrl()}/rs/sql/getApplyTaskDot`,
|
|
77
|
+
{data: data},
|
|
78
|
+
{
|
|
79
|
+
resolveMsg: null,
|
|
80
|
+
rejectMsg: '任务点获取失败!!!'
|
|
81
|
+
})
|
|
82
|
+
this.labelmarksarray = res.data.map(item => {
|
|
83
|
+
this.tasknumber += item.count
|
|
84
|
+
return {
|
|
85
|
+
data: {
|
|
86
|
+
data: item,
|
|
87
|
+
content: `<p>任务数:${item.count}</p>`
|
|
88
|
+
},
|
|
89
|
+
position: [item.f_lng, item.f_lat],
|
|
90
|
+
isclearmarker: false,
|
|
91
|
+
islabel: false
|
|
92
|
+
}
|
|
93
|
+
})
|
|
94
|
+
}
|
|
95
|
+
},
|
|
96
|
+
events: {
|
|
97
|
+
'refreshDot' () {
|
|
98
|
+
this.getApplyTaskDot()
|
|
99
|
+
}
|
|
100
|
+
},
|
|
101
|
+
watch: {
|
|
102
|
+
},
|
|
103
|
+
computed: {
|
|
104
|
+
}
|
|
105
|
+
}
|
|
106
|
+
</script>
|
|
107
|
+
<style scoped>
|
|
108
|
+
.tip{
|
|
109
|
+
position: absolute;
|
|
110
|
+
z-index: 1000;
|
|
111
|
+
color: red;
|
|
112
|
+
font-size: 24px;
|
|
113
|
+
right: 30px;
|
|
114
|
+
padding-top: 20px;
|
|
115
|
+
}
|
|
116
|
+
</style>
|
|
117
|
+
<style lang="less">
|
|
118
|
+
.nav-apply-tab3 {
|
|
119
|
+
li {
|
|
120
|
+
width: 33%;
|
|
121
|
+
text-align: center;
|
|
122
|
+
}
|
|
123
|
+
}
|
|
124
|
+
</style>
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div>
|
|
3
|
+
<tabset v-ref:tabs :close="false" nav-style="tabs nav-apply-tab2" :active.sync="active">
|
|
4
|
+
<tab header='任务列表'>
|
|
5
|
+
<app-exploration-user v-ref:exploration :defname="defname" :f_lat="f_lat" :f_lng="f_lng"></app-exploration-user>
|
|
6
|
+
</tab>
|
|
7
|
+
</tabset>
|
|
8
|
+
</div>
|
|
9
|
+
</template>
|
|
10
|
+
<script>
|
|
11
|
+
import {HttpResetClass, PagedList} from 'vue-client'
|
|
12
|
+
import Vue from 'vue'
|
|
13
|
+
|
|
14
|
+
export default {
|
|
15
|
+
title: '部长审核',
|
|
16
|
+
data () {
|
|
17
|
+
return {
|
|
18
|
+
labelmarksarray: [],
|
|
19
|
+
tasknumber: 0,
|
|
20
|
+
active: 0,
|
|
21
|
+
f_lat: null,
|
|
22
|
+
f_lng: null,
|
|
23
|
+
defname: '部长审核'
|
|
24
|
+
}
|
|
25
|
+
},
|
|
26
|
+
ready () {
|
|
27
|
+
console.log('部长审核')
|
|
28
|
+
},
|
|
29
|
+
methods: {
|
|
30
|
+
diyspotmouseclick (data) {
|
|
31
|
+
this.f_lat = data.f_lat
|
|
32
|
+
this.f_lng = data.f_lng
|
|
33
|
+
|
|
34
|
+
this.active = 1
|
|
35
|
+
}
|
|
36
|
+
},
|
|
37
|
+
events: {
|
|
38
|
+
'refreshDot' () {
|
|
39
|
+
}
|
|
40
|
+
},
|
|
41
|
+
watch: {
|
|
42
|
+
},
|
|
43
|
+
computed: {
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
</script>
|
|
47
|
+
<style scoped>
|
|
48
|
+
.tip{
|
|
49
|
+
position: absolute;
|
|
50
|
+
z-index: 1000;
|
|
51
|
+
color: red;
|
|
52
|
+
font-size: 24px;
|
|
53
|
+
right: 30px;
|
|
54
|
+
padding-top: 20px;
|
|
55
|
+
}
|
|
56
|
+
</style>
|
|
57
|
+
<style lang="less">
|
|
58
|
+
.nav-apply-tab2 {
|
|
59
|
+
li {
|
|
60
|
+
width: 100%;
|
|
61
|
+
text-align: center;
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
</style>
|