apply-clients 3.2.34 → 3.2.48
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/dist-android/static/15.js +2 -2
- package/dist-android/static/23.js +2 -2
- package/index.html +1 -1
- package/package.json +5 -5
- package/src/AndroidApp.vue +10 -9
- package/src/android-bootstrap/fonts/glyphicons-halflings-regular.eot +0 -0
- package/src/android-bootstrap/fonts/glyphicons-halflings-regular.svg +288 -0
- package/src/android-bootstrap/fonts/glyphicons-halflings-regular.ttf +0 -0
- package/src/android-bootstrap/fonts/glyphicons-halflings-regular.woff +0 -0
- package/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/apply.js +143 -25
- package/src/applyAndroid.js +5 -3
- package/src/components/Util.js +5 -5
- package/src/components/app_apply/AppServiceView.vue +2 -2
- package/src/components/app_apply/Process/AppExplorationUser.vue +200 -310
- package/src/components/app_apply/Process/AppProgressReport.vue +84 -0
- package/src/components/app_apply/Process/AppServiceControl.vue +215 -4
- package/src/components/app_apply/ProgressReport/ProgressReportDetail.vue +64 -0
- package/src/components/app_apply/ProgressReport/ProgressReportList.vue +209 -0
- package/src/components/app_apply/Supervisory/AppProcessSupervisory.vue +12 -129
- package/src/components/image/tubiao.png +0 -0
- package/src/components/product/{ApplyCharge → Apply/ApplyCharge}/ApplyChargeList.vue +4 -8
- package/src/components/product/{ApplyCharge → Apply/ApplyCharge}/ApplyChargeSearch.vue +2 -4
- package/src/components/product/{Function → Apply/Function}/InstallFunction.vue +4 -4
- package/src/components/product/{Function → Apply/Function}/InstallInfoSelect.vue +12 -16
- package/src/components/product/{Function → Apply/Function}/Service/FunctionServiceControl.vue +0 -1
- package/src/components/product/{Function → Apply/Function}/StopApplyCrrdList.vue +0 -0
- package/src/components/product/{Function → Apply/Function}/functions/ApplyRecordCancel.vue +1 -1
- package/src/components/product/{Function → Apply/Function}/functions/StopInstall.vue +11 -25
- package/src/components/product/{Process → Apply/Process}/ExplorationSelect.vue +5 -8
- package/src/components/product/{Process → Apply/Process}/ExplorationUser.vue +3 -4
- package/src/components/product/Apply/Process/Processes/InstallationDetails.vue +478 -0
- package/src/components/product/{Process → Apply/Process}/Processes/addressAndUserinfoManagement.vue +3 -8
- package/src/components/product/{Process → Apply/Process}/Processes/chargeManagement.vue +11 -51
- package/src/components/product/{Process → Apply/Process}/Processes/supplementalAgreement.vue +1 -1
- package/src/components/product/{Process → Apply/Process}/Service/ServiceControl.vue +11 -75
- package/src/components/product/{Process → Apply/Process}/ShowBackReason.vue +0 -0
- package/src/components/product/{Supervisory → Apply/Supervisory}/Service/SupervisoryServiceControl.vue +0 -5
- package/src/components/product/{Supervisory → Apply/Supervisory}/SupervisoryControl.vue +43 -22
- package/src/components/product/{Supervisory → Apply/Supervisory}/SupervisoryList.vue +15 -13
- package/src/components/product/{Supervisory → Apply/Supervisory}/SupervisoryhCart.vue +1 -1
- package/src/components/product/Ledger/ContractManagement/OtherContract/OtherContract.vue +156 -0
- package/src/components/product/Ledger/ContractManagement/OtherContract/OtherContractInformation.vue +429 -0
- package/src/components/product/Ledger/ContractManagement/OtherContract/OtherContractList.vue +267 -0
- package/src/components/product/Ledger/ContractManagement/PurchaseContract/PurchaseContract.vue +138 -0
- package/src/components/product/Ledger/ContractManagement/PurchaseContract/PurchaseContractInformation.vue +715 -0
- package/src/components/product/Ledger/ContractManagement/PurchaseContract/PurchaseContractList.vue +304 -0
- package/src/components/product/Ledger/ContractManagement/RepairContract/RepairContract.vue +119 -0
- package/src/components/product/Ledger/ContractManagement/RepairContract/RepairContractInformation.vue +286 -0
- package/src/components/product/Ledger/ContractManagement/RepairContract/RepairContractList.vue +258 -0
- package/src/components/product/Ledger/FacilityManagement/EmployRecord/EmployRecord.vue +24 -0
- package/src/components/product/Ledger/FacilityManagement/EmployRecord/EmployRecordList.vue +218 -0
- package/src/components/product/Ledger/FacilityManagement/FacilityInventory/FacilityEmployRecord.vue +124 -0
- package/src/components/product/Ledger/FacilityManagement/FacilityInventory/FacilityInventory.vue +307 -0
- package/src/components/product/Ledger/FacilityManagement/FacilityInventory/FacilityInventoryInformation.vue +583 -0
- package/src/components/product/Ledger/FacilityManagement/FacilityInventory/FacilityInventoryList.vue +285 -0
- package/src/components/product/Ledger/FacilityManagement/FacilityInventory/FacilityServiceRecord.vue +113 -0
- package/src/components/product/Ledger/FacilityManagement/FacilityInventory/addFacilityInformation.vue +406 -0
- package/src/components/product/Ledger/FacilityManagement/FacilityInventory/addoldFacilityInformation.vue +326 -0
- package/src/components/product/Ledger/FacilityManagement/ScrapRecord/ScrapRecord.vue +24 -0
- package/src/components/product/Ledger/FacilityManagement/ScrapRecord/ScrapRecordList.vue +157 -0
- package/src/components/product/Ledger/FacilityManagement/ServiceRecord/ServiceRecord.vue +24 -0
- package/src/components/product/Ledger/FacilityManagement/ServiceRecord/ServiceRecordList.vue +168 -0
- package/src/components/product/Ledger/FileDownload/FileDownload.vue +42 -0
- package/src/components/product/Ledger/Function/InstallFunction.vue +118 -0
- package/src/components/product/Ledger/Function/InstallInfoSelect.vue +299 -0
- package/src/components/product/Ledger/Function/Service/FunctionServiceControl.vue +220 -0
- package/src/components/product/Ledger/Function/functions/PauseInstall.vue +92 -0
- package/src/components/product/Ledger/ImportApply/ImportApply.vue +68 -0
- package/src/components/product/Ledger/MaterialManagement/DeliveryRecord/DeliveryRecord.vue +24 -0
- package/src/components/product/Ledger/MaterialManagement/DeliveryRecord/DeliveryRecordList.vue +281 -0
- package/src/components/product/Ledger/MaterialManagement/InventoryInformation/InventoryInformation.vue +313 -0
- package/src/components/product/Ledger/MaterialManagement/InventoryInformation/InventoryInformationList.vue +250 -0
- package/src/components/product/Ledger/MaterialManagement/InventoryInformation/MaterialDeliveryRecord.vue +110 -0
- package/src/components/product/Ledger/MaterialManagement/InventoryInformation/MaterialEarlyWarning.vue +194 -0
- package/src/components/product/Ledger/MaterialManagement/InventoryInformation/MaterialInformation.vue +186 -0
- package/src/components/product/Ledger/MaterialManagement/InventoryInformation/MaterialOutStock.vue +438 -0
- package/src/components/product/Ledger/MaterialManagement/InventoryInformation/MaterialOutboundOrder.vue +457 -0
- package/src/components/product/Ledger/MaterialManagement/InventoryInformation/MaterialWarehousingRecord.vue +110 -0
- package/src/components/product/Ledger/MaterialManagement/InventoryInformation/PurchaseMaterial.vue +425 -0
- package/src/components/product/Ledger/MaterialManagement/InventoryInformation/PurchaseOrder.vue +481 -0
- package/src/components/product/Ledger/MaterialManagement/InventoryInformation/ReturnMaterial.vue +321 -0
- package/src/components/product/Ledger/MaterialManagement/OutboundOrder/OutboundOrder.vue +86 -0
- package/src/components/product/Ledger/MaterialManagement/OutboundOrder/OutboundOrderInformation.vue +327 -0
- package/src/components/product/Ledger/MaterialManagement/OutboundOrder/OutboundOrderList.vue +304 -0
- package/src/components/product/Ledger/MaterialManagement/OutboundOrder/PrintMaterialBill.vue +139 -0
- package/src/components/product/Ledger/MaterialManagement/PurchaseRecords/PrintPurchaseOrder.vue +157 -0
- package/src/components/product/Ledger/MaterialManagement/PurchaseRecords/PurchaseRecords.vue +73 -0
- package/src/components/product/Ledger/MaterialManagement/PurchaseRecords/PurchaseRecordsInformation.vue +268 -0
- package/src/components/product/Ledger/MaterialManagement/PurchaseRecords/PurchaseRecordsList.vue +261 -0
- package/src/components/product/Ledger/MaterialManagement/WarehousingRecord/WarehousingRecord.vue +24 -0
- package/src/components/product/Ledger/MaterialManagement/WarehousingRecord/WarehousingRecordList.vue +275 -0
- package/src/components/product/Ledger/Process/ProcessBusiness.vue +155 -0
- package/src/components/product/Ledger/Process/ProcessSelect.vue +340 -0
- package/src/components/product/Ledger/Process/Processes/ExhibitionPicture.vue +27 -0
- package/src/components/product/Ledger/Process/Processes/ProgressReport.vue +236 -0
- package/src/components/product/Ledger/Process/Processes/ProjectMaterialList.vue +77 -0
- package/src/components/product/Ledger/Process/Processes/QinhuaMaterialList.vue +72 -0
- package/src/components/product/Ledger/Process/Service/ServiceControl.vue +639 -0
- package/src/components/product/Ledger/QinhuaMaterial/PickingRecord/PickingInformation.vue +316 -0
- package/src/components/product/Ledger/QinhuaMaterial/PickingRecord/PickingRecord.vue +67 -0
- package/src/components/product/Ledger/QinhuaMaterial/PickingRecord/PickingRecordList.vue +194 -0
- package/src/components/product/Ledger/QinhuaMaterial/SeasoningRecord/SeasoningInformation.vue +385 -0
- package/src/components/product/Ledger/QinhuaMaterial/SeasoningRecord/SeasoningRecord.vue +70 -0
- package/src/components/product/Ledger/QinhuaMaterial/SeasoningRecord/SeasoningRecordList.vue +208 -0
- package/src/components/product/Ledger/Stop/StopApply.vue +103 -0
- package/src/components/product/Ledger/Stop/StopApplyList.vue +241 -0
- package/src/components/product/Ledger/Supervisory/ProcessSupervisory.vue +163 -0
- package/src/components/product/Ledger/Supervisory/Service/RenWuDan.vue +78 -0
- package/src/components/product/Ledger/Supervisory/Service/SupervisoryServiceControl.vue +606 -0
- package/src/components/product/Ledger/Supervisory/SupervisoryCart.vue +102 -0
- package/src/components/product/Ledger/Supervisory/SupervisoryList.vue +387 -0
- package/src/components/product/ServiceView.vue +376 -374
- package/src/components/product/VueUtils/ApplyUpload.vue +1 -3
- package/src/expandcssAndroid.less +534 -0
- package/src/main.js +2 -0
- package/static/Functions.js +91 -0
- package/static/Jsons.js +784 -0
- package/static/ManageHomePic//346/244/255/345/234/2064.png +0 -0
- package/static/ManagementControl/echarts10.png +0 -0
- package/static/ManagementControl/echarts11.png +0 -0
- package/static/ManagementControl/echarts12.png +0 -0
- package/static/ManagementControl/echarts13.png +0 -0
- package/static/ManagementControl/echarts14.png +0 -0
- package/static/ManagementControl/echarts15.png +0 -0
- package/static/ManagementControl/echarts16.png +0 -0
- package/static/ManagementControl/echarts17.png +0 -0
- package/static/ManagementControl/echarts18.png +0 -0
- package/static/ManagementControl/echarts4.png +0 -0
- package/static/ManagementControl/echarts5.png +0 -0
- package/static/ManagementControl/echarts51.png +0 -0
- package/static/ManagementControl/echarts6.png +0 -0
- package/static/ManagementControl/echarts7.png +0 -0
- package/static/ManagementControl/echarts71.png +0 -0
- package/static/ManagementControl/echarts8.png +0 -0
- package/static/ManagementControl//345/233/276/345/261/20211/346/213/267/350/264/235.png +0 -0
- package/static/ManagementControl//347/237/251/345/275/2425/346/213/267/350/264/2353.png +0 -0
- package/static/ManagementControl//347/237/251/345/275/2425/346/213/267/350/264/2355.png +0 -0
- package/static/ManagementControl//347/237/251/345/275/2425/346/213/267/350/264/2356.png +0 -0
- package/static/class.js +97 -0
- package/static/images/lefticon//346/226/207/344/273/266/346/250/241/345/235/227.png +0 -0
- package/static/init.js +135 -0
- package/static/jcwx.jpg +0 -0
- package/static/lefticon//345/215/241/346/234/215/345/212/241/347/256/241/347/220/206.png +0 -0
- package/static/lefticon//345/221/274/345/217/253/347/263/273/347/273/237.png +0 -0
- package/static/lefticon//345/224/256/346/260/224/346/224/266/350/264/271.png +0 -0
- package/static/lefticon//345/233/276/345/261/2023/346/213/267/350/264/2354.png +0 -0
- package/static/lefticon//345/233/276/345/261/202577.png +0 -0
- package/static/lefticon//345/233/276/345/261/2028/346/213/267/350/264/23513.png +0 -0
- package/static/lefticon//345/256/211/346/243/200/346/237/245/347/234/213.png +0 -0
- package/static/lefticon//345/256/211/346/243/200/350/256/241/345/210/222.png +0 -0
- package/static/lefticon//345/276/256/344/277/241/346/234/215/345/212/241.png +0 -0
- package/static/lefticon//346/212/245/345/273/272/347/263/273/347/273/237.png +0 -0
- package/static/lefticon//346/212/245/350/241/250/346/237/245/350/257/242.png +0 -0
- package/static/lefticon//346/227/245/345/270/270/347/256/241/347/220/206.png +0 -0
- package/static/lefticon//346/234/272/350/241/250/347/256/241/347/220/206.png +0 -0
- package/static/lefticon//346/237/245/350/257/242/345/210/227/350/241/250.png +0 -0
- package/static/lefticon//346/241/243/346/241/210/347/256/241/347/220/206.png +0 -0
- package/static/lefticon//347/211/251/350/201/224/347/275/221/350/241/250.png +0 -0
- package/static/lefticon//347/237/251/345/275/2421183.png +0 -0
- package/static/lefticon//347/263/273/347/273/237/347/256/241/347/220/206.png +0 -0
- package/static/lefticon//347/263/273/347/273/237/350/256/276/347/275/256.png +0 -0
- package/static/lefticon//347/273/217/350/220/245/347/256/241/346/216/247.png +0 -0
- package/static/lefticon//347/273/274/345/220/210/344/270/232/345/212/241.png +0 -0
- package/static/lefticon//347/273/274/345/220/210/346/237/245/350/257/242.png +0 -0
- package/static/lefticon//350/217/234/345/215/225/344/274/270/347/274/251.png +0 -0
- package/static/lefticon//351/200/200/345/207/272/347/263/273/347/273/237.png +0 -0
- package/static/loginbg1.jpg +0 -0
- package/static/loginbg_jincheng.jpg +0 -0
- package/static/loginbgmain.jpg +0 -0
- package/static/mainicon/adddevice.png +0 -0
- package/static/mainicon/addmeter.png +0 -0
- package/static/mainicon/bank.png +0 -0
- package/static/mainicon/biaopan.png +0 -0
- package/static/mainicon/cad.jpg +0 -0
- package/static/mainicon/chaobiaoyuan.png +0 -0
- package/static/mainicon/danganguanli.png +0 -0
- package/static/mainicon/deletedevice.png +0 -0
- package/static/mainicon/excel.jpg +0 -0
- package/static/mainicon/huizong.png +0 -0
- package/static/mainicon/jibiaoguanli.png +0 -0
- package/static/mainicon/jibiaoguanli2.png +0 -0
- package/static/mainicon/jiezhang.png +0 -0
- package/static/mainicon/loginbg.jpg +0 -0
- package/static/mainicon/shouqishoufei.png +0 -0
- package/static/mainicon/treeopen.png +0 -0
- package/static/mainicon/treeout.png +0 -0
- package/static/mainicon/treeset.png +0 -0
- package/static/mainicon/word.jpg +0 -0
- package/static/mainicon/wulianwang.png +0 -0
- package/static/mainicon/yingyechaxun.png +0 -0
- package/static/mainicon/zongheyewu.png +0 -0
- package/static/newStyle/loginbg-liaoyuan.gif +0 -0
- package/static/newStyle/loginbg.gif +0 -0
- package/static/newStyle/loginbg1366.gif +0 -0
- package/static/newStyle/loginbg_1.gif +0 -0
- package/static/newStyle/searchin.png +0 -0
- package/static/newStyle/searchout.png +0 -0
- package/static/newStyle//350/261/252/344/275/263/347/207/203/346/260/224.png +0 -0
- package/static/newStyle.7z +0 -0
- package/static/newStyle.zip +0 -0
- package/static/refresh.png +0 -0
- package/static/static.zip +0 -0
- package/static/tools.js +246 -0
- package/static/treeclose.png +0 -0
- package/static/wasm_exec.js +591 -0
- package/src/components/app_apply/Process/Processes/AppInstallationDetails.vue +0 -456
- package/src/components/product/ApplyCharge/ApplyChargeReport.vue +0 -107
- package/src/components/product/Process/Processes/InstallationDetails.vue +0 -515
- package/src/components/product/Process/Processes/printCharge.vue +0 -133
- package/src/components/product/Test.vue +0 -36
- package/src/components/product/VueUtils/ToolsPage.vue +0 -51
- package/src/components/product/VueUtils/Tree.vue +0 -330
|
@@ -1,456 +0,0 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<div>
|
|
3
|
-
<list :model="model" partial='list'>
|
|
4
|
-
<div partial class="auto app-text panel">
|
|
5
|
-
<div class="panel-body panel-self">
|
|
6
|
-
<div class="row">
|
|
7
|
-
<p class="col-xs-3 text-left font"><b class="control-label-justify">客户编号</b></p>
|
|
8
|
-
<p class="col-xs-8 col-xs-offset-1 text-left input-font">{{ row.f_userinfo_code }}</p>
|
|
9
|
-
</div>
|
|
10
|
-
<div class="row">
|
|
11
|
-
<p class="col-xs-3 text-left font"><b class="control-label-justify">客户名称</b></p>
|
|
12
|
-
<p class="col-xs-8 col-xs-offset-1 text-left input-font">{{ row.f_user_name }}</p>
|
|
13
|
-
</div>
|
|
14
|
-
<div class="row">
|
|
15
|
-
<p class="col-xs-3 text-left font"><b class="control-label-justify">客户电话</b></p>
|
|
16
|
-
<p class="col-xs-8 col-xs-offset-1 text-left input-font">{{ row.f_user_phone }}</p>
|
|
17
|
-
</div>
|
|
18
|
-
<div class="row" v-if="$parent.$parent.selectdata.f_apply_type === '散户集体报建' || $parent.$parent.selectdata.f_apply_type === '煤改气报建'">
|
|
19
|
-
<p class="col-xs-3 text-left font"><b class="control-label-justify">单价</b></p>
|
|
20
|
-
<p class="col-xs-8 col-xs-offset-1 text-left input-font">{{ $parent.$parent.selectdata.f_price }}</p>
|
|
21
|
-
</div>
|
|
22
|
-
<div class="row" v-if="$parent.$parent.selectdata.f_apply_type === '散户集体报建' || $parent.$parent.selectdata.f_apply_type === '煤改气报建'">
|
|
23
|
-
<p class="col-xs-3 text-left font"><b class="control-label-justify">累计缴费</b></p>
|
|
24
|
-
<p class="col-xs-8 col-xs-offset-1 text-left input-font">{{ row.f_cumulative_payment_money }}</p>
|
|
25
|
-
</div>
|
|
26
|
-
<div class="row">
|
|
27
|
-
<p class="col-xs-3 text-left font"><b class="control-label-justify">地址信息</b></p>
|
|
28
|
-
<p class="col-xs-8 col-xs-offset-1 text-left input-font">{{ row.f_address }}</p>
|
|
29
|
-
</div>
|
|
30
|
-
<div class="row text-right">
|
|
31
|
-
<button class="btn btn-info"
|
|
32
|
-
:disabled="(row.f_cumulative_payment_money < $parent.$parent.selectdata.f_price && ($parent.$parent.selectdata.f_apply_type === '散户集体报建' || $parent.$parent.selectdata.f_apply_type === '煤改气报建')) || $parent.$parent.mark === 1"
|
|
33
|
-
@click.prevent="$parent.$parent.showUserFileModal(row)">
|
|
34
|
-
{{row.f_userfiles_num > 0 ? '修正' : '添加'}}
|
|
35
|
-
</button>
|
|
36
|
-
</div>
|
|
37
|
-
</div>
|
|
38
|
-
</div>
|
|
39
|
-
</list>
|
|
40
|
-
|
|
41
|
-
<modal v-if="showUserFile" :show.sync="showUserFile" v-ref:modal :large="true" :backdrop="false" title="安装明细">
|
|
42
|
-
<header slot="modal-header" class="modal-header">
|
|
43
|
-
<button type="button" class="close" @click="closeUserFile"><span>×</span></button>
|
|
44
|
-
<h4 class="modal-title">安装明细</h4>
|
|
45
|
-
</header>
|
|
46
|
-
<article slot="modal-body" class="modal-body clearfix">
|
|
47
|
-
<div class="form-group row vertical-center">
|
|
48
|
-
<label class="col-xs-4 control-label">地址信息:</label>
|
|
49
|
-
<div class="col-xs-8">
|
|
50
|
-
<input class="form-control input_view" style=""
|
|
51
|
-
v-model="useradders.f_address"
|
|
52
|
-
:value="useradders.f_address"
|
|
53
|
-
:readonly="true"/>
|
|
54
|
-
</div>
|
|
55
|
-
</div>
|
|
56
|
-
|
|
57
|
-
<div v-for="(i, item) in userinfo.userfiles" class="form-group col-xs-12 panel panel-info">
|
|
58
|
-
<div class="panel-heading head" style="background-color: #e8f4ff;margin-bottom: 10px">表具{{$index+1}}信息</div>
|
|
59
|
-
<div class="form-group row vertical-center" :class="item.f_gasbrand_id ? '':'has-error'">
|
|
60
|
-
<label class="col-xs-4 control-label">气表品牌:</label>
|
|
61
|
-
<div class="col-xs-8">
|
|
62
|
-
<input-select
|
|
63
|
-
class="select select_list"
|
|
64
|
-
:value.sync="item.gasbrand"
|
|
65
|
-
v-model="item.gasbrand"
|
|
66
|
-
:options="meterbrands"
|
|
67
|
-
@change="gasbrandChange(i)"
|
|
68
|
-
:valueSingle="true"></input-select>
|
|
69
|
-
</div>
|
|
70
|
-
</div>
|
|
71
|
-
<div class="form-group row vertical-center" :class="item.f_gasmodel_id ? '':'has-error'">
|
|
72
|
-
<label class="col-xs-4 control-label">气表型号:</label>
|
|
73
|
-
<div class="col-xs-8">
|
|
74
|
-
<input-select
|
|
75
|
-
class="select select_list"
|
|
76
|
-
:value.sync="item.gasmodel"
|
|
77
|
-
v-model="item.gasmodel"
|
|
78
|
-
:options="item.gasbrand.gasmodel"
|
|
79
|
-
@change="gasmodelChange(i)"
|
|
80
|
-
:valueSingle="true"></input-select>
|
|
81
|
-
</div>
|
|
82
|
-
</div>
|
|
83
|
-
<div class="form-group row vertical-center" :class="item.f_meternumber ? '':'has-error'">
|
|
84
|
-
<label class="col-xs-4 control-label">表  号:</label>
|
|
85
|
-
<div class="col-xs-8">
|
|
86
|
-
<input class="form-control input_view" style=""
|
|
87
|
-
placeholder="表号"
|
|
88
|
-
v-model="item.f_meternumber"
|
|
89
|
-
:value="item.f_meternumber"
|
|
90
|
-
@change="meternumberValidate(i)"
|
|
91
|
-
:readonly="false"/>
|
|
92
|
-
</div>
|
|
93
|
-
</div>
|
|
94
|
-
<div class="form-group row vertical-center">
|
|
95
|
-
<label class="col-xs-4 control-label ">表 封 号:</label>
|
|
96
|
-
<div class="col-xs-8">
|
|
97
|
-
<input class="form-control input_view" style=""
|
|
98
|
-
placeholder="表封号"
|
|
99
|
-
v-model="item.f_metertitles"
|
|
100
|
-
:value="item.f_metertitles"
|
|
101
|
-
:readonly="false"/>
|
|
102
|
-
</div>
|
|
103
|
-
</div>
|
|
104
|
-
<div class="form-group row vertical-center">
|
|
105
|
-
<label class="col-xs-4 control-label">表 读 数:</label>
|
|
106
|
-
<div class="col-xs-8">
|
|
107
|
-
<input class="form-control input_view" style=""
|
|
108
|
-
type="number"
|
|
109
|
-
placeholder="表读数"
|
|
110
|
-
v-model="item.f_meter_base"
|
|
111
|
-
:value="item.f_meter_base"
|
|
112
|
-
:readonly="false"/>
|
|
113
|
-
</div>
|
|
114
|
-
</div>
|
|
115
|
-
<div class="form-group row vertical-center">
|
|
116
|
-
<label class="col-xs-4 control-label">初始底数:</label>
|
|
117
|
-
<div class="col-xs-8">
|
|
118
|
-
<input class="form-control input_view" style=""
|
|
119
|
-
type="number"
|
|
120
|
-
v-model="item.f_initial_base"
|
|
121
|
-
:value="item.f_initial_base"
|
|
122
|
-
placeholder="初始底数"
|
|
123
|
-
:readonly="false"/>
|
|
124
|
-
</div>
|
|
125
|
-
</div>
|
|
126
|
-
<div class="form-group row vertical-center">
|
|
127
|
-
<label class="col-xs-4 control-label">表  向:</label>
|
|
128
|
-
<div class="col-xs-8">
|
|
129
|
-
<input-select
|
|
130
|
-
class="select select_list"
|
|
131
|
-
:value.sync="item.f_aroundmeter"
|
|
132
|
-
v-model="item.f_aroundmeter"
|
|
133
|
-
:options="aroundmeters"
|
|
134
|
-
:valueSingle="true"></input-select>
|
|
135
|
-
</div>
|
|
136
|
-
</div>
|
|
137
|
-
<div class="form-group row vertical-center">
|
|
138
|
-
<label class="col-xs-4 control-label">安装位置:</label>
|
|
139
|
-
<div class="col-xs-8">
|
|
140
|
-
<input-select
|
|
141
|
-
class="select select_list"
|
|
142
|
-
:value.sync="item.f_position"
|
|
143
|
-
v-model="item.f_position"
|
|
144
|
-
:options="positions"
|
|
145
|
-
:valueSingle="true"></input-select>
|
|
146
|
-
</div>
|
|
147
|
-
</div>
|
|
148
|
-
<div class="form-group row vertical-center">
|
|
149
|
-
<label class="col-xs-4 control-label">安 装 人:</label>
|
|
150
|
-
<div class="col-xs-8">
|
|
151
|
-
<input-select
|
|
152
|
-
class="select select_list"
|
|
153
|
-
:value.sync="item.f_install_person"
|
|
154
|
-
v-model="item.f_install_person"
|
|
155
|
-
:options="installperson"
|
|
156
|
-
:valueSingle="true"></input-select>
|
|
157
|
-
</div>
|
|
158
|
-
</div>
|
|
159
|
-
<div class="form-group row vertical-center">
|
|
160
|
-
<label class="col-xs-4 control-label">安装日期:</label>
|
|
161
|
-
<div class="col-xs-8">
|
|
162
|
-
<datepicker
|
|
163
|
-
placeholder="安装日期"
|
|
164
|
-
:value.sync="item.f_install_date"
|
|
165
|
-
v-model="item.f_install_date"
|
|
166
|
-
format="yyyy-MM-dd HH:mm:ss"
|
|
167
|
-
:show-reset-button="reset">
|
|
168
|
-
</datepicker>
|
|
169
|
-
</div>
|
|
170
|
-
</div>
|
|
171
|
-
</div>
|
|
172
|
-
|
|
173
|
-
</article>
|
|
174
|
-
<footer slot="modal-footer" class="modal-footer">
|
|
175
|
-
<!-- 去除一户多表 -->
|
|
176
|
-
<button type="button" class="btn btn-primary" @click="addUserFile" v-if="false">添加表具</button>
|
|
177
|
-
<button type="button" class="btn btn-primary" @click="saveUserFile">确认</button>
|
|
178
|
-
</footer>
|
|
179
|
-
</modal>
|
|
180
|
-
</div>
|
|
181
|
-
|
|
182
|
-
</template>
|
|
183
|
-
<script>
|
|
184
|
-
import Vue from 'vue'
|
|
185
|
-
import {PagedList} from 'vue-client'
|
|
186
|
-
import {HttpResetClass} from 'vue-client'
|
|
187
|
-
import {isEmpty} from '../../../Util'
|
|
188
|
-
|
|
189
|
-
export default {
|
|
190
|
-
title: '安装明细',
|
|
191
|
-
props: {
|
|
192
|
-
selectdata: {
|
|
193
|
-
type: Object
|
|
194
|
-
},
|
|
195
|
-
mark: {
|
|
196
|
-
type: Number,
|
|
197
|
-
default: 0
|
|
198
|
-
}
|
|
199
|
-
},
|
|
200
|
-
data () {
|
|
201
|
-
return {
|
|
202
|
-
showUserFile: false,
|
|
203
|
-
model: {
|
|
204
|
-
rows: null
|
|
205
|
-
},
|
|
206
|
-
meterbrands: [], // 气表品牌
|
|
207
|
-
useradders: null,
|
|
208
|
-
userinfo: {}
|
|
209
|
-
}
|
|
210
|
-
},
|
|
211
|
-
ready () {
|
|
212
|
-
this.search()
|
|
213
|
-
this.getMeterbrands()
|
|
214
|
-
},
|
|
215
|
-
methods: {
|
|
216
|
-
// 保存档案
|
|
217
|
-
async saveUserFile() {
|
|
218
|
-
if (this.userinfo.userfiles.length > 1) {
|
|
219
|
-
this.$showMessage('该地址下已有表具信息,暂不支持一户多表!!!')
|
|
220
|
-
return
|
|
221
|
-
}
|
|
222
|
-
// 检查必填项
|
|
223
|
-
for (let i = 0; i < this.userinfo.userfiles.length; i++) {
|
|
224
|
-
let userfile = this.userinfo.userfiles[i]
|
|
225
|
-
if (userfile.f_gasbrand_id === null || userfile.f_gasbrand_id === '') {
|
|
226
|
-
this.$showMessage(`表具${i+1}气表品牌没有选择!!!`)
|
|
227
|
-
return
|
|
228
|
-
}
|
|
229
|
-
if (userfile.f_gasmodel_id === null || userfile.f_gasmodel_id === '') {
|
|
230
|
-
this.$showMessage(`表具${i+1}气表型号没有选择!!!`)
|
|
231
|
-
return
|
|
232
|
-
}
|
|
233
|
-
if (userfile.f_meternumber === null || userfile.f_meternumber === '') {
|
|
234
|
-
this.$showMessage(`表具${i+1}表号没有填写!!!`)
|
|
235
|
-
return
|
|
236
|
-
}
|
|
237
|
-
}
|
|
238
|
-
let data = {
|
|
239
|
-
// user: {"parentname":"客服中心","functions":[{"pagenames":"公共通讯录维护模板","processnames":"发邮件流程","loginid":"11","parentname":"客服系统","icon":"/images/lefticon/档案管理.png","hasright":false,"resourcetype":"function","parentid":"21","f_parentname":"客服系统","children":[{"pagenames":"公共通讯录维护模板","processnames":"发邮件流程","loginid":"11","parentname":"档案管理","link":"city-manage","hasright":true,"resourcetype":"function","parentid":"82","f_parentname":"档案管理","children":[],"selfid":"1552","name":"街道管理","templatename":"functionedit","id":"1551","position":"3","fullname":"资源管理.功能模块.客服系统.档案管理.街道管理","fullid":"3.17.21.82.1551","tablename":"t_function","showmodel":"右边"},{"pagenames":"公共通讯录维护模板","processnames":"发邮件流程","loginid":"11","parentname":"档案管理","link":"area-manage","hasright":true,"resourcetype":"function","parentid":"82","f_parentname":"档案管理","children":[],"selfid":"149","name":"小区管理","templatename":"functionedit","id":"148","position":"4","fullname":"资源管理.功能模块.客服系统.档案管理.小区管理","fullid":"3.17.21.82.148","tablename":"t_function","showmodel":"右边"},{"pagenames":"公共通讯录维护模板","processnames":"发邮件流程","loginid":"11","parentname":"档案管理","link":"address-manage","hasright":true,"resourcetype":"function","parentid":"82","f_parentname":"档案管理","children":[],"selfid":"155","name":"地址管理","templatename":"functionedit","id":"154","position":"5","fullname":"资源管理.功能模块.客服系统.档案管理.地址管理","fullid":"3.17.21.82.154","tablename":"t_function","showmodel":"右边"},{"pagenames":"公共通讯录维护模板","processnames":"发邮件流程","loginid":"11","parentname":"档案管理","link":"file-user-files","hasright":true,"resourcetype":"function","parentid":"82","f_parentname":"档案管理","children":[],"selfid":"83661","name":"档案信息","templatename":"functionedit","id":"83660","position":"10","fullname":"资源管理.功能模块.客服系统.档案管理.档案信息","fullid":"3.17.21.82.83660","tablename":"t_function","showmodel":"[\"右边\"]"},{"pagenames":"公共通讯录维护模板","processnames":"发邮件流程","loginid":"11","parentname":"档案管理","link":"file-user-files-new","hasright":true,"resourcetype":"function","parentid":"82","f_parentname":"档案管理","children":[],"selfid":"397738","name":"预备户建档","templatename":"functionedit","id":"397737","position":"12","fullname":"资源管理.功能模块.客服系统.档案管理.预备户建档","fullid":"3.17.21.82.397737","tablename":"t_function"},{"pagenames":"公共通讯录维护模板","processnames":"发邮件流程","parentname":"档案管理","link":"user-files","hasright":true,"resourcetype":"function","parentid":"82","children":[],"selfid":"3","name":"用户档案","templatename":"functionedit","id":"2","position":"17","fullname":"资源管理.功能模块.客服系统.档案管理.用户档案","fullid":"3.17.21.82.2","tablename":"t_function"}],"selfid":"83","name":"档案管理","templatename":"functionedit","id":"82","position":"2","fullname":"资源管理.功能模块.客服系统.档案管理","fullid":"3.17.21.82","tablename":"t_function","showmodel":"右边"},{"pagenames":"公共通讯录维护模板","processnames":"发邮件流程","loginid":"11","parentname":"客服系统","icon":"/images/lefticon/售气收费.png","hasright":true,"resourcetype":"function","parentid":"21","f_parentname":"客服系统","children":[{"pagenames":"公共通讯录维护模板","processnames":"发邮件流程","loginid":"11","parentname":"售气收费","link":"charge-manage","hasright":true,"resourcetype":"function","parentid":"88","f_parentname":"售气收费","children":[],"selfid":"173","name":"收费(综合)","templatename":"functionedit","id":"172","position":"1","fullname":"资源管理.功能模块.客服系统.售气收费.收费(综合)","fullid":"3.17.21.88.172","tablename":"t_function","showmodel":"右边"},{"pagenames":"公共通讯录维护模板","processnames":"发邮件流程","loginid":"11","parentname":"售气收费","link":"charge-manage-new","hasright":true,"resourcetype":"function","parentid":"88","f_parentname":"售气收费","children":[],"selfid":"533134","name":"新版收费","templatename":"functionedit","id":"533133","position":"2","fullname":"资源管理.功能模块.客服系统.售气收费.新版收费","fullid":"3.17.21.88.533133","tablename":"t_function"},{"pagenames":"公共通讯录维护模板","processnames":"发邮件流程","loginid":"11","parentname":"售气收费","link":"insurance-manage","hasright":true,"resourcetype":"function","parentid":"88","f_parentname":"售气收费","children":[],"selfid":"586351","name":"保险收费","templatename":"functionedit","id":"586350","position":"3","fullname":"资源管理.功能模块.客服系统.售气收费.保险收费","fullid":"3.17.21.88.586350","tablename":"t_function"},{"pagenames":"公共通讯录维护模板","processnames":"发邮件流程","parentname":"售气收费","link":"meter-charge","hasright":true,"resourcetype":"function","parentid":"88","children":[],"selfid":"255341","name":"收费","templatename":"functionedit","id":"255340","position":"4","fullname":"资源管理.功能模块.客服系统.售气收费.收费","fullid":"3.17.21.88.255340","tablename":"t_function"}],"selfid":"89","name":"售气收费","templatename":"functionedit","id":"88","position":"3","fullname":"资源管理.功能模块.客服系统.售气收费","fullid":"3.17.21.88","tablename":"t_function","showmodel":"右边"},{"pagenames":"公共通讯录维护模板","processnames":"发邮件流程","loginid":"11","parentname":"客服系统","icon":"/images/lefticon/综合查询.png","hasright":false,"resourcetype":"function","parentid":"21","f_parentname":"客服系统","children":[{"pagenames":"公共通讯录维护模板","processnames":"发邮件流程","loginid":"11","parentname":"综合业务","link":"gas-brand-manage","hasright":true,"resourcetype":"function","parentid":"94","f_parentname":"综合业务","children":[],"selfid":"185","name":"气表管理","templatename":"functionedit","id":"184","position":"2","fullname":"资源管理.功能模块.客服系统.综合业务.气表管理","fullid":"3.17.21.94.184","tablename":"t_function","showmodel":"右边"},{"pagenames":"公共通讯录维护模板","processnames":"发邮件流程","loginid":"11","parentname":"综合业务","link":"param-manage","hasright":true,"resourcetype":"function","parentid":"94","f_parentname":"综合业务","children":[],"selfid":"191","name":"参数管理","templatename":"functionedit","id":"190","position":"3","fullname":"资源管理.功能模块.客服系统.综合业务.参数管理","fullid":"3.17.21.94.190","tablename":"t_function","showmodel":"右边"}],"selfid":"95","name":"综合业务","templatename":"functionedit","id":"94","position":"4","fullname":"资源管理.功能模块.客服系统.综合业务","fullid":"3.17.21.94","tablename":"t_function","showmodel":"右边"},{"pagenames":"公共通讯录维护模板","processnames":"发邮件流程","loginid":"11","parentname":"客服系统","icon":"/images/lefticon/报建系统.png","hasright":false,"resourcetype":"function","parentid":"21","f_parentname":"客服系统","children":[{"pagenames":"公共通讯录维护模板","processnames":"发邮件流程","loginid":"11","parentname":"报建业务","link":"install-function","hasright":true,"resourcetype":"function","parentid":"195729","f_parentname":"报建业务","children":[],"selfid":"319029","name":"报建业务","templatename":"functionedit","id":"319028","position":"2","fullname":"资源管理.功能模块.客服系统.报建业务.报建业务","fullid":"3.17.21.195729.319028","tablename":"t_function","showmodel":"右边"},{"pagenames":"公共通讯录维护模板","processnames":"发邮件流程","loginid":"11","parentname":"报建业务","link":"exploration-user","hasright":true,"resourcetype":"function","parentid":"195729","f_parentname":"报建业务","children":[],"selfid":"319035","name":"报建流程","templatename":"functionedit","id":"319034","position":"3","fullname":"资源管理.功能模块.客服系统.报建业务.报建流程","fullid":"3.17.21.195729.319034","tablename":"t_function","showmodel":"右边"},{"pagenames":"公共通讯录维护模板","processnames":"发邮件流程","loginid":"11","parentname":"报建业务","link":"supervisory-control","hasright":true,"resourcetype":"function","parentid":"195729","f_parentname":"报建业务","children":[],"selfid":"319041","name":"流程监控","templatename":"functionedit","id":"319040","position":"4","fullname":"资源管理.功能模块.客服系统.报建业务.流程监控","fullid":"3.17.21.195729.319040","tablename":"t_function","showmodel":"右边"},{"pagenames":"公共通讯录维护模板","processnames":"发邮件流程","loginid":"11","parentname":"报建业务","link":"apply-charge-search","hasright":true,"resourcetype":"function","parentid":"195729","f_parentname":"报建业务","children":[],"selfid":"319047","name":"收费明细","templatename":"functionedit","id":"319046","position":"5","fullname":"资源管理.功能模块.客服系统.报建业务.收费明细","fullid":"3.17.21.195729.319046","tablename":"t_function","showmodel":"右边"},{"pagenames":"公共通讯录维护模板","processnames":"发邮件流程","loginid":"11","parentname":"报建业务","link":"apply-charge-report","hasright":true,"resourcetype":"function","parentid":"195729","f_parentname":"报建业务","children":[],"selfid":"198758","name":"收费报表","templatename":"functionedit","id":"198757","position":"6","fullname":"资源管理.功能模块.客服系统.报建业务.收费报表","fullid":"3.17.21.195729.198757","tablename":"t_function"}],"selfid":"195730","name":"报建业务","templatename":"functionedit","id":"195729","position":"21","fullname":"资源管理.功能模块.客服系统.报建业务","fullid":"3.17.21.195729","tablename":"t_function","showmodel":"右边"}],"qrcode":"/rs/user/getQRcode?QRCODE=8888","rolesnames":"营业厅报装,市场部报装,工程部报装,财务部报装,客服中心报装","roles":"99232,174614,174620,174626,174632","f_sex":"男","f_icon":"tree_user","fullnames":"武安明星.客服中心.bjcs","dir":"mingxing","accesstime":"1626420492744","userid":"8888","parentid":"174608","fullids":"559465.174608.17713.","number":"55665","selfid":"17714","templatename":"useredit","logindate":"2021-03-09 11:17:36.727","id":"17713","state":"在职","tablename":"t_user","deptype":"部门","depids":"174608","loginid":"11","imgid":null,"initpassword":"1","rolestr":"营业厅报装,市场部报装,工程部报装,财务部报装,客服中心报装","deps":"客服中心","loginnum":"0","resourcetype":"user","orgid":"559465","f_department_name":"客服中心","ename":"bjcs","deleted":"false","entitytype":"t_user","loginip":"192.168.120.141","name":"bjcs","position":"1","orgs":"武安明星","f_role_name":"营业厅报装 市场部报装 工程部报装 财务部报装 客服中心报装 ","f_allArea":[],"f_gasman":[],"lics":[]},
|
|
240
|
-
user: Vue.user,
|
|
241
|
-
useradders: this.useradders,
|
|
242
|
-
userinfo: this.userinfo,
|
|
243
|
-
selectdata: this.selectdata
|
|
244
|
-
}
|
|
245
|
-
let res = await this.$resetpost(`${this.$androidUtil.getProxyUrl()}/rs/logic/addInstallationDetails`, {data:data}, {
|
|
246
|
-
resolveMsg: null,
|
|
247
|
-
rejectMsg: '表具添加失败!!!'
|
|
248
|
-
})
|
|
249
|
-
|
|
250
|
-
this.closeUserFile()
|
|
251
|
-
},
|
|
252
|
-
// 检查表号是否存在
|
|
253
|
-
async meternumberValidate(i) {
|
|
254
|
-
if (!this.userinfo.userfiles[i].f_gasbrand_id) {
|
|
255
|
-
this.userinfo.userfiles[i].f_meternumber = ''
|
|
256
|
-
this.$showMessage('请先选择气表品牌!!!')
|
|
257
|
-
return
|
|
258
|
-
}
|
|
259
|
-
if (this.userinfo.userfiles[i].f_gasbrand_id && this.userinfo.userfiles[i].f_meternumber) {
|
|
260
|
-
let data = {
|
|
261
|
-
f_meternumber: this.userinfo.userfiles[i].f_meternumber,
|
|
262
|
-
f_gasbrand_id: this.userinfo.userfiles[i].f_gasbrand_id
|
|
263
|
-
}
|
|
264
|
-
if (this.userinfo.userfiles[i].f_userfiles_id) {
|
|
265
|
-
data.f_userfiles_id = this.userinfo.userfiles[i].f_userfiles_id
|
|
266
|
-
}
|
|
267
|
-
let res = await this.$resetpost(`${this.$androidUtil.getProxyUrl()}/rs/logic/meterbrandsNumberValidate`, {data:data}, {
|
|
268
|
-
resolveMsg: null,
|
|
269
|
-
rejectMsg: '表号验证失败!!'
|
|
270
|
-
})
|
|
271
|
-
if (res.data) {
|
|
272
|
-
this.userinfo.userfiles[i].f_meternumber = ''
|
|
273
|
-
this.$showMessage('表号已存在!!')
|
|
274
|
-
}
|
|
275
|
-
}
|
|
276
|
-
},
|
|
277
|
-
// 选择气表型号
|
|
278
|
-
gasmodelChange(i) {
|
|
279
|
-
if (this.userinfo.userfiles[i].gasmodel) {
|
|
280
|
-
this.userinfo.userfiles[i].f_gasmodel_id = this.userinfo.userfiles[i].gasmodel.id
|
|
281
|
-
}
|
|
282
|
-
},
|
|
283
|
-
// 选择气表品牌
|
|
284
|
-
gasbrandChange(i) {
|
|
285
|
-
// 清空已保存的气表型号
|
|
286
|
-
this.userinfo.userfiles[i].f_gasmodel_id = null
|
|
287
|
-
this.userinfo.userfiles[i].gasmodel = null
|
|
288
|
-
if (this.userinfo.userfiles[i].gasbrand) {
|
|
289
|
-
// 气表品牌id
|
|
290
|
-
this.userinfo.userfiles[i].f_gasbrand_id = this.userinfo.userfiles[i].gasbrand.id
|
|
291
|
-
// 气表分类
|
|
292
|
-
this.userinfo.userfiles[i].f_meter_classify = this.userinfo.userfiles[i].gasbrand.f_meter_type
|
|
293
|
-
}
|
|
294
|
-
},
|
|
295
|
-
// 追加表具
|
|
296
|
-
addUserFile() {
|
|
297
|
-
this.userinfo.userfiles.push({})
|
|
298
|
-
},
|
|
299
|
-
// 打开安装明细
|
|
300
|
-
async showUserFileModal (row) {
|
|
301
|
-
this.useradders = row
|
|
302
|
-
|
|
303
|
-
let http = new HttpResetClass()
|
|
304
|
-
let data = {
|
|
305
|
-
condition: `f_userinfo_id='${row.f_userinfo_id}'`
|
|
306
|
-
}
|
|
307
|
-
let res = await http.load('POST', `${this.$androidUtil.getProxyUrl()}/rs/logic/getUserinfoAndUserfiles`, {data:data}, {
|
|
308
|
-
resolveMsg: null,
|
|
309
|
-
rejectMsg: null
|
|
310
|
-
})
|
|
311
|
-
|
|
312
|
-
this.userinfo = res.data
|
|
313
|
-
|
|
314
|
-
// 已有表具的 气表信息补充
|
|
315
|
-
for (const userfile of this.userinfo.userfiles) {
|
|
316
|
-
for (const item of this.meterbrands) {
|
|
317
|
-
if (item.value.id === userfile.f_gasbrand_id) {
|
|
318
|
-
userfile.gasbrand = item.value
|
|
319
|
-
}
|
|
320
|
-
}
|
|
321
|
-
if (userfile.gasbrand) {
|
|
322
|
-
for (const item of userfile.gasbrand.gasmodel) {
|
|
323
|
-
if (item.value.id === userfile.f_gasmodel_id) {
|
|
324
|
-
userfile.gasmodel = item.value
|
|
325
|
-
}
|
|
326
|
-
}
|
|
327
|
-
}
|
|
328
|
-
}
|
|
329
|
-
|
|
330
|
-
this.showUserFile = true
|
|
331
|
-
},
|
|
332
|
-
// 获取气表品牌
|
|
333
|
-
async getMeterbrands() {
|
|
334
|
-
let http = new HttpResetClass()
|
|
335
|
-
let data = {
|
|
336
|
-
f_filialeid: Vue.user.orgid
|
|
337
|
-
// f_filialeid: '559465'
|
|
338
|
-
}
|
|
339
|
-
let res = await http.load('POST', `${this.$androidUtil.getProxyUrl()}/rs/logic/getMeterbrands`, {data:data}, {
|
|
340
|
-
resolveMsg: null,
|
|
341
|
-
rejectMsg: null
|
|
342
|
-
})
|
|
343
|
-
this.meterbrands = res.data
|
|
344
|
-
},
|
|
345
|
-
// 查询
|
|
346
|
-
async search () {
|
|
347
|
-
let http = new HttpResetClass()
|
|
348
|
-
let data = {
|
|
349
|
-
condition: " 1=1",
|
|
350
|
-
f_process_id: this.selectdata.f_process_id
|
|
351
|
-
}
|
|
352
|
-
let res = await http.load('POST', `${this.$androidUtil.getProxyUrl()}/rs/sql/getAddresAndUserinfoAndUserfilesAmount`, {data:data}, {
|
|
353
|
-
resolveMsg: null,
|
|
354
|
-
rejectMsg: null
|
|
355
|
-
})
|
|
356
|
-
this.model.rows = res.data
|
|
357
|
-
if (this.selectdata.f_apply_type === '开发商集体报建' || this.selectdata.f_apply_type === '散户集体报建' || this.selectdata.f_apply_type === '煤改气报建') {
|
|
358
|
-
let f_installed_households = 0
|
|
359
|
-
for (const item of res.data) {
|
|
360
|
-
if (item.f_userfiles_num > 0) {
|
|
361
|
-
f_installed_households++
|
|
362
|
-
}
|
|
363
|
-
}
|
|
364
|
-
let f_uninstalled_households = this.selectdata.f_apply_count - f_installed_households
|
|
365
|
-
for (const item of this.selectdata.fields) {
|
|
366
|
-
if (item.label === '已安装户数') {
|
|
367
|
-
item.value = f_installed_households
|
|
368
|
-
}
|
|
369
|
-
if (item.label === '未安装户数') {
|
|
370
|
-
item.value = f_uninstalled_households
|
|
371
|
-
}
|
|
372
|
-
}
|
|
373
|
-
}
|
|
374
|
-
},
|
|
375
|
-
// 关闭安装明细
|
|
376
|
-
closeUserFile() {
|
|
377
|
-
this.showUserFile = false
|
|
378
|
-
this.useradders = null
|
|
379
|
-
this.userinfo = null
|
|
380
|
-
this.search()
|
|
381
|
-
}
|
|
382
|
-
},
|
|
383
|
-
events: {
|
|
384
|
-
},
|
|
385
|
-
computed: {
|
|
386
|
-
// 安装人
|
|
387
|
-
installperson() {
|
|
388
|
-
return this.$login.f.f_installman.map(item => {
|
|
389
|
-
return {
|
|
390
|
-
label: item.name,
|
|
391
|
-
value: item.name
|
|
392
|
-
}
|
|
393
|
-
})
|
|
394
|
-
},
|
|
395
|
-
// 表向
|
|
396
|
-
aroundmeters() {
|
|
397
|
-
return this.$appdata.getParam('左右表')
|
|
398
|
-
},
|
|
399
|
-
// 安装位置
|
|
400
|
-
positions() {
|
|
401
|
-
return this.$appdata.getParam('安装位置')
|
|
402
|
-
}
|
|
403
|
-
},
|
|
404
|
-
watch: {
|
|
405
|
-
}
|
|
406
|
-
}
|
|
407
|
-
</script>
|
|
408
|
-
<style scoped>
|
|
409
|
-
label {
|
|
410
|
-
margin: 0px;
|
|
411
|
-
}
|
|
412
|
-
.vertical-center {
|
|
413
|
-
display: flex;
|
|
414
|
-
align-items: center;
|
|
415
|
-
text-align: center;
|
|
416
|
-
}
|
|
417
|
-
|
|
418
|
-
.control-label-justify {
|
|
419
|
-
display: inline-block;
|
|
420
|
-
vertical-align: top;
|
|
421
|
-
width: 100%;
|
|
422
|
-
text-align: justify;
|
|
423
|
-
font-family: PingFang-SC-Bold;
|
|
424
|
-
}
|
|
425
|
-
|
|
426
|
-
.control-label-justify::after {
|
|
427
|
-
content: "";
|
|
428
|
-
display: inline-block;
|
|
429
|
-
width: 100%;
|
|
430
|
-
overflow: hidden;
|
|
431
|
-
height: 0;
|
|
432
|
-
}
|
|
433
|
-
.app-text {
|
|
434
|
-
font-size: 12px;
|
|
435
|
-
}
|
|
436
|
-
.panel-self{
|
|
437
|
-
border-radius: 10px;
|
|
438
|
-
border:1px solid #499EDF;
|
|
439
|
-
background-color: #F8F8F8;
|
|
440
|
-
}
|
|
441
|
-
.font{
|
|
442
|
-
font: 15px PingFang-SC-Medium;
|
|
443
|
-
color: #666666;
|
|
444
|
-
}
|
|
445
|
-
.input-font{
|
|
446
|
-
font: 15px PingFang-SC-Medium;
|
|
447
|
-
color: #333333;
|
|
448
|
-
}
|
|
449
|
-
/*清除model中的浮动*/
|
|
450
|
-
.clearfix:after,.clearfix:before{
|
|
451
|
-
display: table;
|
|
452
|
-
}
|
|
453
|
-
.clearfix:after{
|
|
454
|
-
clear: both;
|
|
455
|
-
}
|
|
456
|
-
</style>
|
|
@@ -1,107 +0,0 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<div class="flex-row">
|
|
3
|
-
<div class="basic-main">
|
|
4
|
-
<criteria-paged :model="model" :pager="false" v-ref:cp>
|
|
5
|
-
<criteria partial='criteria' @condition-changed='search' v-ref:cri>
|
|
6
|
-
<div class="form-horizontal select-overspread container-fluid auto" partial>
|
|
7
|
-
<div class="row">
|
|
8
|
-
<div class="form-group col-sm-3">
|
|
9
|
-
<label for="startDate" class="font_normal_body">开始时间:</label>
|
|
10
|
-
<datepicker id="startDate" placeholder="开始日期"
|
|
11
|
-
style="width: 60%!important;"
|
|
12
|
-
v-model="model.startDate"
|
|
13
|
-
:value.sync="model.startDate"
|
|
14
|
-
:format="'yyyy-MM-dd 00:00:00'"
|
|
15
|
-
:show-reset-button="true"
|
|
16
|
-
condition="f_charge_date >= '{}'">
|
|
17
|
-
</datepicker>
|
|
18
|
-
</div>
|
|
19
|
-
<div class="form-group col-sm-3">
|
|
20
|
-
<label for="endDate" class="font_normal_body">结束时间:</label>
|
|
21
|
-
<datepicker id="endDate" placeholder="结束日期"
|
|
22
|
-
style="width: 60%!important;"
|
|
23
|
-
v-model="model.endDate"
|
|
24
|
-
:value.sync="model.endDate"
|
|
25
|
-
:format="'yyyy-MM-dd 23:59:59'"
|
|
26
|
-
:show-reset-button="true"
|
|
27
|
-
condition="f_charge_date <= '{}'">
|
|
28
|
-
</datepicker>
|
|
29
|
-
</div>
|
|
30
|
-
<div class="form-group col-sm-3 button-range">
|
|
31
|
-
<button class="button_search button_spacing" @click="$parent.$parent.search()" v-el:cx>查询</button>
|
|
32
|
-
<button class="button_clear button_spacing" @click="$parent.$parent.clear()">清空</button>
|
|
33
|
-
</div>
|
|
34
|
-
</div>
|
|
35
|
-
</div>
|
|
36
|
-
</criteria>
|
|
37
|
-
<data-grid :model="model" partial='list' v-ref:grid style="overflow: auto" class="list_area table_sy">
|
|
38
|
-
<template partial='head'>
|
|
39
|
-
<tr>
|
|
40
|
-
<th>部门</th>
|
|
41
|
-
<th>户数</th>
|
|
42
|
-
<th>金额</th>
|
|
43
|
-
</tr>
|
|
44
|
-
</template>
|
|
45
|
-
<template partial='body'>
|
|
46
|
-
<tr >
|
|
47
|
-
<td style="text-align: center;">
|
|
48
|
-
<nobr><font>{{row.depname}}</font></nobr>
|
|
49
|
-
</td>
|
|
50
|
-
<td style="text-align: center;">
|
|
51
|
-
<nobr><font>{{row.address_count}}</font></nobr>
|
|
52
|
-
</td>
|
|
53
|
-
<td style="text-align: center;">
|
|
54
|
-
<nobr><font>{{row.sum_money}}</font></nobr>
|
|
55
|
-
</td>
|
|
56
|
-
</tr>
|
|
57
|
-
</template>
|
|
58
|
-
<template partial='foot'>
|
|
59
|
-
<tr>
|
|
60
|
-
<td style="text-align: center;">合计</td>
|
|
61
|
-
<td style="text-align: center;">{{model.sums.address_count}}</td>
|
|
62
|
-
<td style="text-align: center;">{{model.sums.sum_money}}</td>
|
|
63
|
-
</tr>
|
|
64
|
-
</template>
|
|
65
|
-
</data-grid>
|
|
66
|
-
</criteria-paged>
|
|
67
|
-
</div>
|
|
68
|
-
</div>
|
|
69
|
-
</template>
|
|
70
|
-
|
|
71
|
-
<script>
|
|
72
|
-
import {PagedList} from 'vue-client'
|
|
73
|
-
|
|
74
|
-
export default {
|
|
75
|
-
title: '报建收费报表',
|
|
76
|
-
data () {
|
|
77
|
-
return {
|
|
78
|
-
model: new PagedList('rs/sql/countApplyCharge', 30, {
|
|
79
|
-
data: {
|
|
80
|
-
orgid: this.$login.f.orgid
|
|
81
|
-
}
|
|
82
|
-
}, {
|
|
83
|
-
address_count: 0,
|
|
84
|
-
sum_money: 0
|
|
85
|
-
})
|
|
86
|
-
}
|
|
87
|
-
},
|
|
88
|
-
ready () {
|
|
89
|
-
// 调用查询
|
|
90
|
-
this.search()
|
|
91
|
-
},
|
|
92
|
-
methods: {
|
|
93
|
-
clear () {
|
|
94
|
-
Object.keys(this.$refs.cp.$refs.cri.model).forEach((key) => {
|
|
95
|
-
this.$refs.cp.$refs.cri.model[key] = []
|
|
96
|
-
})
|
|
97
|
-
},
|
|
98
|
-
// 查询
|
|
99
|
-
search () {
|
|
100
|
-
this.$refs.cp.$refs.cri.search()
|
|
101
|
-
}
|
|
102
|
-
}
|
|
103
|
-
}
|
|
104
|
-
</script>
|
|
105
|
-
|
|
106
|
-
<style scoped>
|
|
107
|
-
</style>
|