修改bug
This commit is contained in:
parent
d1060cc612
commit
a53a3bb921
@ -83,7 +83,7 @@ import api from "@/services/caseManagement";
|
||||
};
|
||||
},
|
||||
mounted () {
|
||||
console.log(this.eventTraDialog,'this.eventTraDialog')
|
||||
// console.log(this.eventTraDialog,'this.eventTraDialog')
|
||||
this.queryParam.caseId = this.eventTraDialog.caseId
|
||||
this.getmediate_record()
|
||||
},
|
||||
|
||||
@ -66,7 +66,7 @@
|
||||
import api from "@/services/caseManagement";
|
||||
export default {
|
||||
components: {
|
||||
eventTracingDialog: () => import('../../event-tracing/index.vue'),//事项追踪
|
||||
// eventTracingDialog: () => import('../../event-tracing/index.vue'),//事项追踪
|
||||
RepaymentSchedule: () => import('../../mediation-page/components/RepaymentSchedule.vue'),//还款计划
|
||||
RepaymentRecordDialog: () => import('./RepaymentRecordDialog.vue'),//还款凭证
|
||||
|
||||
@ -75,9 +75,6 @@ import api from "@/services/caseManagement";
|
||||
CalllogDialog: () => import('./CalllogDialog.vue'),//呼叫记录
|
||||
|
||||
voideDialog: () => import('../../event-tracing/components/voideDialog.vue'),//视频调解追踪
|
||||
|
||||
smsDialogDetail: () => import('../../event-tracing/dtraceDetail/smsDialogDetail.vue'),//短信发送追踪明细
|
||||
|
||||
officeDeliveryDialogDetail: () => import('../../event-tracing/dtraceDetail/officeDeliveryDialogDetail.vue'),//文书送达追踪明细
|
||||
officeDialogDetail: () => import('../../event-tracing/dtraceDetail/officeDialogDetail.vue'),//文书生成追踪明细
|
||||
officeWDialogDetail: () => import('../../event-tracing/dtraceDetail/officeWDialogDetail.vue'),//文书签字追踪明细
|
||||
|
||||
@ -148,6 +148,9 @@ import api from "@/services/eventTracingApi";
|
||||
},
|
||||
mounted () {
|
||||
this.queryParam.caseNo = this.eventTraDialog.caseNo
|
||||
if (this.eventTraDialog.caseId != undefined && this.eventTraDialog.caseId != '') {
|
||||
this.queryParam.caseId = this.eventTraDialog.caseId
|
||||
}
|
||||
this.getList(1)
|
||||
},
|
||||
methods: {
|
||||
|
||||
@ -149,6 +149,9 @@ export default {
|
||||
},
|
||||
mounted() {
|
||||
this.queryParam.caseNo = this.eventTraDialog.caseNo
|
||||
if (this.eventTraDialog.caseId != undefined && this.eventTraDialog.caseId != '') {
|
||||
this.queryParam.caseId = this.eventTraDialog.caseId
|
||||
}
|
||||
this.getList(1)
|
||||
},
|
||||
methods: {
|
||||
|
||||
@ -127,6 +127,10 @@ 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.getList(1)
|
||||
},
|
||||
|
||||
@ -112,6 +112,9 @@ 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.getList(1)
|
||||
},
|
||||
methods: {
|
||||
|
||||
@ -108,6 +108,9 @@ 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.getList(1)
|
||||
},
|
||||
|
||||
@ -140,6 +140,10 @@ export default {
|
||||
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.getList(1)
|
||||
},
|
||||
|
||||
@ -109,7 +109,7 @@
|
||||
<el-row type="flex" align="middle">
|
||||
<el-col :span="24">
|
||||
<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
|
||||
v-for="item in teamOptions"
|
||||
:key="item.id"
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user