修改bug

This commit is contained in:
liuxi 2025-02-13 16:21:07 +08:00
parent d1060cc612
commit a53a3bb921
9 changed files with 23 additions and 6 deletions

View File

@ -83,7 +83,7 @@ import api from "@/services/caseManagement";
}; };
}, },
mounted () { mounted () {
console.log(this.eventTraDialog,'this.eventTraDialog') // console.log(this.eventTraDialog,'this.eventTraDialog')
this.queryParam.caseId = this.eventTraDialog.caseId this.queryParam.caseId = this.eventTraDialog.caseId
this.getmediate_record() this.getmediate_record()
}, },

View File

@ -66,7 +66,7 @@
import api from "@/services/caseManagement"; import api from "@/services/caseManagement";
export default { export default {
components: { components: {
eventTracingDialog: () => import('../../event-tracing/index.vue'),// // eventTracingDialog: () => import('../../event-tracing/index.vue'),//
RepaymentSchedule: () => import('../../mediation-page/components/RepaymentSchedule.vue'),// RepaymentSchedule: () => import('../../mediation-page/components/RepaymentSchedule.vue'),//
RepaymentRecordDialog: () => import('./RepaymentRecordDialog.vue'),// RepaymentRecordDialog: () => import('./RepaymentRecordDialog.vue'),//
@ -75,9 +75,6 @@ import api from "@/services/caseManagement";
CalllogDialog: () => import('./CalllogDialog.vue'),// CalllogDialog: () => import('./CalllogDialog.vue'),//
voideDialog: () => import('../../event-tracing/components/voideDialog.vue'),// voideDialog: () => import('../../event-tracing/components/voideDialog.vue'),//
smsDialogDetail: () => import('../../event-tracing/dtraceDetail/smsDialogDetail.vue'),//
officeDeliveryDialogDetail: () => import('../../event-tracing/dtraceDetail/officeDeliveryDialogDetail.vue'),// officeDeliveryDialogDetail: () => import('../../event-tracing/dtraceDetail/officeDeliveryDialogDetail.vue'),//
officeDialogDetail: () => import('../../event-tracing/dtraceDetail/officeDialogDetail.vue'),// officeDialogDetail: () => import('../../event-tracing/dtraceDetail/officeDialogDetail.vue'),//
officeWDialogDetail: () => import('../../event-tracing/dtraceDetail/officeWDialogDetail.vue'),// officeWDialogDetail: () => import('../../event-tracing/dtraceDetail/officeWDialogDetail.vue'),//

View File

@ -148,6 +148,9 @@ import api from "@/services/eventTracingApi";
}, },
mounted () { mounted () {
this.queryParam.caseNo = this.eventTraDialog.caseNo this.queryParam.caseNo = this.eventTraDialog.caseNo
if (this.eventTraDialog.caseId != undefined && this.eventTraDialog.caseId != '') {
this.queryParam.caseId = this.eventTraDialog.caseId
}
this.getList(1) this.getList(1)
}, },
methods: { methods: {

View File

@ -149,6 +149,9 @@ export default {
}, },
mounted() { mounted() {
this.queryParam.caseNo = this.eventTraDialog.caseNo this.queryParam.caseNo = this.eventTraDialog.caseNo
if (this.eventTraDialog.caseId != undefined && this.eventTraDialog.caseId != '') {
this.queryParam.caseId = this.eventTraDialog.caseId
}
this.getList(1) this.getList(1)
}, },
methods: { methods: {

View File

@ -127,6 +127,10 @@ import api from "@/services/eventTracingApi";
}, },
mounted () { mounted () {
this.queryParam.caseNo = 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.queryParam.traceId = this.DialogDetail.id
this.getList(1) this.getList(1)
}, },

View File

@ -112,6 +112,9 @@ import api from "@/services/eventTracingApi";
mounted () { mounted () {
this.queryParam.traceId = this.DialogDetail.id this.queryParam.traceId = this.DialogDetail.id
this.queryParam.caseNo = this.DialogDetail.caseNo this.queryParam.caseNo = this.DialogDetail.caseNo
if (this.DialogDetail.caseId != undefined && this.DialogDetail.caseId != '') {
this.queryParam.caseId = this.DialogDetail.caseId
}
this.getList(1) this.getList(1)
}, },
methods: { methods: {

View File

@ -108,6 +108,9 @@ import api from "@/services/eventTracingApi";
}, },
mounted () { mounted () {
this.queryParam.caseNo = 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.queryParam.traceId = this.DialogDetail.id
this.getList(1) this.getList(1)
}, },

View File

@ -140,6 +140,10 @@ export default {
if (this.DialogDetail.caseNo != undefined && this.DialogDetail.caseNo != '') { if (this.DialogDetail.caseNo != undefined && this.DialogDetail.caseNo != '') {
this.queryParam.caseNo = 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.queryParam.traceId = this.DialogDetail.id
this.getList(1) this.getList(1)
}, },

View File

@ -109,7 +109,7 @@
<el-row type="flex" align="middle"> <el-row type="flex" align="middle">
<el-col :span="24"> <el-col :span="24">
<el-form-item label="选择团队" prop="teamId"> <el-form-item label="选择团队" prop="teamId">
<el-select v-model="userInfo.teamId" clear placeholder="请选择" class="width100"> <el-select v-model="userInfo.teamId" clear placeholder="请选择" class="width100" clearable>
<el-option <el-option
v-for="item in teamOptions" v-for="item in teamOptions"
:key="item.id" :key="item.id"