diff --git a/src/pages/case-management/components/RepaymentEffectDialog.vue b/src/pages/case-management/components/RepaymentEffectDialog.vue index a58d2fe..52a9d61 100644 --- a/src/pages/case-management/components/RepaymentEffectDialog.vue +++ b/src/pages/case-management/components/RepaymentEffectDialog.vue @@ -103,10 +103,8 @@ import api from "@/services/caseManagement"; this.Effectobj.caseId =undefined this.Effectobj.proofUrl =undefined api.gettraceProof_valid(this.Effectobj).then(res => { - if(!res.code){ - this.handleClose() - this.$parent.getProofList(1) - } + this.handleClose() + this.$parent.getProofList(1) }) } }) diff --git a/src/pages/case-management/components/RepaymentRecordDialog.vue b/src/pages/case-management/components/RepaymentRecordDialog.vue index 98f8c16..1d2da36 100644 --- a/src/pages/case-management/components/RepaymentRecordDialog.vue +++ b/src/pages/case-management/components/RepaymentRecordDialog.vue @@ -25,11 +25,12 @@ {{ scope.row.createAt | formaDate("yyyy-MM-dd hh:mm:ss") }} - + @@ -79,6 +80,23 @@ import api from "@/services/caseManagement"; } }) }, + // 取消效验 + handEffectCancel(proofitem){ + this.$confirm("请确定是否取消效验这些数据?", "提示", { + confirmButtonText: "确定", + cancelButtonText: "取消", + type: "warning", + }).then(() => { + if(!this.$clickThrottle()) { return }//防止重复点击 + let data = { + id:proofitem.id + } + api.gettraceProof_cancel(data).then((res) => { + this.$message.success("取消成功"); + this.getProofList() + }); + }).catch(() => {}); + }, async handleCaseShow(scope){ let previewUrl = await this.getProofFile(scope.row.proofUrl) this.fileDialog = {showfile:{fullUrl:previewUrl,url:scope.row.proofUrl},filelist:[]} diff --git a/src/pages/case-management/detail/index.vue b/src/pages/case-management/detail/index.vue index 2de256f..ac47dca 100644 --- a/src/pages/case-management/detail/index.vue +++ b/src/pages/case-management/detail/index.vue @@ -448,7 +448,7 @@ export default { fileDialog: null, eventTraDialog: null, navactive: 1, - Qualitydesc: '结清应还金额:16776.74逾期未还费用:2486.88', + Qualitydesc: '', tableData: [{ H: '电话调解', A: '一次性全部还款', diff --git a/src/pages/case-mistake/components/importPackageDialog.vue b/src/pages/case-mistake/components/importPackageDialog.vue index f05f370..1e6b10d 100644 --- a/src/pages/case-mistake/components/importPackageDialog.vue +++ b/src/pages/case-mistake/components/importPackageDialog.vue @@ -78,7 +78,7 @@ - + - + - + @@ -149,13 +149,16 @@ export default { }; }, mounted() { - this.queryParam.caseNo = this.eventTraDialog.caseNo - if (this.eventTraDialog.caseId != undefined && this.eventTraDialog.caseId != '') { - this.queryParam.caseId = this.eventTraDialog.caseId - } + this.initializeQuery() this.getList(1) }, methods: { + initializeQuery(){ + this.queryParam.caseNo = this.eventTraDialog.caseNo + if (this.eventTraDialog.caseId != undefined && this.eventTraDialog.caseId != '') { + this.queryParam.caseId = this.eventTraDialog.caseId + } + }, handleChangeDate() { this.activeUsage = '' if (this.queryDate === null) { @@ -176,6 +179,7 @@ export default { this.queryParam.size = 10 this.activeUsage = '' this.queryDate = '' + this.initializeQuery() }, handleSearch() { this.queryParam.size = 10; diff --git a/src/pages/event-tracing/dtraceDetail/officeDeliveryDialogDetail.vue b/src/pages/event-tracing/dtraceDetail/officeDeliveryDialogDetail.vue index 7bd6f4a..b14f839 100644 --- a/src/pages/event-tracing/dtraceDetail/officeDeliveryDialogDetail.vue +++ b/src/pages/event-tracing/dtraceDetail/officeDeliveryDialogDetail.vue @@ -126,15 +126,17 @@ import api from "@/services/eventTracingApi"; }; }, mounted () { - this.queryParam.caseNo = this.DialogDetail.caseNo - if (this.DialogDetail.caseId != undefined && this.DialogDetail.caseId != '') { - this.queryParam.caseId = this.DialogDetail.caseId - } - - this.queryParam.traceId = this.DialogDetail.id + this.initializeQuery() this.getList(1) }, methods: { + initializeQuery(){ + this.queryParam.caseNo = this.DialogDetail.caseNo + if (this.DialogDetail.caseId != undefined && this.DialogDetail.caseId != '') { + this.queryParam.caseId = this.DialogDetail.caseId + } + this.queryParam.traceId = this.DialogDetail.id + }, handleChangeDate() { this.activeUsage = '' if(this.queryDate === null) { @@ -155,6 +157,7 @@ import api from "@/services/eventTracingApi"; this.queryParam.size = 10 this.activeUsage = '' this.queryDate = '' + this.initializeQuery() }, handleSearch() { this.queryParam.size = 10; diff --git a/src/pages/event-tracing/dtraceDetail/officeDialogDetail.vue b/src/pages/event-tracing/dtraceDetail/officeDialogDetail.vue index f3c51c8..1d27229 100644 --- a/src/pages/event-tracing/dtraceDetail/officeDialogDetail.vue +++ b/src/pages/event-tracing/dtraceDetail/officeDialogDetail.vue @@ -110,14 +110,18 @@ import api from "@/services/eventTracingApi"; }; }, mounted () { - this.queryParam.traceId = this.DialogDetail.id - this.queryParam.caseNo = this.DialogDetail.caseNo - if (this.DialogDetail.caseId != undefined && this.DialogDetail.caseId != '') { - this.queryParam.caseId = this.DialogDetail.caseId - } + this.initializeQuery() + this.getList(1) }, methods: { + initializeQuery(){ + this.queryParam.traceId = this.DialogDetail.id + this.queryParam.caseNo = this.DialogDetail.caseNo + if (this.DialogDetail.caseId != undefined && this.DialogDetail.caseId != '') { + this.queryParam.caseId = this.DialogDetail.caseId + } + }, handleChangeDate() { this.activeUsage = '' if(this.queryDate === null) { @@ -138,6 +142,7 @@ import api from "@/services/eventTracingApi"; this.queryParam.size = 10 this.activeUsage = '' this.queryDate = '' + this.initializeQuery() }, handleSearch() { this.queryParam.size = 10; diff --git a/src/pages/event-tracing/dtraceDetail/officeWDialogDetail.vue b/src/pages/event-tracing/dtraceDetail/officeWDialogDetail.vue index 13159fe..5a60275 100644 --- a/src/pages/event-tracing/dtraceDetail/officeWDialogDetail.vue +++ b/src/pages/event-tracing/dtraceDetail/officeWDialogDetail.vue @@ -107,14 +107,18 @@ import api from "@/services/eventTracingApi"; }; }, mounted () { - this.queryParam.caseNo = this.DialogDetail.caseNo - if (this.DialogDetail.caseId != undefined && this.DialogDetail.caseId != '') { - this.queryParam.caseId = this.DialogDetail.caseId - } - this.queryParam.traceId = this.DialogDetail.id + this.initializeQuery() + this.getList(1) }, methods: { + initializeQuery(){ + this.queryParam.caseNo = this.DialogDetail.caseNo + if (this.DialogDetail.caseId != undefined && this.DialogDetail.caseId != '') { + this.queryParam.caseId = this.DialogDetail.caseId + } + this.queryParam.traceId = this.DialogDetail.id + }, handleChangeDate() { this.activeUsage = '' if(this.queryDate === null) { @@ -135,6 +139,7 @@ import api from "@/services/eventTracingApi"; this.queryParam.size = 10 this.activeUsage = '' this.queryDate = '' + this.initializeQuery() }, handleSearch() { this.queryParam.size = 10; diff --git a/src/pages/event-tracing/dtraceDetail/smsDialogDetail.vue b/src/pages/event-tracing/dtraceDetail/smsDialogDetail.vue index e6e64e2..3ef1992 100644 --- a/src/pages/event-tracing/dtraceDetail/smsDialogDetail.vue +++ b/src/pages/event-tracing/dtraceDetail/smsDialogDetail.vue @@ -137,17 +137,21 @@ export default { }, mounted() { // console.log(this.DialogDetail, 'this.DialogDetail.caseNo') - if (this.DialogDetail.caseNo != undefined && this.DialogDetail.caseNo != '') { - this.queryParam.caseNo = this.DialogDetail.caseNo - } - if (this.DialogDetail.caseId != undefined && this.DialogDetail.caseId != '') { - this.queryParam.caseId = this.DialogDetail.caseId - } - - this.queryParam.traceId = this.DialogDetail.id + + this.initializeQuery() + this.getList(1) }, methods: { + initializeQuery(){ + if (this.DialogDetail.caseNo != undefined && this.DialogDetail.caseNo != '') { + this.queryParam.caseNo = this.DialogDetail.caseNo + } + if (this.DialogDetail.caseId != undefined && this.DialogDetail.caseId != '') { + this.queryParam.caseId = this.DialogDetail.caseId + } + this.queryParam.traceId = this.DialogDetail.id + }, handleChangeDate() { this.activeUsage = '' if (this.queryDate === null) { @@ -168,6 +172,7 @@ export default { this.queryParam.size = 10 this.activeUsage = '' this.queryDate = '' + this.initializeQuery() }, handleSearch() { this.queryParam.size = 10; diff --git a/src/pages/mediation-package/index.vue b/src/pages/mediation-package/index.vue index 305c827..0e06724 100644 --- a/src/pages/mediation-package/index.vue +++ b/src/pages/mediation-package/index.vue @@ -177,7 +177,10 @@ @@ -203,6 +206,7 @@