apply-clients 3.2.36 → 3.2.49
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
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div style="overflow: auto;background-color: #FFFFFF;margin-top: 20px">
|
|
3
|
+
<div class="row" v-for="(i,row) in defnames">
|
|
4
|
+
<div :class="row.id === selectdata.actid ? 'item selectIndex' : 'item'" @click="getdefname(row)" >
|
|
5
|
+
{{row.defname}}
|
|
6
|
+
<br>
|
|
7
|
+
{{ row.finishtime ? row.finishtime : row.sendtime }}
|
|
8
|
+
</div>
|
|
9
|
+
<div class="arrow glyphicon glyphicon-menu-down" v-if="i != defnames.length-1" aria-hidden="true"></div>
|
|
10
|
+
</div>
|
|
11
|
+
</div>
|
|
12
|
+
</template>
|
|
13
|
+
|
|
14
|
+
<script>
|
|
15
|
+
import {HttpResetClass} from 'vue-client'
|
|
16
|
+
export default {
|
|
17
|
+
title: "流程节点",
|
|
18
|
+
props:['selectdata'],
|
|
19
|
+
data(){
|
|
20
|
+
return{
|
|
21
|
+
defnames: [] // 所有节点
|
|
22
|
+
}
|
|
23
|
+
},
|
|
24
|
+
created () {
|
|
25
|
+
this.initial()
|
|
26
|
+
},
|
|
27
|
+
methods :{
|
|
28
|
+
async initial() {
|
|
29
|
+
// 获取流程节点信息
|
|
30
|
+
let http = new HttpResetClass()
|
|
31
|
+
let temp = []
|
|
32
|
+
if(this.selectdata && this.selectdata.f_process_id){
|
|
33
|
+
let res = await http.load('POST','rs/sql/getAllNode',{data:{processid: this.selectdata.f_process_id}},{resolveMsg:null, rejectMsg:null})
|
|
34
|
+
this.defnames = res.data
|
|
35
|
+
}
|
|
36
|
+
},
|
|
37
|
+
//点击获取节点名
|
|
38
|
+
getdefname(row){
|
|
39
|
+
delete row.id
|
|
40
|
+
// 发起节点都可查看
|
|
41
|
+
if(row.defname === this.$workflow_vue.start_activity){
|
|
42
|
+
row = Object.assign({}, this.selectdata, row)
|
|
43
|
+
this.$dispatch('apply', row)
|
|
44
|
+
return
|
|
45
|
+
}
|
|
46
|
+
if(this.check(row.actorexpression)){
|
|
47
|
+
row = Object.assign({}, this.selectdata, row)
|
|
48
|
+
this.$dispatch('apply', row)
|
|
49
|
+
return
|
|
50
|
+
}
|
|
51
|
+
this.$showMessage("对不起,您没有查看此节点的权限!")
|
|
52
|
+
},
|
|
53
|
+
// 检测是否有权限
|
|
54
|
+
check(actorexpression){
|
|
55
|
+
let flag = false
|
|
56
|
+
|
|
57
|
+
// 获取标识
|
|
58
|
+
let mark = actorexpression.charAt(0)
|
|
59
|
+
|
|
60
|
+
let str = actorexpression.substring(2, actorexpression.length-1)
|
|
61
|
+
|
|
62
|
+
if (mark === 'D' && this.$login.f.f_department_name.includes(str)) {
|
|
63
|
+
flag = true
|
|
64
|
+
}
|
|
65
|
+
if (mark === 'R' && this.$login.f.f_role_name.includes(str)) {
|
|
66
|
+
flag = true
|
|
67
|
+
}
|
|
68
|
+
if (mark === 'P' && this.$login.f.id.includes(str)) {
|
|
69
|
+
flag = true
|
|
70
|
+
}
|
|
71
|
+
if (this.$login.f.f_role_name.includes('流程监控')) {
|
|
72
|
+
flag = true
|
|
73
|
+
}
|
|
74
|
+
return flag
|
|
75
|
+
}
|
|
76
|
+
},
|
|
77
|
+
watch:{
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
</script>
|
|
81
|
+
|
|
82
|
+
<style scoped>
|
|
83
|
+
.row{
|
|
84
|
+
text-align: center;
|
|
85
|
+
height: auto;
|
|
86
|
+
margin-right: 20px;
|
|
87
|
+
}
|
|
88
|
+
.item{
|
|
89
|
+
border-radius: 2em;
|
|
90
|
+
border: 1px solid silver;
|
|
91
|
+
line-height: 25px;
|
|
92
|
+
}
|
|
93
|
+
.arrow{
|
|
94
|
+
width: 100%;
|
|
95
|
+
color: #5ac0d9;
|
|
96
|
+
font-weight: bold;
|
|
97
|
+
}
|
|
98
|
+
.selectIndex{
|
|
99
|
+
background-color: #5ac0d9;
|
|
100
|
+
color: #ffffff;
|
|
101
|
+
}
|
|
102
|
+
</style>
|
|
@@ -0,0 +1,387 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div class="col-sm-12">
|
|
3
|
+
<criteria-paged :model="model" v-ref:cp>
|
|
4
|
+
<criteria partial='criteria' @condition-changed='search' v-ref:cri>
|
|
5
|
+
<div novalidate class="form-horizontal select-overspread container-fluid auto" partial>
|
|
6
|
+
<div class="row">
|
|
7
|
+
<div class="form-group col-sm-3">
|
|
8
|
+
<label class="font_normal_body">项目名称:</label>
|
|
9
|
+
<input type="text" class="input_search" style="width: 60%" v-model="model.f_entry_name"
|
|
10
|
+
v-on:keyup.enter="$parent.$parent.search()" condition="u.f_entry_name like '%{}%'" placeholder='项目名称'>
|
|
11
|
+
</div>
|
|
12
|
+
<div class="form-group col-sm-3">
|
|
13
|
+
<label class="font_normal_body">工程编号:</label>
|
|
14
|
+
<input type="text" class="input_search" style="width: 60%" placeholder='工程编号' v-model="model.f_project_number"
|
|
15
|
+
v-on:keyup.enter="$parent.$parent.search()"
|
|
16
|
+
condition="u.f_project_number like '%{}%'">
|
|
17
|
+
</div>
|
|
18
|
+
<div class="form-group col-sm-3">
|
|
19
|
+
<label class="font_normal_body">CEA 号:</label>
|
|
20
|
+
<input type="text" class="input_search" style="width: 60%" placeholder='CEA号' v-model="model.f_cea_number"
|
|
21
|
+
v-on:keyup.enter="$parent.$parent.search()"
|
|
22
|
+
condition="u.f_cea_number like '%{}%'">
|
|
23
|
+
</div>
|
|
24
|
+
<div class="form-group col-sm-3 button-range">
|
|
25
|
+
<export-excel :data="$parent.$parent.getCondition"
|
|
26
|
+
:field="$parent.$parent.getfield"
|
|
27
|
+
sqlurl="rs/logic/exportfile"
|
|
28
|
+
sql-name="supervisory"
|
|
29
|
+
template-name='流程监控导出'
|
|
30
|
+
:choose-col="true"></export-excel>
|
|
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
|
+
:class="{'button_shrink_top':$parent.$parent.criteriaShow,'button_shrink_bottom':!$parent.$parent.criteriaShow}"
|
|
35
|
+
@click="$parent.$parent.criteriaShow = !$parent.$parent.criteriaShow"
|
|
36
|
+
class="button_spacing"
|
|
37
|
+
style="float: right">
|
|
38
|
+
</div>
|
|
39
|
+
</div>
|
|
40
|
+
</div>
|
|
41
|
+
<div class="row" v-show="$parent.$parent.criteriaShow">
|
|
42
|
+
<div class="form-group col-sm-3">
|
|
43
|
+
<label class="font_normal_body">项目类型:</label>
|
|
44
|
+
<v-select
|
|
45
|
+
v-model="model.f_apply_type"
|
|
46
|
+
placeholder='项目类型'
|
|
47
|
+
condition="u.f_apply_type like '%{}%'"
|
|
48
|
+
:value.sync="model.f_apply_type"
|
|
49
|
+
:options='$parent.$parent.applytype'
|
|
50
|
+
class="select select_list"
|
|
51
|
+
:value-single="true"
|
|
52
|
+
@change="$parent.$parent.applyTypeChange()"
|
|
53
|
+
close-on-select ></v-select>
|
|
54
|
+
</div>
|
|
55
|
+
<div class="form-group col-sm-3">
|
|
56
|
+
<label class="font_normal_body">工程类型:</label>
|
|
57
|
+
<v-select
|
|
58
|
+
v-model="model.f_project_type"
|
|
59
|
+
placeholder='工程类型'
|
|
60
|
+
condition="u.f_project_type in {} "
|
|
61
|
+
:value.sync="model.f_project_type"
|
|
62
|
+
:options='$parent.$parent.projectTypes'
|
|
63
|
+
></v-select>
|
|
64
|
+
</div>
|
|
65
|
+
<div class="form-group col-sm-3">
|
|
66
|
+
<label class="font_normal_body">办理环节:</label>
|
|
67
|
+
<v-select
|
|
68
|
+
v-model="model.defname"
|
|
69
|
+
placeholder='办理环节'
|
|
70
|
+
condition="act.defname = '{}'"
|
|
71
|
+
:value.sync="model.defname"
|
|
72
|
+
:options='$parent.$parent.defnames'
|
|
73
|
+
class="select select_list"
|
|
74
|
+
:value-single="true"
|
|
75
|
+
close-on-select ></v-select>
|
|
76
|
+
</div>
|
|
77
|
+
<div class="form-group col-sm-3">
|
|
78
|
+
<label class="font_normal_body">项目区域:</label>
|
|
79
|
+
<v-select
|
|
80
|
+
v-model="model.f_project_area"
|
|
81
|
+
placeholder='项目区域'
|
|
82
|
+
condition="u.f_project_area = '{}'"
|
|
83
|
+
:value.sync="model.f_project_area"
|
|
84
|
+
:options='$parent.$parent.projectAreas'
|
|
85
|
+
class="select select_list"
|
|
86
|
+
:value-single="true"
|
|
87
|
+
close-on-select ></v-select>
|
|
88
|
+
</div>
|
|
89
|
+
<div class="form-group col-sm-3">
|
|
90
|
+
<label class="font_normal_body">项目地址:</label>
|
|
91
|
+
<input type="text" class="input_search" placeholder='项目地址' v-model="model.f_address"
|
|
92
|
+
v-on:keyup.enter="$parent.$parent.search()"
|
|
93
|
+
style="width: 60%"
|
|
94
|
+
condition="u.f_address like '%{}%'">
|
|
95
|
+
</div>
|
|
96
|
+
<div class="form-group col-sm-3">
|
|
97
|
+
<label for="startDate" class="font_normal_body">开始时间:</label>
|
|
98
|
+
<datepicker id="startDate" placeholder="开始日期"
|
|
99
|
+
style="width: 60%!important;"
|
|
100
|
+
v-model="model.startDate"
|
|
101
|
+
:value.sync="model.startDate"
|
|
102
|
+
:format="'yyyy-MM-dd HH:mm:ss'"
|
|
103
|
+
:show-reset-button="true"
|
|
104
|
+
condition="sendtime >= '{}'">
|
|
105
|
+
</datepicker>
|
|
106
|
+
</div>
|
|
107
|
+
<div class="form-group col-sm-3">
|
|
108
|
+
<label for="endDate" class="font_normal_body">结束时间:</label>
|
|
109
|
+
<datepicker id="endDate" placeholder="结束日期"
|
|
110
|
+
style="width: 60%!important;"
|
|
111
|
+
v-model="model.endDate"
|
|
112
|
+
:value.sync="model.endDate"
|
|
113
|
+
:format="'yyyy-MM-dd HH:mm:ss'"
|
|
114
|
+
:show-reset-button="true"
|
|
115
|
+
condition="sendtime <= '{}'">
|
|
116
|
+
</datepicker>
|
|
117
|
+
</div>
|
|
118
|
+
|
|
119
|
+
<div class="form-group col-sm-3">
|
|
120
|
+
<label for="startDate1" class="font_normal_body">签订开始时间:</label>
|
|
121
|
+
<datepicker id="startDate1" placeholder="签订开始时间"
|
|
122
|
+
style="width: 60%!important;"
|
|
123
|
+
v-model="model.startDate1"
|
|
124
|
+
:value.sync="model.startDate1"
|
|
125
|
+
:format="'yyyy-MM-dd '"
|
|
126
|
+
:show-reset-button="true"
|
|
127
|
+
condition="f_contract_Signed_time >= '{}'">
|
|
128
|
+
</datepicker>
|
|
129
|
+
</div>
|
|
130
|
+
<div class="form-group col-sm-3">
|
|
131
|
+
<label for="endDate1" class="font_normal_body">签订结束时间</label>
|
|
132
|
+
<datepicker id="endDate1" placeholder="签订结束时间"
|
|
133
|
+
style="width: 60%!important;"
|
|
134
|
+
v-model="model.endDate1"
|
|
135
|
+
:value.sync="model.endDate1"
|
|
136
|
+
:format="'yyyy-MM-dd '"
|
|
137
|
+
:show-reset-button="true"
|
|
138
|
+
condition="f_contract_Signed_time <= '{}'">
|
|
139
|
+
</datepicker>
|
|
140
|
+
</div>
|
|
141
|
+
</div>
|
|
142
|
+
</div>
|
|
143
|
+
</criteria>
|
|
144
|
+
<data-grid v-if="$parent.showData" :model="model" partial='list' v-ref:grid class="list_area table_sy">
|
|
145
|
+
<template partial='head'>
|
|
146
|
+
<tr>
|
|
147
|
+
<th style="white-space: nowrap;">序号</th>
|
|
148
|
+
<th style="white-space: nowrap;">项目名称</th>
|
|
149
|
+
<th style="white-space: nowrap;">工程编号</th>
|
|
150
|
+
<th style="white-space: nowrap;">项目类型</th>
|
|
151
|
+
<th style="white-space: nowrap;">工程类型</th>
|
|
152
|
+
<th style="white-space: nowrap;">项目区域</th>
|
|
153
|
+
<th style="white-space: nowrap;">联系人</th>
|
|
154
|
+
<th style="white-space: nowrap;">联系电话</th>
|
|
155
|
+
<th style="white-space: nowrap;">CEA号</th>
|
|
156
|
+
<th style="white-space: nowrap;">办理环节</th>
|
|
157
|
+
<th style="white-space: nowrap;">项目地址</th>
|
|
158
|
+
<th style="white-space: nowrap;">操作时间</th>
|
|
159
|
+
</tr>
|
|
160
|
+
</template>
|
|
161
|
+
<template partial='body'>
|
|
162
|
+
<tr>
|
|
163
|
+
<td @click="$parent.$parent.$parent.check(row)" style="text-align: center;">
|
|
164
|
+
<nobr>{{$index+1}}</nobr>
|
|
165
|
+
</td>
|
|
166
|
+
<td @click="$parent.$parent.$parent.check(row)" style="text-align: center;">
|
|
167
|
+
<nobr>{{row.f_entry_name}}</nobr>
|
|
168
|
+
</td>
|
|
169
|
+
<td @click="$parent.$parent.$parent.check(row)" style="text-align: center;">
|
|
170
|
+
<nobr>{{row.f_project_number}}</nobr>
|
|
171
|
+
</td>
|
|
172
|
+
<td @click="$parent.$parent.$parent.check(row)" style="text-align: center;">
|
|
173
|
+
<nobr>{{row.f_apply_type}}</nobr>
|
|
174
|
+
</td>
|
|
175
|
+
<td @click="$parent.$parent.$parent.check(row)" style="text-align: center;">
|
|
176
|
+
<nobr>{{row.f_project_type}}</nobr>
|
|
177
|
+
</td>
|
|
178
|
+
<td @click="$parent.$parent.$parent.check(row)" style="text-align: center;">
|
|
179
|
+
<nobr>{{row.f_project_area}}</nobr>
|
|
180
|
+
</td>
|
|
181
|
+
<td @click="$parent.$parent.$parent.check(row)" style="text-align: center;">
|
|
182
|
+
<nobr>{{row.f_contact}}</nobr>
|
|
183
|
+
</td>
|
|
184
|
+
<td @click="$parent.$parent.$parent.check(row)" style="text-align: center;">
|
|
185
|
+
<nobr>{{row.f_phone}}</nobr>
|
|
186
|
+
</td>
|
|
187
|
+
<td @click="$parent.$parent.$parent.check(row)" style="text-align: center;">
|
|
188
|
+
<nobr>{{row.f_cea_number}}</nobr>
|
|
189
|
+
</td>
|
|
190
|
+
<td @click="$parent.$parent.$parent.check(row)" style="text-align: center;">
|
|
191
|
+
<nobr>{{row.defname}}</nobr>
|
|
192
|
+
</td>
|
|
193
|
+
<td @click="$parent.$parent.$parent.check(row)" style="text-align: center;">
|
|
194
|
+
<nobr>{{row.f_address}}</nobr>
|
|
195
|
+
</td>
|
|
196
|
+
<td @click="$parent.$parent.$parent.check(row)" style="text-align: center;">
|
|
197
|
+
<nobr>{{row.sendtime}}</nobr>
|
|
198
|
+
</td>
|
|
199
|
+
</tr>
|
|
200
|
+
</template>
|
|
201
|
+
</data-grid>
|
|
202
|
+
</criteria-paged>
|
|
203
|
+
</div>
|
|
204
|
+
</template>
|
|
205
|
+
<script>
|
|
206
|
+
import {PagedList} from 'vue-client'
|
|
207
|
+
import {HttpResetClass} from 'vue-client'
|
|
208
|
+
import {isEmpty} from '../../../Util'
|
|
209
|
+
export default {
|
|
210
|
+
title: '勘探详情',
|
|
211
|
+
props: ['showData'],
|
|
212
|
+
data () {
|
|
213
|
+
return {
|
|
214
|
+
applytype: [{label: '全部', value: ''}, ...this.$appdata.getParam('项目类型')],
|
|
215
|
+
projectTypes: [{label: '全部', value: ''}, ...this.$appdata.getParam('工程类型')],
|
|
216
|
+
projectAreas: [{label: '全部', value: ''}, ...this.$appdata.getParam('项目区域')], // 所有报建类型
|
|
217
|
+
model: new PagedList('rs/sql/supervisory', 20, {
|
|
218
|
+
data: {
|
|
219
|
+
orgid: this.$login.f.orgid
|
|
220
|
+
}
|
|
221
|
+
}),
|
|
222
|
+
defnames: [{label: '全部', value: ''}, ...this.$appdata.getParam('办理环节')], // 流程节点
|
|
223
|
+
criteriaShow: false,
|
|
224
|
+
getfield: {
|
|
225
|
+
'f_entry_name': '项目名称',
|
|
226
|
+
'f_project_number': '工程编号',
|
|
227
|
+
'f_apply_type': '项目类型',
|
|
228
|
+
'f_project_type': '工程类型',
|
|
229
|
+
'f_project_area': '项目区域',
|
|
230
|
+
'f_from_boss_drawing_time': '收图时间',
|
|
231
|
+
'f_project_department': '项目部',
|
|
232
|
+
'f_cea_number': 'CEA号',
|
|
233
|
+
'f_air_source': '气源',
|
|
234
|
+
'f_address': '地址',
|
|
235
|
+
'f_entry_information_remarks': '备注',
|
|
236
|
+
'f_contract_number': '合同编号',
|
|
237
|
+
'f_contract_money': '合同总造价',
|
|
238
|
+
'f_installation_fee_budget_number': '安装费总和',
|
|
239
|
+
'f_outdoor_cost_budget': '室外造价',
|
|
240
|
+
'f_outdoor_installation_fee_budget': '室外安装费',
|
|
241
|
+
'f_outdoor_supply_budget': '室外甲供材',
|
|
242
|
+
'f_outdoor_equipment_cost_budget': '室外设备费',
|
|
243
|
+
'ys_shiwai_shuijin': '室外税金',
|
|
244
|
+
'f_indoor_cost_budget': '室内造价',
|
|
245
|
+
'f_indoor_installation_fee_budget': '室内安装费',
|
|
246
|
+
'f_indoor_supply_budget': '室内甲供材',
|
|
247
|
+
'f_indoor_equipment_cost_budget': '室内设备费',
|
|
248
|
+
'ys_shinei_shuijin': '室内税金',
|
|
249
|
+
'f_contract_report_time': '合同上报时间',
|
|
250
|
+
'f_project_amount': '工程量',
|
|
251
|
+
'f_contract_remarks': '合同备注',
|
|
252
|
+
'f_from_produce_drawing_time': '领图时间',
|
|
253
|
+
'f_confess_time': '交底时间',
|
|
254
|
+
'f_manager': '管理员',
|
|
255
|
+
'f_construction_team': '施工队',
|
|
256
|
+
'f_supervision': '监理',
|
|
257
|
+
'f_design_company': '设计',
|
|
258
|
+
'f_branch_line_send_pictures_date': '发图时间',
|
|
259
|
+
'f_date_of_treading': '踏线日期',
|
|
260
|
+
'f_receive_excavate_date': '领开挖证时间',
|
|
261
|
+
'f_excavate_date': '开挖开始时间',
|
|
262
|
+
'f_excavate_end_date': '开挖结束时间',
|
|
263
|
+
'f_hair_excavate_date': '发开挖证时间',
|
|
264
|
+
'f_affairs_department_project_manager': '区域分公司项目经理',
|
|
265
|
+
'f_site_person': '甲方现场负责人',
|
|
266
|
+
'f_site_person_tel': '甲方现场负责人电话',
|
|
267
|
+
'f_inspection_informs_time': '监检告知递送时间',
|
|
268
|
+
'f_inspection_hospital_return_date': '特检院返单日期',
|
|
269
|
+
'f_inform_delivery_date': '告知递送日期',
|
|
270
|
+
'f_prophase_remarks': '工程前期备注',
|
|
271
|
+
'f_project_start_time': '开工日期',
|
|
272
|
+
'f_means_completion_completion_data': '竣工资料移交日期',
|
|
273
|
+
'f_completion_time': '竣工日期',
|
|
274
|
+
'f_meet_submit_date': '碰口图递交时间',
|
|
275
|
+
'f_tread_line_date': '踏线日期',
|
|
276
|
+
'f_affairs_department_acceptance_staff': '事务部组织验收人员',
|
|
277
|
+
'f_meet_date': '碰口日期',
|
|
278
|
+
'f_backfill_date': '回填日期',
|
|
279
|
+
'f_road_surface_choi_board_date': '补路面撤彩板日期',
|
|
280
|
+
'f_construction_remarks': '施工备注',
|
|
281
|
+
'f_final_return_time': '决算返回时间',
|
|
282
|
+
'f_outdoor_cost_final': '总造价',
|
|
283
|
+
'f_outdoor_installation_fee_final': '安装费',
|
|
284
|
+
'f_final_remarks': '决算备注',
|
|
285
|
+
'f_completed_data_receive_date': '竣工资料接收时间',
|
|
286
|
+
'f_notification_archive_time': '通知归档时间',
|
|
287
|
+
'f_final_data_receive_date': '决算资料接收时间',
|
|
288
|
+
'f_acceptance_sheet_receive_date': '验收单接收时间',
|
|
289
|
+
'f_record_sheet_receive_date': '备案资料接收时间',
|
|
290
|
+
'f_data_handover_time': '移交时间',
|
|
291
|
+
'f_data_archive_remarks': '归档资料备注',
|
|
292
|
+
'f_progress_payment_qinhua': '秦华进度款',
|
|
293
|
+
'f_progress_payment_percentage_qinhua': '秦华进度款占比',
|
|
294
|
+
'f_progress_payment_date_qinhua': '秦华进度款时间',
|
|
295
|
+
'f_final_payment_qinhua_notice': '秦华通知决算时间',
|
|
296
|
+
'f_final_payment_qinhua': '秦华决算款',
|
|
297
|
+
'f_final_payment_date_qinhua': '秦华决算款时间',
|
|
298
|
+
'f_settlement_remarks_qinhua': '秦华结算备注',
|
|
299
|
+
'f_prepayments_service': '预付款',
|
|
300
|
+
'f_prepayments_date_service': '预付款时间',
|
|
301
|
+
'f_progress_payment_service': '进度款',
|
|
302
|
+
'f_progress_payment_date_service': '进度款时间',
|
|
303
|
+
'f_settlement_payment_service': '结算款',
|
|
304
|
+
'f_settlement_payment_date_service': '结算款时间',
|
|
305
|
+
'f_settlement_remarks_service': '劳务结算备注',
|
|
306
|
+
'f_hair_project_department_drawing_time': '主体录入信息收图时间',
|
|
307
|
+
'f_project_department_receive_drawing_time': '主体拟定方案收图时间',
|
|
308
|
+
'f_plan_time': '出方案时间',
|
|
309
|
+
'f_make_plan_remarks': '主体拟定方案备注',
|
|
310
|
+
'f_budget_report_time': '主体预算上报时间',
|
|
311
|
+
'f_budget_return_time': '主体预算返回时间',
|
|
312
|
+
'f_budget_remarks': '主体预算备注',
|
|
313
|
+
'f_project_manager': '项目经理',
|
|
314
|
+
'f_countersigning_completion_time': '主体会签完毕时间',
|
|
315
|
+
'f_construction_team_contact': '主体施工队联系人电话',
|
|
316
|
+
'f_compilation_time_of_completion_data': '主体竣工资料编制时间',
|
|
317
|
+
'f_completion_time_of_internal_visa': '主体内签完成时间',
|
|
318
|
+
'f_completion_time_of_outside_visa': '主体外签完成时间',
|
|
319
|
+
'f_completion_information_handover_production_time': '主体移交生产时间',
|
|
320
|
+
'f_completion_information_remarks': '主体竣工资料备注',
|
|
321
|
+
'f_outdoor_supply_final': '主体甲供材',
|
|
322
|
+
'f_internal_audit_start_time': '主体送内审时间',
|
|
323
|
+
'f_internal_audit_end_time': '主体内审结束时间',
|
|
324
|
+
'f_end_of_external_audit': '主体外审结束时间',
|
|
325
|
+
'f_finalCost_handover_production_time': '主体移交生产时间',
|
|
326
|
+
'f_approval_cost': '主体总造价',
|
|
327
|
+
'f_approval_supply': '主体决算甲供材',
|
|
328
|
+
'f_approval_date': '审定时间',
|
|
329
|
+
'f_approval_remarks': '审定备注',
|
|
330
|
+
'f_prepayments_qinhua': '主体预付款',
|
|
331
|
+
'f_prepayments_percentage_qinhua': '主体预付款占比',
|
|
332
|
+
'f_prepayments_date_qinhua': '主体预付款时间',
|
|
333
|
+
'f_notice_settlement_date_qinhua': '主体通知结算时间',
|
|
334
|
+
'f_settlement_payment_qinhua': '主体结算款',
|
|
335
|
+
'f_settlement_payment_date_qinhua': '主体结算款时间',
|
|
336
|
+
'f_prepayments_percentage_service': '主体预付款占比'
|
|
337
|
+
}
|
|
338
|
+
}
|
|
339
|
+
},
|
|
340
|
+
ready () {
|
|
341
|
+
// 调用查询
|
|
342
|
+
this.search()
|
|
343
|
+
},
|
|
344
|
+
events: {
|
|
345
|
+
},
|
|
346
|
+
methods: {
|
|
347
|
+
search () {
|
|
348
|
+
this.$dispatch('search')
|
|
349
|
+
},
|
|
350
|
+
clear () {
|
|
351
|
+
Object.keys(this.$refs.cp.$refs.cri.model).forEach((key) => {
|
|
352
|
+
this.$refs.cp.$refs.cri.model[key] = null
|
|
353
|
+
})
|
|
354
|
+
},
|
|
355
|
+
applyTypeChange () {
|
|
356
|
+
if (!isEmpty(this.$refs.cp.$refs.cri.model.f_apply_type)) {
|
|
357
|
+
let http = new HttpResetClass()
|
|
358
|
+
http.load('POST', 'rs/logic/getDefnameByType', {
|
|
359
|
+
f_apply_type: this.$refs.cp.$refs.cri.model.f_apply_type
|
|
360
|
+
}, {resolveMsg: null, rejectMsg: null}).then((res) => {
|
|
361
|
+
this.defnames = [{label: '全部', value: ''}, ...res.data]
|
|
362
|
+
})
|
|
363
|
+
|
|
364
|
+
this.projectTypes = [{label: '全部', value: ''}, ...this.$appdata.getParam(`${this.$refs.cp.$refs.cri.model.f_apply_type}工程类型`)]
|
|
365
|
+
} else {
|
|
366
|
+
this.defnames = [{label: '全部', value: ''}]
|
|
367
|
+
this.projectTypes = [{label: '全部', value: ''}]
|
|
368
|
+
}
|
|
369
|
+
},
|
|
370
|
+
check (val) {
|
|
371
|
+
this.$dispatch('apply', val)
|
|
372
|
+
}
|
|
373
|
+
},
|
|
374
|
+
computed: {
|
|
375
|
+
getCondition() {
|
|
376
|
+
return {
|
|
377
|
+
condition: this.$refs.cp.$refs.cri.condition,
|
|
378
|
+
data: {
|
|
379
|
+
orgid: this.$login.f.orgid
|
|
380
|
+
}
|
|
381
|
+
}
|
|
382
|
+
}
|
|
383
|
+
}
|
|
384
|
+
}
|
|
385
|
+
</script>
|
|
386
|
+
<style scoped>
|
|
387
|
+
</style>
|